github NethermindEth/starknet.go v0.8.0

latest release: v0.8.0-snip12
2 days ago

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 and websocket 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 the Account type. They should now be called via the acc.Provider field.
  • New NewWebsocketProvider function for creating a WebSocket provider.
  • Transaction hash functions moved from the account pkg to the hash pkg.
  • Contract class types moved from the rpc pkg to the contracts 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

New Contributors

Full Changelog: v0.7.3...v0.8.0

Don't miss a new starknet.go release

NewReleases is sending notifications on new releases.