@veridex/sdk 1.0.0-beta.17 → 1.0.0-beta.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1023,11 +1023,46 @@ var ETHEREUM_SEPOLIA_TOKENS = {
1023
1023
  }
1024
1024
  ]
1025
1025
  };
1026
+ var MONAD_TESTNET_TOKENS = {
1027
+ wormholeChainId: 10048,
1028
+ chainName: "Monad Testnet",
1029
+ nativeToken: {
1030
+ symbol: "MON",
1031
+ name: "Monad",
1032
+ decimals: 18,
1033
+ address: NATIVE_TOKEN_ADDRESS,
1034
+ isNative: true
1035
+ },
1036
+ tokens: [
1037
+ {
1038
+ symbol: "USDC",
1039
+ name: "USD Coin",
1040
+ decimals: 6,
1041
+ address: "0x754704Bc059F8C67012fEd69BC8A327a5aafb603",
1042
+ isNative: false
1043
+ },
1044
+ {
1045
+ symbol: "AUSD",
1046
+ name: "Agora Dollar",
1047
+ decimals: 18,
1048
+ address: "0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a",
1049
+ isNative: false
1050
+ },
1051
+ {
1052
+ symbol: "WMON",
1053
+ name: "Wrapped MON",
1054
+ decimals: 18,
1055
+ address: "0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A",
1056
+ isNative: false
1057
+ }
1058
+ ]
1059
+ };
1026
1060
  var TOKEN_REGISTRY = {
1027
1061
  10004: BASE_SEPOLIA_TOKENS,
1028
1062
  10005: OPTIMISM_SEPOLIA_TOKENS,
1029
1063
  10003: ARBITRUM_SEPOLIA_TOKENS,
1030
- 10002: ETHEREUM_SEPOLIA_TOKENS
1064
+ 10002: ETHEREUM_SEPOLIA_TOKENS,
1065
+ 10048: MONAD_TESTNET_TOKENS
1031
1066
  };
1032
1067
  function getTokenList(wormholeChainId) {
1033
1068
  return TOKEN_REGISTRY[wormholeChainId] ?? null;