Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 15, 2025

Bumps github.com/NethermindEth/starknet.go from 0.7.0 to 0.14.0.

Release notes

Sourced from github.com/NethermindEth/starknet.go's releases.

v0.14.0

This release implements Starknet RPC v0.9.0

Key changes:

  • Starknet RPC-spec v0.9.0 fully implemented, bringing new methods, types, and a lot of changes. See the spec repo and our CHANGELOG.md for more info.
  • Small bug fixes and improvements.

For more details, see the CHANGELOG file.

What's Changed

Full Changelog: NethermindEth/starknet.go@v0.13.1...v0.14.0

v0.14.0-beta.3

Beta pre-release implementing Starknet RPC v0.9.0-rc.3 spec. https://github.com/starkware-libs/starknet-specs/releases/tag/v0.9.0-rc.3

Full Changelog: NethermindEth/starknet.go@v0.14.0-beta.2...v0.14.0-beta.3

v0.14.0-beta.2

Beta pre-release implementing Starknet RPC v0.9.0-rc.2 spec. https://github.com/starkware-libs/starknet-specs/releases/tag/v0.9.0-rc.2

Full Changelog: NethermindEth/starknet.go@v0.14.0-beta.1...v0.14.0-beta.2

v0.14.0-beta.1

Beta pre-release implementing RPC v0.9.0 + Starknet v0.14.0

Full Changelog: NethermindEth/starknet.go@v0.13.0...v0.14.0-beta.1

v0.13.1

This release implements Starknet RPC v0.8.1

Key changes:

  • fixed a bug in the starknet_syncing method
  • small adjustment to the curve pkg
  • small adjustment to the RPC error data types

For more details, see the CHANGELOG file.

What's Changed

... (truncated)

Changelog

Sourced from github.com/NethermindEth/starknet.go's changelog.

0.14.0 - 2025-08-15

Added

  • New WebSocket subscription endpoints:
    • rpc.SubscribeNewTransactions
    • rpc.SubscribeNewTransactionReceipts
  • rpc.SubscriptionBlockID type for websocket subscriptions, which is a restricted version of BlockID that doesn't allow pre_confirmed or l1_accepted tags
  • Helper methods for SubscriptionBlockID: BlockID(), WithBlockNumber(), WithBlockHash(), and WithLatestTag()
  • l1_accepted and pre_confirmed block tags in the rpc.BlockTag type
  • rpc.ErrFeeBelowMinimum and rpc.ErrReplacementTransactionUnderpriced rpc errors
  • Types:
    • rpc.EmittedEventWithFinalityStatus: the return value for the rpc.SubscribeEvents endpoint
    • rpc.PriceUnitWei and rpc.PriceUnitFri enums: representing the WEI and FRI units
    • rpc.SubNewTxnReceiptsInput: input for the rpc.SubscribeNewTransactionReceipts endpoint
    • rpc.SubNewTxnsInput: input for the rpc.SubscribeNewTransactions endpoint
    • rpc.TxnWithHashAndStatus: return value for the rpc.SubscribeNewTransactions endpoint
    • rpc.MessageFeeEstimation: return value for the rpc.EstimateMessageFee endpoint
    • rpc.FeeEstimationCommon: common fields for rpc.FeeEstimation and rpc.MessageFeeEstimation

Changed

  • pending terminology replaced by pre_confirmed across RPC headers, statuses and documentation
  • rpc.SubscribeNewHeads endpoint now accepts rpc.SubscriptionBlockID instead of rpc.BlockID parameter
  • rpc.SubscribeEvents endpoint now accepts the rpc.EmittedEventWithFinalityStatus type as parameter
  • rpc.EstimateMessageFee endpoint now returns MessageFeeEstimation instead of a FeeEstimation pointer
  • Improved RPC error handling: only code 0 is considered invalid in tryUnwrapToRPCErr
  • rpc.TraceBlockTransactions endpoint now checks for pre_confirmed tag in the BlockID parameter and returns an error if it is set
  • Small change in the error returned by the UnmarshalJSON method of the rpc.TxnExecutionStatus and rpc.TxnFinalityStatus types
  • New errors returned by the rpc.AddInvokeTransaction, rpc.AddDeclareTransaction, and rpc.AddDeployAccountTransaction endpoints
  • RPCErrors now returns more data than before when the error is not a known RPC error
  • Types:
    • rpc.RpcProvider interface: change in the EstimateMessageFee method return value
    • rpc.WebsocketProvider interface: endpoints added/removed
    • rpc.ErrInvalidTransactionNonce: new string data field
    • rpc.EventSubscriptionInput: new/renamed fields
    • rpc.MessageStatus: new/renamed fields
    • rpc.FeePayment: change in a field type
    • rpc.FeePaymentUnit enum: renamed to rpc.PriceUnit
    • rpc.TxnStatus enum: new values
    • rpc.StateUpdateOutput: changed field type
    • rpc.PendingStateUpdate: renamed to rpc.Pre_confirmedStateUpdate
    • rpc.FeeEstimation: new/changed fields
    • rpc.TxnFinalityStatus enum: new value

Removed

  • rpc.(*WsProvider).SubscribePendingTransactions endpoint in favor of rpc.SubscribeNewTransactions
  • REJECTED block tag in the rpc.BlockStatus type
  • rpc.checkForPre_confirmed function calls in websocket methods since rpc.SubscriptionBlockID type prevents invalid tags at the type level
  • rpc.TxnStatus enum: removed REJECTED value
  • Types:
    • rpc.SubPendingTxnsInput
    • rpc.PendingTxn

... (truncated)

Commits
  • 495fe45 RPC v0.9.0 + Starknet v0.14.0 (#756)
  • f6bcbd0 Fix/wrong omitempty in rpcerror (#776)
  • 65d0eec Fix: starknet_syncing method and test (#774)
  • 71ffb52 Remove global curve.g1Affline variable (#773)
  • cbc0beb test: new enum for test environments (#759)
  • 11a3284 Merge pull request #769 from NethermindEth/thiagodeev/ci-fix-jfeowifjwf90j
  • cd91959 fix: update RPC version in TestCookieManagement to use dynamic rpcVersion var...
  • 80b2826 fix: update gas prices in mainnetBlockReceipts588763.json to reflect new values
  • 16a66ee Merge pull request #763 from NethermindEth/v0.13.0
  • 5cfaff9 chore: update CHANGELOG for version 0.13.0 release
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Aug 15, 2025
Bumps [github.com/NethermindEth/starknet.go](https://github.com/NethermindEth/starknet.go) from 0.7.0 to 0.14.0.
- [Release notes](https://github.com/NethermindEth/starknet.go/releases)
- [Changelog](https://github.com/NethermindEth/starknet.go/blob/main/CHANGELOG.md)
- [Commits](NethermindEth/starknet.go@v0.7.0...v0.14.0)

---
updated-dependencies:
- dependency-name: github.com/NethermindEth/starknet.go
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/NethermindEth/starknet.go-0.14.0 branch from 0abe000 to 8954eea Compare August 25, 2025 16:30
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 4, 2025

Superseded by #107.

@dependabot dependabot bot closed this Sep 4, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/NethermindEth/starknet.go-0.14.0 branch September 4, 2025 08:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants