diff --git a/CHANGELOG.md b/CHANGELOG.md index c57bc2e34..f5e796c13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [[v3.0.14](https://github.com/multiversx/mx-sdk-dapp/pull/1315)] - 2024-11-25 + +- [Updated default metamaskSnapWalletAddress](https://github.com/multiversx/mx-sdk-dapp/pull/1314) + ## [[v3.0.13](https://github.com/multiversx/mx-sdk-dapp/pull/1313)] - 2024-11-25 - [Fixed BigNumber configuration, scoped to a function level in "stringIsFloat"](https://github.com/multiversx/mx-sdk-dapp/pull/1312) diff --git a/package.json b/package.json index d3ed2afc6..a25b19562 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@multiversx/sdk-dapp", - "version": "3.0.13", + "version": "3.0.14", "description": "A library to hold the main logic for a dapp on the MultiversX blockchain", "author": "MultiversX", "license": "GPL-3.0-or-later", diff --git a/src/constants/network.ts b/src/constants/network.ts index 4240ccf65..d264a88de 100644 --- a/src/constants/network.ts +++ b/src/constants/network.ts @@ -20,7 +20,7 @@ export const fallbackNetworkConfigurations: Record< xAliasAddress: 'https://devnet.xalias.com', apiAddress: 'https://devnet-api.multiversx.com', explorerAddress: 'http://devnet-explorer.multiversx.com', - metamaskSnapWalletAddress: 'https://devnet-snap-wallet.multiversx.com', + metamaskSnapWalletAddress: 'https://devnet-iframe-wallet.multiversx.com', apiTimeout: '4000', roundDuration: 6000 }, @@ -40,7 +40,7 @@ export const fallbackNetworkConfigurations: Record< xAliasAddress: 'https://testnet.xalias.com', apiAddress: 'https://testnet-api.multiversx.com', explorerAddress: 'http://testnet-explorer.multiversx.com', - metamaskSnapWalletAddress: 'https://testnet-snap-wallet.multiversx.com', + metamaskSnapWalletAddress: 'https://testnet-iframe-wallet.multiversx.com', apiTimeout: '4000', roundDuration: 6000 }, @@ -60,7 +60,7 @@ export const fallbackNetworkConfigurations: Record< xAliasAddress: 'https://xalias.com', apiAddress: 'https://api.multiversx.com', explorerAddress: 'https://explorer.multiversx.com', - metamaskSnapWalletAddress: 'https://snap-wallet.multiversx.com', + metamaskSnapWalletAddress: 'https://iframe-wallet.multiversx.com', apiTimeout: '4000', roundDuration: 6000 }