Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
[email protected]
Minor Changes
#3427
2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7
Thanks @jxom! - Stabilized EIP-7702.prepareAuthorization
andsignAuthorization
Actions to the Wallet Client.hashAuthorization
,recoverAuthorizationAddress
, andverifyAuthorization
Utilities.account.experimental_signAuthorization
toaccount.signAuthorization
.#3427
2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7
Thanks @jxom! - BREAKING (Experimental): Removed deprecatedwalletActionsEip5792
export. Useeip5792Actions
instead.#3427
2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7
Thanks @jxom! - BREAKING (Experimental): Removed deprecated ERC-6492 exports inviem/experimental
. These are no longer experimental. Use exports fromviem
instead.#3427
2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7
Thanks @jxom! - BREAKING (Experimental): Removed deprecatedwalletActionsErc7715
export. Useerc7715Actions
instead.#3427
2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7
Thanks @jxom! - BREAKING (Experimental):Removed EIP-7702 exports in
viem/experimental
. These are no longer experimental. Use exports fromviem
orviem/utils
instead.Note, there is also a behavioral change in the stable EIP-7702
signAuthorization
function. Previously, it was assumed that the signer of the Authorization was also the executor of the Transaction. This is no longer the case.If the signer of the Authorization is NOT the executor of the Transaction, you no longer need to pass a
sponsor
parameter.const eoa = privateKeyToAccount('0x...') const relay = privateKeyToAccount('0x...') const authorization = await client.signAuthorization({ account: eoa, contractAddress: '0x...', - sponsor: true }) const transaction = await client.sendTransaction({ account: relay, authorizationList: [authorization], })
If the signer of the Authorization is ALSO the executor of the Transaction, you will now need to pass the
executor
parameter with a value of'self'
.const eoa = privateKeyToAccount('0x...') const authorization = await client.signAuthorization({ account: eoa, contractAddress: '0x...', + executor: 'self', }) const transaction = await client.sendTransaction({ account: eoa, authorizationList: [authorization], })
Patch Changes
#3469
3f00c5f28e8a4eec0ee60fe3bb9acdc5e828d1c7
Thanks @danijelTxFusion! - ZKSync Extension: Addeddeposit
action.#3497
512ee19fdaf309d2ec607e024ecdb08ffbde5f68
Thanks @DiRaiks! - Changed Hoodi block explorer to Etherscan.#3505
c0f36abc39df5fc230c41871da1e7ba6a74d25eb
Thanks @clemlak! - Added Multicall3 address to Ink Mainnet.#3506
bce50f08acaa8355b11462487317929d958eb408
Thanks @CruzMolina! - add Multicall3 address to Ink Sepolia