@augustdigital/sdk 8.21.0 → 8.21.1

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.
@@ -3,4 +3,4 @@
3
3
  * Generated during publish from package.json version
4
4
  * This file is gitignored and created at publish time
5
5
  */
6
- export declare const SDK_VERSION = "8.21.0";
6
+ export declare const SDK_VERSION = "8.21.1";
@@ -6,5 +6,5 @@ exports.SDK_VERSION = void 0;
6
6
  * Generated during publish from package.json version
7
7
  * This file is gitignored and created at publish time
8
8
  */
9
- exports.SDK_VERSION = '8.21.0';
9
+ exports.SDK_VERSION = '8.21.1';
10
10
  //# sourceMappingURL=version.js.map
@@ -32,7 +32,8 @@ export declare const NATIVE_ADDRESS = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEe
32
32
  /**
33
33
  * Decimal precision of the native gas token on every EVM chain this SDK
34
34
  * supports (ETH, Base, Arbitrum, Avalanche, Polygon, BNB, HyperEVM, Unichain,
35
- * Mezo, Monad, Plasma, Ink, Flare, Katana, Citrea, Fluent, Tempo).
35
+ * Mezo, Monad, Plasma, Ink, Flare, Katana, Citrea, Fluent, Tempo, X Layer —
36
+ * whose native OKB is also 18 decimals).
36
37
  *
37
38
  * All of them use 18-decimal native tokens, so this is a single constant rather
38
39
  * than a per-chain map. It exists because the native token has no ERC-20
@@ -73,7 +74,8 @@ export declare const MULTICALL3_ADDRESS = "0xcA11bde05977b3631167028862bE2a17397
73
74
  /**
74
75
  * Chains where the canonical Multicall3 deployment was **verified on-chain**
75
76
  * (`eth_getCode` returned the 3808-byte runtime at {@link MULTICALL3_ADDRESS};
76
- * checked per chain on 2026-07-14, Tempo checked separately on 2026-07-15) —
77
+ * checked per chain on 2026-07-14, Tempo checked separately on 2026-07-15,
78
+ * X Layer on 2026-08-11) —
77
79
  * deterministic-deployer presence is NOT assumed. Chains outside this set
78
80
  * keep the per-call read path.
79
81
  *
@@ -40,7 +40,8 @@ exports.NATIVE_ADDRESS = '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE';
40
40
  /**
41
41
  * Decimal precision of the native gas token on every EVM chain this SDK
42
42
  * supports (ETH, Base, Arbitrum, Avalanche, Polygon, BNB, HyperEVM, Unichain,
43
- * Mezo, Monad, Plasma, Ink, Flare, Katana, Citrea, Fluent, Tempo).
43
+ * Mezo, Monad, Plasma, Ink, Flare, Katana, Citrea, Fluent, Tempo, X Layer —
44
+ * whose native OKB is also 18 decimals).
44
45
  *
45
46
  * All of them use 18-decimal native tokens, so this is a single constant rather
46
47
  * than a per-chain map. It exists because the native token has no ERC-20
@@ -160,6 +161,11 @@ exports.NETWORKS = {
160
161
  chainId: 4217,
161
162
  explorer: 'https://explore.tempo.xyz',
162
163
  },
164
+ 196: {
165
+ name: 'X Layer',
166
+ chainId: 196,
167
+ explorer: 'https://xlayerscan.com',
168
+ },
163
169
  };
164
170
  exports.AVAILABLE_CHAINS = Object.keys(exports.NETWORKS).map((c) => Number(c));
165
171
  /**
@@ -171,7 +177,8 @@ exports.MULTICALL3_ADDRESS = '0xcA11bde05977b3631167028862bE2a173976CA11';
171
177
  /**
172
178
  * Chains where the canonical Multicall3 deployment was **verified on-chain**
173
179
  * (`eth_getCode` returned the 3808-byte runtime at {@link MULTICALL3_ADDRESS};
174
- * checked per chain on 2026-07-14, Tempo checked separately on 2026-07-15) —
180
+ * checked per chain on 2026-07-14, Tempo checked separately on 2026-07-15,
181
+ * X Layer on 2026-08-11) —
175
182
  * deterministic-deployer presence is NOT assumed. Chains outside this set
176
183
  * keep the per-call read path.
177
184
  *
@@ -197,6 +204,7 @@ exports.MULTICALL3_VERIFIED_CHAINS = new Set([
197
204
  747474, // Katana
198
205
  25363, // Fluent
199
206
  4217, // Tempo
207
+ 196, // X Layer
200
208
  ]);
201
209
  /**
202
210
  * Fallbacks
@@ -225,5 +233,6 @@ exports.FALLBACK_RPC_URLS = {
225
233
  4114: ['https://rpc.mainnet.citrea.xyz'],
226
234
  25363: ['https://rpc.fluent.xyz'],
227
235
  4217: ['https://rpc.mainnet.tempo.xyz'],
236
+ 196: ['https://rpc.xlayer.tech'],
228
237
  };
229
238
  //# sourceMappingURL=web3.js.map
package/lib/sdk.d.ts CHANGED
@@ -17568,7 +17568,8 @@ declare type AsArray<T> = T extends readonly unknown[] ? T : never;
17568
17568
  /**
17569
17569
  * Decimal precision of the native gas token on every EVM chain this SDK
17570
17570
  * supports (ETH, Base, Arbitrum, Avalanche, Polygon, BNB, HyperEVM, Unichain,
17571
- * Mezo, Monad, Plasma, Ink, Flare, Katana, Citrea, Fluent, Tempo).
17571
+ * Mezo, Monad, Plasma, Ink, Flare, Katana, Citrea, Fluent, Tempo, X Layer —
17572
+ * whose native OKB is also 18 decimals).
17572
17573
  *
17573
17574
  * All of them use 18-decimal native tokens, so this is a single constant rather
17574
17575
  * than a per-chain map. It exists because the native token has no ERC-20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augustdigital/sdk",
3
- "version": "8.21.0",
3
+ "version": "8.21.1",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/sdk.d.ts",
6
6
  "keywords": [