otomato-sdk 2.0.632 → 2.0.645

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.
@@ -17,4 +17,5 @@ export const CHAINS = {
17
17
  MANTLE: 5000,
18
18
  INK: 57073,
19
19
  PLASMA: 9745,
20
+ MONAD: 143,
20
21
  };
@@ -2112,6 +2112,52 @@ export const TOKENS = {
2112
2112
  decimals: 18,
2113
2113
  image: null,
2114
2114
  },
2115
+ ],
2116
+ 143: [
2117
+ {
2118
+ contractAddress: "0x0000000000000000000000000000000000000000",
2119
+ name: "Monad",
2120
+ symbol: "MON",
2121
+ decimals: 18,
2122
+ nativeCurrency: true,
2123
+ equivalentERC20: "0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
2124
+ image: null,
2125
+ },
2126
+ {
2127
+ contractAddress: "0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
2128
+ name: "Wrapped Monad",
2129
+ symbol: "WMON",
2130
+ decimals: 18,
2131
+ image: null,
2132
+ },
2133
+ {
2134
+ contractAddress: "0x754704bc059f8c67012fed69bc8a327a5aafb603",
2135
+ name: "USDC",
2136
+ symbol: "USDC",
2137
+ decimals: 6,
2138
+ image: null,
2139
+ },
2140
+ {
2141
+ contractAddress: "0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
2142
+ name: "USDT0",
2143
+ symbol: "USDT0",
2144
+ decimals: 6,
2145
+ image: null,
2146
+ },
2147
+ {
2148
+ contractAddress: "0xee8c0e9f1bffb4eb878d8f15f368a02a35481242",
2149
+ name: "Wrapped Ether",
2150
+ symbol: "WETH",
2151
+ decimals: 18,
2152
+ image: null,
2153
+ },
2154
+ {
2155
+ contractAddress: "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73",
2156
+ name: "GHO",
2157
+ symbol: "GHO",
2158
+ decimals: 18,
2159
+ image: null,
2160
+ },
2115
2161
  ]
2116
2162
  };
2117
2163
  export const NFTS = {
@@ -1,4 +1,4 @@
1
- export const SDK_VERSION = '2.0.632';
1
+ export const SDK_VERSION = '2.0.645';
2
2
  export function compareVersions(v1, v2) {
3
3
  // Split the version strings into parts
4
4
  const v1Parts = v1.split('.').map(Number);
@@ -54,6 +54,9 @@ class RPCServices {
54
54
  if (env.INK_HTTPS_PROVIDER) {
55
55
  this.rpcUrls[CHAINS.INK] = env.INK_HTTPS_PROVIDER;
56
56
  }
57
+ if (env.MONAD_HTTPS_PROVIDER) {
58
+ this.rpcUrls[CHAINS.MONAD] = env.MONAD_HTTPS_PROVIDER;
59
+ }
57
60
  }
58
61
  // Function to get the RPC URL for a specific chainId
59
62
  getRPC(chainId) {