Skip to content

Commit

Permalink
Merge pull request #1315 from multiversx/development
Browse files Browse the repository at this point in the history
v3.0.14
  • Loading branch information
radumojic authored Nov 25, 2024
2 parents d467f16 + 509b7e6 commit ec546a0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 3 additions & 3 deletions src/constants/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand All @@ -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
},
Expand All @@ -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
}
Expand Down

0 comments on commit ec546a0

Please sign in to comment.