@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.
@@ -1047,11 +1047,46 @@ var ETHEREUM_SEPOLIA_TOKENS = {
1047
1047
  }
1048
1048
  ]
1049
1049
  };
1050
+ var MONAD_TESTNET_TOKENS = {
1051
+ wormholeChainId: 10048,
1052
+ chainName: "Monad Testnet",
1053
+ nativeToken: {
1054
+ symbol: "MON",
1055
+ name: "Monad",
1056
+ decimals: 18,
1057
+ address: NATIVE_TOKEN_ADDRESS,
1058
+ isNative: true
1059
+ },
1060
+ tokens: [
1061
+ {
1062
+ symbol: "USDC",
1063
+ name: "USD Coin",
1064
+ decimals: 6,
1065
+ address: "0x754704Bc059F8C67012fEd69BC8A327a5aafb603",
1066
+ isNative: false
1067
+ },
1068
+ {
1069
+ symbol: "AUSD",
1070
+ name: "Agora Dollar",
1071
+ decimals: 18,
1072
+ address: "0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a",
1073
+ isNative: false
1074
+ },
1075
+ {
1076
+ symbol: "WMON",
1077
+ name: "Wrapped MON",
1078
+ decimals: 18,
1079
+ address: "0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A",
1080
+ isNative: false
1081
+ }
1082
+ ]
1083
+ };
1050
1084
  var TOKEN_REGISTRY = {
1051
1085
  10004: BASE_SEPOLIA_TOKENS,
1052
1086
  10005: OPTIMISM_SEPOLIA_TOKENS,
1053
1087
  10003: ARBITRUM_SEPOLIA_TOKENS,
1054
- 10002: ETHEREUM_SEPOLIA_TOKENS
1088
+ 10002: ETHEREUM_SEPOLIA_TOKENS,
1089
+ 10048: MONAD_TESTNET_TOKENS
1055
1090
  };
1056
1091
  function getTokenList(wormholeChainId) {
1057
1092
  return TOKEN_REGISTRY[wormholeChainId] ?? null;