@gfxlabs/oku-chains 1.1.239 → 1.1.240
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.
- package/dist/browser.js +104 -24
- package/dist/index-mjs.js +105 -26
- package/dist/index.js +104 -24
- package/dist/types/browser.d.ts +304 -117
- package/dist/types/index-mjs.d.ts +304 -117
- package/dist/types/index.d.ts +304 -117
- package/package.json +2 -2
package/dist/types/browser.d.ts
CHANGED
|
@@ -1808,15 +1808,16 @@ declare const celo: Readonly<{
|
|
|
1808
1808
|
format: (args: import("viem/chains").CeloRpcBlock) => {
|
|
1809
1809
|
baseFeePerGas: bigint | null;
|
|
1810
1810
|
blobGasUsed: bigint;
|
|
1811
|
-
difficulty: bigint
|
|
1811
|
+
difficulty: bigint;
|
|
1812
1812
|
excessBlobGas: bigint;
|
|
1813
1813
|
extraData: import("viem").Hex;
|
|
1814
|
-
gasLimit: bigint
|
|
1814
|
+
gasLimit: bigint;
|
|
1815
1815
|
gasUsed: bigint;
|
|
1816
1816
|
hash: `0x${string}` | null;
|
|
1817
1817
|
logsBloom: `0x${string}` | null;
|
|
1818
1818
|
miner: import("abitype").Address;
|
|
1819
|
-
|
|
1819
|
+
mixHash: import("viem").Hash;
|
|
1820
|
+
nonce: `0x${string}` | null;
|
|
1820
1821
|
number: bigint | null;
|
|
1821
1822
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1822
1823
|
parentHash: import("viem").Hash;
|
|
@@ -1829,14 +1830,9 @@ declare const celo: Readonly<{
|
|
|
1829
1830
|
totalDifficulty: bigint | null;
|
|
1830
1831
|
transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
|
|
1831
1832
|
transactionsRoot: import("viem").Hash;
|
|
1833
|
+
uncles: import("viem").Hash[];
|
|
1832
1834
|
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
1833
1835
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1834
|
-
mixHash?: undefined | undefined;
|
|
1835
|
-
randomness?: {
|
|
1836
|
-
committed: import("viem").Hex;
|
|
1837
|
-
revealed: import("viem").Hex;
|
|
1838
|
-
} | undefined | undefined;
|
|
1839
|
-
uncles?: undefined | undefined;
|
|
1840
1836
|
} & {};
|
|
1841
1837
|
type: "block";
|
|
1842
1838
|
};
|
|
@@ -2024,8 +2020,8 @@ declare const celo: Readonly<{
|
|
|
2024
2020
|
gatewayFee: bigint | null;
|
|
2025
2021
|
gatewayFeeRecipient: import("abitype").Address | null;
|
|
2026
2022
|
type: "cip42";
|
|
2027
|
-
authorizationList?: undefined;
|
|
2028
2023
|
blobVersionedHashes?: undefined;
|
|
2024
|
+
authorizationList?: undefined;
|
|
2029
2025
|
mint?: undefined;
|
|
2030
2026
|
isSystemTx?: undefined;
|
|
2031
2027
|
sourceHash?: undefined;
|
|
@@ -2053,8 +2049,8 @@ declare const celo: Readonly<{
|
|
|
2053
2049
|
chainId: number;
|
|
2054
2050
|
feeCurrency: import("abitype").Address | null;
|
|
2055
2051
|
type: "cip64";
|
|
2056
|
-
authorizationList?: undefined;
|
|
2057
2052
|
blobVersionedHashes?: undefined;
|
|
2053
|
+
authorizationList?: undefined;
|
|
2058
2054
|
mint?: undefined;
|
|
2059
2055
|
isSystemTx?: undefined;
|
|
2060
2056
|
sourceHash?: undefined;
|
|
@@ -2085,8 +2081,8 @@ declare const celo: Readonly<{
|
|
|
2085
2081
|
sourceHash: import("viem").Hex;
|
|
2086
2082
|
type: "deposit";
|
|
2087
2083
|
accessList?: undefined;
|
|
2088
|
-
authorizationList?: undefined;
|
|
2089
2084
|
blobVersionedHashes?: undefined;
|
|
2085
|
+
authorizationList?: undefined;
|
|
2090
2086
|
chainId?: undefined;
|
|
2091
2087
|
feeCurrency?: undefined;
|
|
2092
2088
|
gatewayFee?: undefined;
|
|
@@ -2111,10 +2107,10 @@ declare const celo: Readonly<{
|
|
|
2111
2107
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
2112
2108
|
blobs?: undefined;
|
|
2113
2109
|
accessList?: undefined;
|
|
2114
|
-
authorizationList?: undefined;
|
|
2115
2110
|
blobVersionedHashes?: undefined;
|
|
2116
2111
|
kzg?: undefined;
|
|
2117
2112
|
sidecars?: undefined;
|
|
2113
|
+
authorizationList?: undefined;
|
|
2118
2114
|
feeCurrency?: `0x${string}` | undefined;
|
|
2119
2115
|
} | {
|
|
2120
2116
|
data?: `0x${string}` | undefined;
|
|
@@ -2130,10 +2126,10 @@ declare const celo: Readonly<{
|
|
|
2130
2126
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
2131
2127
|
accessList?: import("viem").AccessList | undefined;
|
|
2132
2128
|
blobs?: undefined;
|
|
2133
|
-
authorizationList?: undefined;
|
|
2134
2129
|
blobVersionedHashes?: undefined;
|
|
2135
2130
|
kzg?: undefined;
|
|
2136
2131
|
sidecars?: undefined;
|
|
2132
|
+
authorizationList?: undefined;
|
|
2137
2133
|
feeCurrency?: `0x${string}` | undefined;
|
|
2138
2134
|
} | {
|
|
2139
2135
|
data?: `0x${string}` | undefined;
|
|
@@ -2149,10 +2145,10 @@ declare const celo: Readonly<{
|
|
|
2149
2145
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2150
2146
|
accessList?: import("viem").AccessList | undefined;
|
|
2151
2147
|
blobs?: undefined;
|
|
2152
|
-
authorizationList?: undefined;
|
|
2153
2148
|
blobVersionedHashes?: undefined;
|
|
2154
2149
|
kzg?: undefined;
|
|
2155
2150
|
sidecars?: undefined;
|
|
2151
|
+
authorizationList?: undefined;
|
|
2156
2152
|
feeCurrency?: `0x${string}` | undefined;
|
|
2157
2153
|
} | {
|
|
2158
2154
|
type?: "0x3" | undefined;
|
|
@@ -2207,10 +2203,10 @@ declare const celo: Readonly<{
|
|
|
2207
2203
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2208
2204
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2209
2205
|
blobs?: undefined;
|
|
2210
|
-
authorizationList?: undefined;
|
|
2211
2206
|
blobVersionedHashes?: undefined;
|
|
2212
2207
|
kzg?: undefined;
|
|
2213
2208
|
sidecars?: undefined;
|
|
2209
|
+
authorizationList?: undefined;
|
|
2214
2210
|
}) & {};
|
|
2215
2211
|
type: "transactionRequest";
|
|
2216
2212
|
};
|
|
@@ -2222,15 +2218,16 @@ declare const celo: Readonly<{
|
|
|
2222
2218
|
format: (args: import("viem/chains").CeloRpcBlock) => {
|
|
2223
2219
|
baseFeePerGas: bigint | null;
|
|
2224
2220
|
blobGasUsed: bigint;
|
|
2225
|
-
difficulty: bigint
|
|
2221
|
+
difficulty: bigint;
|
|
2226
2222
|
excessBlobGas: bigint;
|
|
2227
2223
|
extraData: import("viem").Hex;
|
|
2228
|
-
gasLimit: bigint
|
|
2224
|
+
gasLimit: bigint;
|
|
2229
2225
|
gasUsed: bigint;
|
|
2230
2226
|
hash: `0x${string}` | null;
|
|
2231
2227
|
logsBloom: `0x${string}` | null;
|
|
2232
2228
|
miner: import("abitype").Address;
|
|
2233
|
-
|
|
2229
|
+
mixHash: import("viem").Hash;
|
|
2230
|
+
nonce: `0x${string}` | null;
|
|
2234
2231
|
number: bigint | null;
|
|
2235
2232
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
2236
2233
|
parentHash: import("viem").Hash;
|
|
@@ -2243,14 +2240,9 @@ declare const celo: Readonly<{
|
|
|
2243
2240
|
totalDifficulty: bigint | null;
|
|
2244
2241
|
transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
|
|
2245
2242
|
transactionsRoot: import("viem").Hash;
|
|
2243
|
+
uncles: import("viem").Hash[];
|
|
2246
2244
|
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
2247
2245
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2248
|
-
mixHash?: undefined | undefined;
|
|
2249
|
-
randomness?: {
|
|
2250
|
-
committed: import("viem").Hex;
|
|
2251
|
-
revealed: import("viem").Hex;
|
|
2252
|
-
} | undefined | undefined;
|
|
2253
|
-
uncles?: undefined | undefined;
|
|
2254
2246
|
} & {};
|
|
2255
2247
|
type: "block";
|
|
2256
2248
|
};
|
|
@@ -2438,8 +2430,8 @@ declare const celo: Readonly<{
|
|
|
2438
2430
|
gatewayFee: bigint | null;
|
|
2439
2431
|
gatewayFeeRecipient: import("abitype").Address | null;
|
|
2440
2432
|
type: "cip42";
|
|
2441
|
-
authorizationList?: undefined;
|
|
2442
2433
|
blobVersionedHashes?: undefined;
|
|
2434
|
+
authorizationList?: undefined;
|
|
2443
2435
|
mint?: undefined;
|
|
2444
2436
|
isSystemTx?: undefined;
|
|
2445
2437
|
sourceHash?: undefined;
|
|
@@ -2467,8 +2459,8 @@ declare const celo: Readonly<{
|
|
|
2467
2459
|
chainId: number;
|
|
2468
2460
|
feeCurrency: import("abitype").Address | null;
|
|
2469
2461
|
type: "cip64";
|
|
2470
|
-
authorizationList?: undefined;
|
|
2471
2462
|
blobVersionedHashes?: undefined;
|
|
2463
|
+
authorizationList?: undefined;
|
|
2472
2464
|
mint?: undefined;
|
|
2473
2465
|
isSystemTx?: undefined;
|
|
2474
2466
|
sourceHash?: undefined;
|
|
@@ -2499,8 +2491,8 @@ declare const celo: Readonly<{
|
|
|
2499
2491
|
sourceHash: import("viem").Hex;
|
|
2500
2492
|
type: "deposit";
|
|
2501
2493
|
accessList?: undefined;
|
|
2502
|
-
authorizationList?: undefined;
|
|
2503
2494
|
blobVersionedHashes?: undefined;
|
|
2495
|
+
authorizationList?: undefined;
|
|
2504
2496
|
chainId?: undefined;
|
|
2505
2497
|
feeCurrency?: undefined;
|
|
2506
2498
|
gatewayFee?: undefined;
|
|
@@ -2525,10 +2517,10 @@ declare const celo: Readonly<{
|
|
|
2525
2517
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
2526
2518
|
blobs?: undefined;
|
|
2527
2519
|
accessList?: undefined;
|
|
2528
|
-
authorizationList?: undefined;
|
|
2529
2520
|
blobVersionedHashes?: undefined;
|
|
2530
2521
|
kzg?: undefined;
|
|
2531
2522
|
sidecars?: undefined;
|
|
2523
|
+
authorizationList?: undefined;
|
|
2532
2524
|
feeCurrency?: `0x${string}` | undefined;
|
|
2533
2525
|
} | {
|
|
2534
2526
|
data?: `0x${string}` | undefined;
|
|
@@ -2544,10 +2536,10 @@ declare const celo: Readonly<{
|
|
|
2544
2536
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
2545
2537
|
accessList?: import("viem").AccessList | undefined;
|
|
2546
2538
|
blobs?: undefined;
|
|
2547
|
-
authorizationList?: undefined;
|
|
2548
2539
|
blobVersionedHashes?: undefined;
|
|
2549
2540
|
kzg?: undefined;
|
|
2550
2541
|
sidecars?: undefined;
|
|
2542
|
+
authorizationList?: undefined;
|
|
2551
2543
|
feeCurrency?: `0x${string}` | undefined;
|
|
2552
2544
|
} | {
|
|
2553
2545
|
data?: `0x${string}` | undefined;
|
|
@@ -2563,10 +2555,10 @@ declare const celo: Readonly<{
|
|
|
2563
2555
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2564
2556
|
accessList?: import("viem").AccessList | undefined;
|
|
2565
2557
|
blobs?: undefined;
|
|
2566
|
-
authorizationList?: undefined;
|
|
2567
2558
|
blobVersionedHashes?: undefined;
|
|
2568
2559
|
kzg?: undefined;
|
|
2569
2560
|
sidecars?: undefined;
|
|
2561
|
+
authorizationList?: undefined;
|
|
2570
2562
|
feeCurrency?: `0x${string}` | undefined;
|
|
2571
2563
|
} | {
|
|
2572
2564
|
type?: "0x3" | undefined;
|
|
@@ -2621,10 +2613,10 @@ declare const celo: Readonly<{
|
|
|
2621
2613
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2622
2614
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2623
2615
|
blobs?: undefined;
|
|
2624
|
-
authorizationList?: undefined;
|
|
2625
2616
|
blobVersionedHashes?: undefined;
|
|
2626
2617
|
kzg?: undefined;
|
|
2627
2618
|
sidecars?: undefined;
|
|
2619
|
+
authorizationList?: undefined;
|
|
2628
2620
|
}) & {};
|
|
2629
2621
|
type: "transactionRequest";
|
|
2630
2622
|
};
|
|
@@ -2748,6 +2740,108 @@ declare const corn: Readonly<{
|
|
|
2748
2740
|
formatters?: undefined | undefined;
|
|
2749
2741
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
2750
2742
|
}>;
|
|
2743
|
+
declare const etherlink: Readonly<{
|
|
2744
|
+
name: "Corn";
|
|
2745
|
+
blockTimeSeconds: 0.6;
|
|
2746
|
+
launchTime: 1749000115;
|
|
2747
|
+
sortIndex: 15;
|
|
2748
|
+
logoUrl: "https://assets.oku.trade/chains/etherlink-logo.png";
|
|
2749
|
+
safeReorgDistance: 90000;
|
|
2750
|
+
externalId: {
|
|
2751
|
+
tenderly: string;
|
|
2752
|
+
};
|
|
2753
|
+
markets: {};
|
|
2754
|
+
bridges: {};
|
|
2755
|
+
oracles: {};
|
|
2756
|
+
morpho: {};
|
|
2757
|
+
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
2758
|
+
uniswap: {
|
|
2759
|
+
deployBlock: number;
|
|
2760
|
+
poolFactory: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D";
|
|
2761
|
+
permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578";
|
|
2762
|
+
multicall2: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
|
|
2763
|
+
tickLens: "0xB3309C48F8407651D918ca3Da4C45DE40109E641";
|
|
2764
|
+
nonfungiblePositionManager: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
|
|
2765
|
+
positionsNFT: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
|
|
2766
|
+
positionsNFTDeployBlock: number;
|
|
2767
|
+
universalRouter: "0x9db70E29712Cc8Af10c2B597BaDA6784544FF407";
|
|
2768
|
+
wrappedNativeAddress: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
2769
|
+
wrappedNativeSymbol: string;
|
|
2770
|
+
wrappedNativeName: string;
|
|
2771
|
+
wrappedNativeDecimals: number;
|
|
2772
|
+
nativeCurrencyName: string;
|
|
2773
|
+
};
|
|
2774
|
+
token: {
|
|
2775
|
+
wethAddress: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
2776
|
+
usdcAddress: "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9";
|
|
2777
|
+
wbtcAddress: "0xbFc94CD2B1E55999Cfc7347a9313e88702B83d0F";
|
|
2778
|
+
};
|
|
2779
|
+
oku: {
|
|
2780
|
+
limitOrderRegistry: "0x0000000000000000000000000000000000000000";
|
|
2781
|
+
limitOrderRegistryDeployBlock: number;
|
|
2782
|
+
pricing: {
|
|
2783
|
+
nativeWrappedToken: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
2784
|
+
nativeWrappedName: string;
|
|
2785
|
+
};
|
|
2786
|
+
};
|
|
2787
|
+
defaultPool: "0x0000000000000000000000000000000000000000";
|
|
2788
|
+
defaultToken0: "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9";
|
|
2789
|
+
defaultToken1: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
2790
|
+
tokenList: ({
|
|
2791
|
+
symbol: string;
|
|
2792
|
+
address: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
2793
|
+
} | {
|
|
2794
|
+
symbol: string;
|
|
2795
|
+
address: "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9";
|
|
2796
|
+
})[];
|
|
2797
|
+
stables: ("0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9" | "0x2C03058C8AFC06713be23e58D2febC8337dbfE6A")[];
|
|
2798
|
+
watchlist: never[];
|
|
2799
|
+
internalName: "etherlink";
|
|
2800
|
+
nativeLogoUrl: "https://assets.oku.trade/natives/xtz.png";
|
|
2801
|
+
contracts: {
|
|
2802
|
+
limitOrder: {
|
|
2803
|
+
address: "0x0000000000000000000000000000000000000000";
|
|
2804
|
+
};
|
|
2805
|
+
nftManager: {
|
|
2806
|
+
address: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
|
|
2807
|
+
};
|
|
2808
|
+
weth9: {
|
|
2809
|
+
address: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
2810
|
+
};
|
|
2811
|
+
multicall2: {
|
|
2812
|
+
address: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
|
|
2813
|
+
};
|
|
2814
|
+
multicall3: {
|
|
2815
|
+
address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
2816
|
+
};
|
|
2817
|
+
};
|
|
2818
|
+
blockExplorers: {
|
|
2819
|
+
readonly default: {
|
|
2820
|
+
readonly name: "Etherlink";
|
|
2821
|
+
readonly url: "https://explorer.etherlink.com";
|
|
2822
|
+
};
|
|
2823
|
+
};
|
|
2824
|
+
ensTlds?: readonly string[] | undefined;
|
|
2825
|
+
id: 42793;
|
|
2826
|
+
nativeCurrency: {
|
|
2827
|
+
readonly decimals: 18;
|
|
2828
|
+
readonly name: "Tez";
|
|
2829
|
+
readonly symbol: "XTZ";
|
|
2830
|
+
};
|
|
2831
|
+
rpcUrls: {
|
|
2832
|
+
readonly default: {
|
|
2833
|
+
readonly http: readonly [
|
|
2834
|
+
"https://node.mainnet.etherlink.com"
|
|
2835
|
+
];
|
|
2836
|
+
};
|
|
2837
|
+
};
|
|
2838
|
+
sourceId?: number | undefined | undefined | undefined;
|
|
2839
|
+
testnet?: boolean | undefined | undefined | undefined;
|
|
2840
|
+
custom?: Record<string, unknown> | undefined;
|
|
2841
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2842
|
+
formatters?: undefined | undefined;
|
|
2843
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
2844
|
+
}>;
|
|
2751
2845
|
declare const filecoin: Readonly<{
|
|
2752
2846
|
sortIndex: 10;
|
|
2753
2847
|
launchTime: 1677600000;
|
|
@@ -5003,58 +5097,58 @@ declare const nibiru: Readonly<{
|
|
|
5003
5097
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
5004
5098
|
uniswap: {
|
|
5005
5099
|
deployBlock: number;
|
|
5006
|
-
poolFactory: "
|
|
5007
|
-
permit2: "
|
|
5008
|
-
multicall2: "
|
|
5009
|
-
tickLens: "
|
|
5010
|
-
nonfungiblePositionManager: "
|
|
5011
|
-
positionsNFT: "
|
|
5100
|
+
poolFactory: "0x346239972d1fa486FC4a521031BC81bFB7D6e8a4";
|
|
5101
|
+
permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578";
|
|
5102
|
+
multicall2: "0x352A86168e6988A1aDF9A15Cb00017AAd3B67155";
|
|
5103
|
+
tickLens: "0xA9d71E1dd7ca26F26e656E66d6AA81ed7f745bf0";
|
|
5104
|
+
nonfungiblePositionManager: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
5105
|
+
positionsNFT: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
5012
5106
|
positionsNFTDeployBlock: number;
|
|
5013
|
-
universalRouter: "
|
|
5014
|
-
wrappedNativeAddress: "
|
|
5107
|
+
universalRouter: "0xA7E6cB0A6B1BE8b779022A6aFcb097cF0d3Ff4A2";
|
|
5108
|
+
wrappedNativeAddress: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
5015
5109
|
wrappedNativeSymbol: string;
|
|
5016
5110
|
wrappedNativeName: string;
|
|
5017
5111
|
wrappedNativeDecimals: number;
|
|
5018
5112
|
nativeCurrencyName: string;
|
|
5019
5113
|
};
|
|
5020
5114
|
token: {
|
|
5021
|
-
wethAddress: "
|
|
5115
|
+
wethAddress: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
5022
5116
|
usdcAddress: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
5023
5117
|
};
|
|
5024
5118
|
oku: {
|
|
5025
|
-
limitOrderRegistry: "
|
|
5119
|
+
limitOrderRegistry: "0x6E1293993C71Cb2E6b2Da8559f6d7Dc1fdb3AE02";
|
|
5026
5120
|
limitOrderRegistryDeployBlock: number;
|
|
5027
5121
|
pricing: {
|
|
5028
5122
|
nativeWrappedToken: "0x1429B38e58b97de646ACd65fdb8a4502c2131484";
|
|
5029
5123
|
nativeWrappedName: string;
|
|
5030
5124
|
};
|
|
5031
5125
|
};
|
|
5032
|
-
defaultPool: "
|
|
5126
|
+
defaultPool: "0x0000000000000000000000000000000000000000";
|
|
5033
5127
|
defaultToken0: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
5034
|
-
defaultToken1: "
|
|
5128
|
+
defaultToken1: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
5035
5129
|
tokenList: ({
|
|
5036
5130
|
symbol: string;
|
|
5037
|
-
address: "
|
|
5131
|
+
address: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
5038
5132
|
} | {
|
|
5039
5133
|
symbol: string;
|
|
5040
5134
|
address: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
5041
5135
|
})[];
|
|
5042
5136
|
stables: "0x0829F361A05D993d5CEb035cA6DF3446b060970b"[];
|
|
5043
|
-
watchlist:
|
|
5137
|
+
watchlist: never[];
|
|
5044
5138
|
internalName: "nibiru";
|
|
5045
5139
|
nativeLogoUrl: "https://assets.oku.trade/natives/nibi.svg";
|
|
5046
5140
|
contracts: {
|
|
5047
5141
|
limitOrder: {
|
|
5048
|
-
address: "
|
|
5142
|
+
address: "0x6E1293993C71Cb2E6b2Da8559f6d7Dc1fdb3AE02";
|
|
5049
5143
|
};
|
|
5050
5144
|
nftManager: {
|
|
5051
|
-
address: "
|
|
5145
|
+
address: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
5052
5146
|
};
|
|
5053
5147
|
weth9: {
|
|
5054
|
-
address: "
|
|
5148
|
+
address: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
5055
5149
|
};
|
|
5056
5150
|
multicall2: {
|
|
5057
|
-
address: "
|
|
5151
|
+
address: "0x352A86168e6988A1aDF9A15Cb00017AAd3B67155";
|
|
5058
5152
|
};
|
|
5059
5153
|
multicall3: {
|
|
5060
5154
|
address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
@@ -6833,11 +6927,6 @@ declare const worldchain: Readonly<{
|
|
|
6833
6927
|
externalId: {
|
|
6834
6928
|
tenderly: string;
|
|
6835
6929
|
};
|
|
6836
|
-
rpcUrls: {
|
|
6837
|
-
default: {
|
|
6838
|
-
http: string[];
|
|
6839
|
-
};
|
|
6840
|
-
};
|
|
6841
6930
|
markets: {};
|
|
6842
6931
|
bridges: {};
|
|
6843
6932
|
oracles: {};
|
|
@@ -6968,6 +7057,13 @@ declare const worldchain: Readonly<{
|
|
|
6968
7057
|
readonly symbol: "ETH";
|
|
6969
7058
|
readonly decimals: 18;
|
|
6970
7059
|
};
|
|
7060
|
+
rpcUrls: {
|
|
7061
|
+
readonly default: {
|
|
7062
|
+
readonly http: readonly [
|
|
7063
|
+
"https://worldchain-mainnet.g.alchemy.com/public"
|
|
7064
|
+
];
|
|
7065
|
+
};
|
|
7066
|
+
};
|
|
6971
7067
|
sourceId: 1;
|
|
6972
7068
|
testnet: false;
|
|
6973
7069
|
custom?: Record<string, unknown> | undefined;
|
|
@@ -7859,10 +7955,10 @@ declare const zkSync: Readonly<{
|
|
|
7859
7955
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
7860
7956
|
blobs?: undefined;
|
|
7861
7957
|
accessList?: undefined;
|
|
7862
|
-
authorizationList?: undefined;
|
|
7863
7958
|
blobVersionedHashes?: undefined;
|
|
7864
7959
|
kzg?: undefined;
|
|
7865
7960
|
sidecars?: undefined;
|
|
7961
|
+
authorizationList?: undefined;
|
|
7866
7962
|
eip712Meta?: undefined | undefined;
|
|
7867
7963
|
} | {
|
|
7868
7964
|
data?: `0x${string}` | undefined;
|
|
@@ -7878,10 +7974,10 @@ declare const zkSync: Readonly<{
|
|
|
7878
7974
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
7879
7975
|
accessList?: import("viem").AccessList | undefined;
|
|
7880
7976
|
blobs?: undefined;
|
|
7881
|
-
authorizationList?: undefined;
|
|
7882
7977
|
blobVersionedHashes?: undefined;
|
|
7883
7978
|
kzg?: undefined;
|
|
7884
7979
|
sidecars?: undefined;
|
|
7980
|
+
authorizationList?: undefined;
|
|
7885
7981
|
eip712Meta?: undefined | undefined;
|
|
7886
7982
|
} | {
|
|
7887
7983
|
data?: `0x${string}` | undefined;
|
|
@@ -7897,10 +7993,10 @@ declare const zkSync: Readonly<{
|
|
|
7897
7993
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
7898
7994
|
accessList?: import("viem").AccessList | undefined;
|
|
7899
7995
|
blobs?: undefined;
|
|
7900
|
-
authorizationList?: undefined;
|
|
7901
7996
|
blobVersionedHashes?: undefined;
|
|
7902
7997
|
kzg?: undefined;
|
|
7903
7998
|
sidecars?: undefined;
|
|
7999
|
+
authorizationList?: undefined;
|
|
7904
8000
|
eip712Meta?: undefined | undefined;
|
|
7905
8001
|
} | {
|
|
7906
8002
|
type?: "0x3" | undefined;
|
|
@@ -11274,10 +11370,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11274
11370
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
11275
11371
|
blobs?: undefined;
|
|
11276
11372
|
accessList?: undefined;
|
|
11277
|
-
authorizationList?: undefined;
|
|
11278
11373
|
blobVersionedHashes?: undefined;
|
|
11279
11374
|
kzg?: undefined;
|
|
11280
11375
|
sidecars?: undefined;
|
|
11376
|
+
authorizationList?: undefined;
|
|
11281
11377
|
eip712Meta?: undefined | undefined;
|
|
11282
11378
|
} | {
|
|
11283
11379
|
data?: `0x${string}` | undefined;
|
|
@@ -11293,10 +11389,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11293
11389
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
11294
11390
|
accessList?: import("viem").AccessList | undefined;
|
|
11295
11391
|
blobs?: undefined;
|
|
11296
|
-
authorizationList?: undefined;
|
|
11297
11392
|
blobVersionedHashes?: undefined;
|
|
11298
11393
|
kzg?: undefined;
|
|
11299
11394
|
sidecars?: undefined;
|
|
11395
|
+
authorizationList?: undefined;
|
|
11300
11396
|
eip712Meta?: undefined | undefined;
|
|
11301
11397
|
} | {
|
|
11302
11398
|
data?: `0x${string}` | undefined;
|
|
@@ -11312,10 +11408,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11312
11408
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
11313
11409
|
accessList?: import("viem").AccessList | undefined;
|
|
11314
11410
|
blobs?: undefined;
|
|
11315
|
-
authorizationList?: undefined;
|
|
11316
11411
|
blobVersionedHashes?: undefined;
|
|
11317
11412
|
kzg?: undefined;
|
|
11318
11413
|
sidecars?: undefined;
|
|
11414
|
+
authorizationList?: undefined;
|
|
11319
11415
|
eip712Meta?: undefined | undefined;
|
|
11320
11416
|
} | {
|
|
11321
11417
|
type?: "0x3" | undefined;
|
|
@@ -13678,15 +13774,16 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13678
13774
|
format: (args: import("viem/chains").CeloRpcBlock) => {
|
|
13679
13775
|
baseFeePerGas: bigint | null;
|
|
13680
13776
|
blobGasUsed: bigint;
|
|
13681
|
-
difficulty: bigint
|
|
13777
|
+
difficulty: bigint;
|
|
13682
13778
|
excessBlobGas: bigint;
|
|
13683
13779
|
extraData: import("viem").Hex;
|
|
13684
|
-
gasLimit: bigint
|
|
13780
|
+
gasLimit: bigint;
|
|
13685
13781
|
gasUsed: bigint;
|
|
13686
13782
|
hash: `0x${string}` | null;
|
|
13687
13783
|
logsBloom: `0x${string}` | null;
|
|
13688
13784
|
miner: import("abitype").Address;
|
|
13689
|
-
|
|
13785
|
+
mixHash: import("viem").Hash;
|
|
13786
|
+
nonce: `0x${string}` | null;
|
|
13690
13787
|
number: bigint | null;
|
|
13691
13788
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
13692
13789
|
parentHash: import("viem").Hash;
|
|
@@ -13699,14 +13796,9 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13699
13796
|
totalDifficulty: bigint | null;
|
|
13700
13797
|
transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
|
|
13701
13798
|
transactionsRoot: import("viem").Hash;
|
|
13799
|
+
uncles: import("viem").Hash[];
|
|
13702
13800
|
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
13703
13801
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
13704
|
-
mixHash?: undefined | undefined;
|
|
13705
|
-
randomness?: {
|
|
13706
|
-
committed: import("viem").Hex;
|
|
13707
|
-
revealed: import("viem").Hex;
|
|
13708
|
-
} | undefined | undefined;
|
|
13709
|
-
uncles?: undefined | undefined;
|
|
13710
13802
|
} & {};
|
|
13711
13803
|
type: "block";
|
|
13712
13804
|
};
|
|
@@ -13893,8 +13985,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13893
13985
|
gatewayFee: bigint | null;
|
|
13894
13986
|
gatewayFeeRecipient: import("abitype").Address | null;
|
|
13895
13987
|
type: "cip42";
|
|
13896
|
-
authorizationList?: undefined;
|
|
13897
13988
|
blobVersionedHashes?: undefined;
|
|
13989
|
+
authorizationList?: undefined;
|
|
13898
13990
|
mint?: undefined;
|
|
13899
13991
|
isSystemTx?: undefined;
|
|
13900
13992
|
sourceHash?: undefined;
|
|
@@ -13922,8 +14014,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13922
14014
|
chainId: number;
|
|
13923
14015
|
feeCurrency: import("abitype").Address | null;
|
|
13924
14016
|
type: "cip64";
|
|
13925
|
-
authorizationList?: undefined;
|
|
13926
14017
|
blobVersionedHashes?: undefined;
|
|
14018
|
+
authorizationList?: undefined;
|
|
13927
14019
|
mint?: undefined;
|
|
13928
14020
|
isSystemTx?: undefined;
|
|
13929
14021
|
sourceHash?: undefined;
|
|
@@ -13954,8 +14046,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13954
14046
|
sourceHash: import("viem").Hex;
|
|
13955
14047
|
type: "deposit";
|
|
13956
14048
|
accessList?: undefined;
|
|
13957
|
-
authorizationList?: undefined;
|
|
13958
14049
|
blobVersionedHashes?: undefined;
|
|
14050
|
+
authorizationList?: undefined;
|
|
13959
14051
|
chainId?: undefined;
|
|
13960
14052
|
feeCurrency?: undefined;
|
|
13961
14053
|
gatewayFee?: undefined;
|
|
@@ -13979,10 +14071,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13979
14071
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
13980
14072
|
blobs?: undefined;
|
|
13981
14073
|
accessList?: undefined;
|
|
13982
|
-
authorizationList?: undefined;
|
|
13983
14074
|
blobVersionedHashes?: undefined;
|
|
13984
14075
|
kzg?: undefined;
|
|
13985
14076
|
sidecars?: undefined;
|
|
14077
|
+
authorizationList?: undefined;
|
|
13986
14078
|
feeCurrency?: `0x${string}` | undefined;
|
|
13987
14079
|
} | {
|
|
13988
14080
|
data?: `0x${string}` | undefined;
|
|
@@ -13998,10 +14090,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13998
14090
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
13999
14091
|
accessList?: import("viem").AccessList | undefined;
|
|
14000
14092
|
blobs?: undefined;
|
|
14001
|
-
authorizationList?: undefined;
|
|
14002
14093
|
blobVersionedHashes?: undefined;
|
|
14003
14094
|
kzg?: undefined;
|
|
14004
14095
|
sidecars?: undefined;
|
|
14096
|
+
authorizationList?: undefined;
|
|
14005
14097
|
feeCurrency?: `0x${string}` | undefined;
|
|
14006
14098
|
} | {
|
|
14007
14099
|
data?: `0x${string}` | undefined;
|
|
@@ -14017,10 +14109,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14017
14109
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
14018
14110
|
accessList?: import("viem").AccessList | undefined;
|
|
14019
14111
|
blobs?: undefined;
|
|
14020
|
-
authorizationList?: undefined;
|
|
14021
14112
|
blobVersionedHashes?: undefined;
|
|
14022
14113
|
kzg?: undefined;
|
|
14023
14114
|
sidecars?: undefined;
|
|
14115
|
+
authorizationList?: undefined;
|
|
14024
14116
|
feeCurrency?: `0x${string}` | undefined;
|
|
14025
14117
|
} | {
|
|
14026
14118
|
type?: "0x3" | undefined;
|
|
@@ -14075,10 +14167,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14075
14167
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
14076
14168
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
14077
14169
|
blobs?: undefined;
|
|
14078
|
-
authorizationList?: undefined;
|
|
14079
14170
|
blobVersionedHashes?: undefined;
|
|
14080
14171
|
kzg?: undefined;
|
|
14081
14172
|
sidecars?: undefined;
|
|
14173
|
+
authorizationList?: undefined;
|
|
14082
14174
|
}) & {};
|
|
14083
14175
|
type: "transactionRequest";
|
|
14084
14176
|
};
|
|
@@ -14089,15 +14181,16 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14089
14181
|
format: (args: import("viem/chains").CeloRpcBlock) => {
|
|
14090
14182
|
baseFeePerGas: bigint | null;
|
|
14091
14183
|
blobGasUsed: bigint;
|
|
14092
|
-
difficulty: bigint
|
|
14184
|
+
difficulty: bigint;
|
|
14093
14185
|
excessBlobGas: bigint;
|
|
14094
14186
|
extraData: import("viem").Hex;
|
|
14095
|
-
gasLimit: bigint
|
|
14187
|
+
gasLimit: bigint;
|
|
14096
14188
|
gasUsed: bigint;
|
|
14097
14189
|
hash: `0x${string}` | null;
|
|
14098
14190
|
logsBloom: `0x${string}` | null;
|
|
14099
14191
|
miner: import("abitype").Address;
|
|
14100
|
-
|
|
14192
|
+
mixHash: import("viem").Hash;
|
|
14193
|
+
nonce: `0x${string}` | null;
|
|
14101
14194
|
number: bigint | null;
|
|
14102
14195
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
14103
14196
|
parentHash: import("viem").Hash;
|
|
@@ -14110,14 +14203,9 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14110
14203
|
totalDifficulty: bigint | null;
|
|
14111
14204
|
transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
|
|
14112
14205
|
transactionsRoot: import("viem").Hash;
|
|
14206
|
+
uncles: import("viem").Hash[];
|
|
14113
14207
|
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
14114
14208
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
14115
|
-
mixHash?: undefined | undefined;
|
|
14116
|
-
randomness?: {
|
|
14117
|
-
committed: import("viem").Hex;
|
|
14118
|
-
revealed: import("viem").Hex;
|
|
14119
|
-
} | undefined | undefined;
|
|
14120
|
-
uncles?: undefined | undefined;
|
|
14121
14209
|
} & {};
|
|
14122
14210
|
type: "block";
|
|
14123
14211
|
};
|
|
@@ -14304,8 +14392,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14304
14392
|
gatewayFee: bigint | null;
|
|
14305
14393
|
gatewayFeeRecipient: import("abitype").Address | null;
|
|
14306
14394
|
type: "cip42";
|
|
14307
|
-
authorizationList?: undefined;
|
|
14308
14395
|
blobVersionedHashes?: undefined;
|
|
14396
|
+
authorizationList?: undefined;
|
|
14309
14397
|
mint?: undefined;
|
|
14310
14398
|
isSystemTx?: undefined;
|
|
14311
14399
|
sourceHash?: undefined;
|
|
@@ -14333,8 +14421,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14333
14421
|
chainId: number;
|
|
14334
14422
|
feeCurrency: import("abitype").Address | null;
|
|
14335
14423
|
type: "cip64";
|
|
14336
|
-
authorizationList?: undefined;
|
|
14337
14424
|
blobVersionedHashes?: undefined;
|
|
14425
|
+
authorizationList?: undefined;
|
|
14338
14426
|
mint?: undefined;
|
|
14339
14427
|
isSystemTx?: undefined;
|
|
14340
14428
|
sourceHash?: undefined;
|
|
@@ -14365,8 +14453,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14365
14453
|
sourceHash: import("viem").Hex;
|
|
14366
14454
|
type: "deposit";
|
|
14367
14455
|
accessList?: undefined;
|
|
14368
|
-
authorizationList?: undefined;
|
|
14369
14456
|
blobVersionedHashes?: undefined;
|
|
14457
|
+
authorizationList?: undefined;
|
|
14370
14458
|
chainId?: undefined;
|
|
14371
14459
|
feeCurrency?: undefined;
|
|
14372
14460
|
gatewayFee?: undefined;
|
|
@@ -14390,10 +14478,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14390
14478
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
14391
14479
|
blobs?: undefined;
|
|
14392
14480
|
accessList?: undefined;
|
|
14393
|
-
authorizationList?: undefined;
|
|
14394
14481
|
blobVersionedHashes?: undefined;
|
|
14395
14482
|
kzg?: undefined;
|
|
14396
14483
|
sidecars?: undefined;
|
|
14484
|
+
authorizationList?: undefined;
|
|
14397
14485
|
feeCurrency?: `0x${string}` | undefined;
|
|
14398
14486
|
} | {
|
|
14399
14487
|
data?: `0x${string}` | undefined;
|
|
@@ -14409,10 +14497,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14409
14497
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
14410
14498
|
accessList?: import("viem").AccessList | undefined;
|
|
14411
14499
|
blobs?: undefined;
|
|
14412
|
-
authorizationList?: undefined;
|
|
14413
14500
|
blobVersionedHashes?: undefined;
|
|
14414
14501
|
kzg?: undefined;
|
|
14415
14502
|
sidecars?: undefined;
|
|
14503
|
+
authorizationList?: undefined;
|
|
14416
14504
|
feeCurrency?: `0x${string}` | undefined;
|
|
14417
14505
|
} | {
|
|
14418
14506
|
data?: `0x${string}` | undefined;
|
|
@@ -14428,10 +14516,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14428
14516
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
14429
14517
|
accessList?: import("viem").AccessList | undefined;
|
|
14430
14518
|
blobs?: undefined;
|
|
14431
|
-
authorizationList?: undefined;
|
|
14432
14519
|
blobVersionedHashes?: undefined;
|
|
14433
14520
|
kzg?: undefined;
|
|
14434
14521
|
sidecars?: undefined;
|
|
14522
|
+
authorizationList?: undefined;
|
|
14435
14523
|
feeCurrency?: `0x${string}` | undefined;
|
|
14436
14524
|
} | {
|
|
14437
14525
|
type?: "0x3" | undefined;
|
|
@@ -14486,10 +14574,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14486
14574
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
14487
14575
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
14488
14576
|
blobs?: undefined;
|
|
14489
|
-
authorizationList?: undefined;
|
|
14490
14577
|
blobVersionedHashes?: undefined;
|
|
14491
14578
|
kzg?: undefined;
|
|
14492
14579
|
sidecars?: undefined;
|
|
14580
|
+
authorizationList?: undefined;
|
|
14493
14581
|
}) & {};
|
|
14494
14582
|
type: "transactionRequest";
|
|
14495
14583
|
};
|
|
@@ -15185,11 +15273,6 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15185
15273
|
externalId: {
|
|
15186
15274
|
tenderly: string;
|
|
15187
15275
|
};
|
|
15188
|
-
rpcUrls: {
|
|
15189
|
-
default: {
|
|
15190
|
-
http: string[];
|
|
15191
|
-
};
|
|
15192
|
-
};
|
|
15193
15276
|
markets: {};
|
|
15194
15277
|
bridges: {};
|
|
15195
15278
|
oracles: {};
|
|
@@ -15320,6 +15403,11 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15320
15403
|
readonly symbol: "ETH";
|
|
15321
15404
|
readonly decimals: 18;
|
|
15322
15405
|
};
|
|
15406
|
+
rpcUrls: {
|
|
15407
|
+
readonly default: {
|
|
15408
|
+
readonly http: readonly ["https://worldchain-mainnet.g.alchemy.com/public"];
|
|
15409
|
+
};
|
|
15410
|
+
};
|
|
15323
15411
|
sourceId: 1;
|
|
15324
15412
|
testnet: false;
|
|
15325
15413
|
custom?: Record<string, unknown> | undefined;
|
|
@@ -15869,58 +15957,58 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15869
15957
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
15870
15958
|
uniswap: {
|
|
15871
15959
|
deployBlock: number;
|
|
15872
|
-
poolFactory: "
|
|
15873
|
-
permit2: "
|
|
15874
|
-
multicall2: "
|
|
15875
|
-
tickLens: "
|
|
15876
|
-
nonfungiblePositionManager: "
|
|
15877
|
-
positionsNFT: "
|
|
15960
|
+
poolFactory: "0x346239972d1fa486FC4a521031BC81bFB7D6e8a4";
|
|
15961
|
+
permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578";
|
|
15962
|
+
multicall2: "0x352A86168e6988A1aDF9A15Cb00017AAd3B67155";
|
|
15963
|
+
tickLens: "0xA9d71E1dd7ca26F26e656E66d6AA81ed7f745bf0";
|
|
15964
|
+
nonfungiblePositionManager: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
15965
|
+
positionsNFT: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
15878
15966
|
positionsNFTDeployBlock: number;
|
|
15879
|
-
universalRouter: "
|
|
15880
|
-
wrappedNativeAddress: "
|
|
15967
|
+
universalRouter: "0xA7E6cB0A6B1BE8b779022A6aFcb097cF0d3Ff4A2";
|
|
15968
|
+
wrappedNativeAddress: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15881
15969
|
wrappedNativeSymbol: string;
|
|
15882
15970
|
wrappedNativeName: string;
|
|
15883
15971
|
wrappedNativeDecimals: number;
|
|
15884
15972
|
nativeCurrencyName: string;
|
|
15885
15973
|
};
|
|
15886
15974
|
token: {
|
|
15887
|
-
wethAddress: "
|
|
15975
|
+
wethAddress: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15888
15976
|
usdcAddress: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
15889
15977
|
};
|
|
15890
15978
|
oku: {
|
|
15891
|
-
limitOrderRegistry: "
|
|
15979
|
+
limitOrderRegistry: "0x6E1293993C71Cb2E6b2Da8559f6d7Dc1fdb3AE02";
|
|
15892
15980
|
limitOrderRegistryDeployBlock: number;
|
|
15893
15981
|
pricing: {
|
|
15894
15982
|
nativeWrappedToken: "0x1429B38e58b97de646ACd65fdb8a4502c2131484";
|
|
15895
15983
|
nativeWrappedName: string;
|
|
15896
15984
|
};
|
|
15897
15985
|
};
|
|
15898
|
-
defaultPool: "
|
|
15986
|
+
defaultPool: "0x0000000000000000000000000000000000000000";
|
|
15899
15987
|
defaultToken0: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
15900
|
-
defaultToken1: "
|
|
15988
|
+
defaultToken1: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15901
15989
|
tokenList: ({
|
|
15902
15990
|
symbol: string;
|
|
15903
|
-
address: "
|
|
15991
|
+
address: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15904
15992
|
} | {
|
|
15905
15993
|
symbol: string;
|
|
15906
15994
|
address: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
15907
15995
|
})[];
|
|
15908
15996
|
stables: "0x0829F361A05D993d5CEb035cA6DF3446b060970b"[];
|
|
15909
|
-
watchlist:
|
|
15997
|
+
watchlist: never[];
|
|
15910
15998
|
internalName: "nibiru";
|
|
15911
15999
|
nativeLogoUrl: "https://assets.oku.trade/natives/nibi.svg";
|
|
15912
16000
|
contracts: {
|
|
15913
16001
|
limitOrder: {
|
|
15914
|
-
address: "
|
|
16002
|
+
address: "0x6E1293993C71Cb2E6b2Da8559f6d7Dc1fdb3AE02";
|
|
15915
16003
|
};
|
|
15916
16004
|
nftManager: {
|
|
15917
|
-
address: "
|
|
16005
|
+
address: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
15918
16006
|
};
|
|
15919
16007
|
weth9: {
|
|
15920
|
-
address: "
|
|
16008
|
+
address: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15921
16009
|
};
|
|
15922
16010
|
multicall2: {
|
|
15923
|
-
address: "
|
|
16011
|
+
address: "0x352A86168e6988A1aDF9A15Cb00017AAd3B67155";
|
|
15924
16012
|
};
|
|
15925
16013
|
multicall3: {
|
|
15926
16014
|
address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
@@ -15950,6 +16038,105 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15950
16038
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
15951
16039
|
formatters?: undefined | undefined;
|
|
15952
16040
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
16041
|
+
}>, Readonly<{
|
|
16042
|
+
name: "Corn";
|
|
16043
|
+
blockTimeSeconds: 0.6;
|
|
16044
|
+
launchTime: 1749000115;
|
|
16045
|
+
sortIndex: 15;
|
|
16046
|
+
logoUrl: "https://assets.oku.trade/chains/etherlink-logo.png";
|
|
16047
|
+
safeReorgDistance: 90000;
|
|
16048
|
+
externalId: {
|
|
16049
|
+
tenderly: string;
|
|
16050
|
+
};
|
|
16051
|
+
markets: {};
|
|
16052
|
+
bridges: {};
|
|
16053
|
+
oracles: {};
|
|
16054
|
+
morpho: {};
|
|
16055
|
+
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
16056
|
+
uniswap: {
|
|
16057
|
+
deployBlock: number;
|
|
16058
|
+
poolFactory: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D";
|
|
16059
|
+
permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578";
|
|
16060
|
+
multicall2: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
|
|
16061
|
+
tickLens: "0xB3309C48F8407651D918ca3Da4C45DE40109E641";
|
|
16062
|
+
nonfungiblePositionManager: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
|
|
16063
|
+
positionsNFT: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
|
|
16064
|
+
positionsNFTDeployBlock: number;
|
|
16065
|
+
universalRouter: "0x9db70E29712Cc8Af10c2B597BaDA6784544FF407";
|
|
16066
|
+
wrappedNativeAddress: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
16067
|
+
wrappedNativeSymbol: string;
|
|
16068
|
+
wrappedNativeName: string;
|
|
16069
|
+
wrappedNativeDecimals: number;
|
|
16070
|
+
nativeCurrencyName: string;
|
|
16071
|
+
};
|
|
16072
|
+
token: {
|
|
16073
|
+
wethAddress: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
16074
|
+
usdcAddress: "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9";
|
|
16075
|
+
wbtcAddress: "0xbFc94CD2B1E55999Cfc7347a9313e88702B83d0F";
|
|
16076
|
+
};
|
|
16077
|
+
oku: {
|
|
16078
|
+
limitOrderRegistry: "0x0000000000000000000000000000000000000000";
|
|
16079
|
+
limitOrderRegistryDeployBlock: number;
|
|
16080
|
+
pricing: {
|
|
16081
|
+
nativeWrappedToken: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
16082
|
+
nativeWrappedName: string;
|
|
16083
|
+
};
|
|
16084
|
+
};
|
|
16085
|
+
defaultPool: "0x0000000000000000000000000000000000000000";
|
|
16086
|
+
defaultToken0: "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9";
|
|
16087
|
+
defaultToken1: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
16088
|
+
tokenList: ({
|
|
16089
|
+
symbol: string;
|
|
16090
|
+
address: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
16091
|
+
} | {
|
|
16092
|
+
symbol: string;
|
|
16093
|
+
address: "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9";
|
|
16094
|
+
})[];
|
|
16095
|
+
stables: ("0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9" | "0x2C03058C8AFC06713be23e58D2febC8337dbfE6A")[];
|
|
16096
|
+
watchlist: never[];
|
|
16097
|
+
internalName: "etherlink";
|
|
16098
|
+
nativeLogoUrl: "https://assets.oku.trade/natives/xtz.png";
|
|
16099
|
+
contracts: {
|
|
16100
|
+
limitOrder: {
|
|
16101
|
+
address: "0x0000000000000000000000000000000000000000";
|
|
16102
|
+
};
|
|
16103
|
+
nftManager: {
|
|
16104
|
+
address: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
|
|
16105
|
+
};
|
|
16106
|
+
weth9: {
|
|
16107
|
+
address: "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb";
|
|
16108
|
+
};
|
|
16109
|
+
multicall2: {
|
|
16110
|
+
address: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
|
|
16111
|
+
};
|
|
16112
|
+
multicall3: {
|
|
16113
|
+
address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
16114
|
+
};
|
|
16115
|
+
};
|
|
16116
|
+
blockExplorers: {
|
|
16117
|
+
readonly default: {
|
|
16118
|
+
readonly name: "Etherlink";
|
|
16119
|
+
readonly url: "https://explorer.etherlink.com";
|
|
16120
|
+
};
|
|
16121
|
+
};
|
|
16122
|
+
ensTlds?: readonly string[] | undefined;
|
|
16123
|
+
id: 42793;
|
|
16124
|
+
nativeCurrency: {
|
|
16125
|
+
readonly decimals: 18;
|
|
16126
|
+
readonly name: "Tez";
|
|
16127
|
+
readonly symbol: "XTZ";
|
|
16128
|
+
};
|
|
16129
|
+
rpcUrls: {
|
|
16130
|
+
readonly default: {
|
|
16131
|
+
readonly http: readonly ["https://node.mainnet.etherlink.com"];
|
|
16132
|
+
};
|
|
16133
|
+
};
|
|
16134
|
+
sourceId?: number | undefined | undefined | undefined;
|
|
16135
|
+
testnet?: boolean | undefined | undefined | undefined;
|
|
16136
|
+
custom?: Record<string, unknown> | undefined;
|
|
16137
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
16138
|
+
formatters?: undefined | undefined;
|
|
16139
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
15953
16140
|
}>];
|
|
15954
|
-
export { arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, goat, hemi, lens, lightlink, linea, lisk, mainnet, manta, mantle, metal, moonbeam, nibiru, optimism, polygon, redbelly, rootstock, saga, scroll, sei, sonic, taiko, telos, tronShasta, worldchain, xdc, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
|
|
16141
|
+
export { arbitrum, base, blast, bob, boba, bsc, celo, corn, etherlink, filecoin, gnosis, goat, hemi, lens, lightlink, linea, lisk, mainnet, manta, mantle, metal, moonbeam, nibiru, optimism, polygon, redbelly, rootstock, saga, scroll, sei, sonic, taiko, telos, tronShasta, worldchain, xdc, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
|
|
15955
16142
|
export { ChainContract } from "viem";
|