Summary
This release fully implements Starknet RPC v0.8.0 (ref).
Key features:
- Full Starknet RPC v0.8.0 compliance (new RPC and WebSocket methods).
- New helper methods for building and sending transactions in the
account
pkg. - New utilities for building and handling transactions in the
utils
pkg. - All examples updated to use V3 transactions and the new utilities for building and sending transactions.
- New
simpleDeclare
andwebsocket
examples. - New hash functions to hash all transaction versions.
- An important change in the SNIP-12 enum hashing. A new release called
v0.8.0-snip12
has been created specifically for this.
New RPC methods:
starknet_getCompiledCasm
starknet_getMessagesStatus
starknet_getStorageProof
New RPC WebSocket methods:
starknet_subscribeEvents
starknet_subscribeNewHeads
starknet_subscribePendingTransactions
starknet_subscribeTransactionStatus
Detailed changes:
- Removed V0/1/2 broadcast txns. Now, only V3 transactions can be sent.
- Removed duplicates
rpc.Provider
methods in theAccount
type. They should now be called via theacc.Provider
field. - New
NewWebsocketProvider
function for creating a WebSocket provider. - Transaction hash functions moved from the
account
pkg to thehash
pkg. - Contract class types moved from the
rpc
pkg to thecontracts
pkg. - Bug fixed in the
CompiledClassHash
function (thanks to @baitcode). - Improvements in the RPCError
data
field. - New
client
pkg. - New utils:
- BuildInvokeTxn
- BuildDeclareTxn
- BuildDeployAccountTxn
- WeiToETH/ETHToWei
- FRIToSTRK/STRKToFRI
- FeeEstToResBoundsMap
- ResBoundsMapToOverallFee
- UnmarshalJSONFileToType
- New hash functions (one for each version):
- TransactionHashInvokeV0/V1/V3
- TransactionHashDeclareV1/V2/V3
- TransactionHashDeployAccountV1/V3
What's Changed
- Thiagodeev/rpcv08 write methods, blockHeader and error 53 by @thiagodeev in #626
- Creates a description for the multi-call feature by @thiagodeev in #648
- Thiagodeev/rpcv08 final changes by @thiagodeev in #644
- New rpcdata + RPCv08 errors by @thiagodeev in #649
- docs: changed the link to shield stars by @Olexandr88 in #652
- Update README.md to include typedData example by @thiagodeev in #653
- Ensure starknet_call calldata is not null by @Hyodar in #658
- fix outdated documentation links by @youyyytrok in #659
- chore: fix minor grammar and wording issues by @famouswizard in #660
- chore: Fix Typo in Error Message for Unsupported Transaction Type by @0xwitty in #661
- Add Test Case Names for Improved CI/CD Debugging by @AnkushinDaniil in #663
- Add actions scanning and go community pack in codeql-analysis.yml by @yevh in #664
- Fix contract class unmarshall for modern cairo compilers by @baitcode in #656
- thiagodeev/rpcv08-websocket by @thiagodeev in #651
- Thiagodeev/rpcv08 - implement/fix/update remaining tests for rpcv08 by @thiagodeev in #662
- Thiagodeev/rpcv08 refactor tests and utils organization by @thiagodeev in #672
- Thiagodeev/rpcv08 new txn utilities by @thiagodeev in #673
- Thiagodeev/rpcv08 update examples by @thiagodeev in #677
- Thiagodeev/rpcv08 final adjustments by @thiagodeev in #678
- Thiagodeev/rpcv08 final adjustments v2 by @thiagodeev in #680
- Thiagodeev/rpcv08 final adjustments v3 by @thiagodeev in #681
- Revert SNIP-12 code to be compatible with starknet.js by @thiagodeev in #667
New Contributors
- @Olexandr88 made their first contribution in #652
- @Hyodar made their first contribution in #658
- @youyyytrok made their first contribution in #659
- @famouswizard made their first contribution in #660
- @0xwitty made their first contribution in #661
- @AnkushinDaniil made their first contribution in #663
- @baitcode made their first contribution in #656
Full Changelog: v0.7.3...v0.8.0