@gfxlabs/oku-chains 1.1.238 → 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 +128 -25
- package/dist/index-mjs.js +129 -27
- package/dist/index.js +128 -25
- package/dist/types/browser.d.ts +326 -119
- package/dist/types/index-mjs.d.ts +326 -119
- package/dist/types/index.d.ts +326 -119
- package/package.json +2 -2
package/dist/types/index.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;
|
|
@@ -7225,7 +7321,17 @@ declare const xdc: Readonly<{
|
|
|
7225
7321
|
safeReorgDistance: 90000;
|
|
7226
7322
|
externalId: {};
|
|
7227
7323
|
markets: {};
|
|
7228
|
-
bridges: {
|
|
7324
|
+
bridges: {
|
|
7325
|
+
stargate: {
|
|
7326
|
+
endpointID: number;
|
|
7327
|
+
tokens: {
|
|
7328
|
+
name: string;
|
|
7329
|
+
type: string;
|
|
7330
|
+
id: number;
|
|
7331
|
+
address: string;
|
|
7332
|
+
}[];
|
|
7333
|
+
};
|
|
7334
|
+
};
|
|
7229
7335
|
oracles: {};
|
|
7230
7336
|
morpho: {};
|
|
7231
7337
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
@@ -7849,10 +7955,10 @@ declare const zkSync: Readonly<{
|
|
|
7849
7955
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
7850
7956
|
blobs?: undefined;
|
|
7851
7957
|
accessList?: undefined;
|
|
7852
|
-
authorizationList?: undefined;
|
|
7853
7958
|
blobVersionedHashes?: undefined;
|
|
7854
7959
|
kzg?: undefined;
|
|
7855
7960
|
sidecars?: undefined;
|
|
7961
|
+
authorizationList?: undefined;
|
|
7856
7962
|
eip712Meta?: undefined | undefined;
|
|
7857
7963
|
} | {
|
|
7858
7964
|
data?: `0x${string}` | undefined;
|
|
@@ -7868,10 +7974,10 @@ declare const zkSync: Readonly<{
|
|
|
7868
7974
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
7869
7975
|
accessList?: import("viem").AccessList | undefined;
|
|
7870
7976
|
blobs?: undefined;
|
|
7871
|
-
authorizationList?: undefined;
|
|
7872
7977
|
blobVersionedHashes?: undefined;
|
|
7873
7978
|
kzg?: undefined;
|
|
7874
7979
|
sidecars?: undefined;
|
|
7980
|
+
authorizationList?: undefined;
|
|
7875
7981
|
eip712Meta?: undefined | undefined;
|
|
7876
7982
|
} | {
|
|
7877
7983
|
data?: `0x${string}` | undefined;
|
|
@@ -7887,10 +7993,10 @@ declare const zkSync: Readonly<{
|
|
|
7887
7993
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
7888
7994
|
accessList?: import("viem").AccessList | undefined;
|
|
7889
7995
|
blobs?: undefined;
|
|
7890
|
-
authorizationList?: undefined;
|
|
7891
7996
|
blobVersionedHashes?: undefined;
|
|
7892
7997
|
kzg?: undefined;
|
|
7893
7998
|
sidecars?: undefined;
|
|
7999
|
+
authorizationList?: undefined;
|
|
7894
8000
|
eip712Meta?: undefined | undefined;
|
|
7895
8001
|
} | {
|
|
7896
8002
|
type?: "0x3" | undefined;
|
|
@@ -11264,10 +11370,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11264
11370
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
11265
11371
|
blobs?: undefined;
|
|
11266
11372
|
accessList?: undefined;
|
|
11267
|
-
authorizationList?: undefined;
|
|
11268
11373
|
blobVersionedHashes?: undefined;
|
|
11269
11374
|
kzg?: undefined;
|
|
11270
11375
|
sidecars?: undefined;
|
|
11376
|
+
authorizationList?: undefined;
|
|
11271
11377
|
eip712Meta?: undefined | undefined;
|
|
11272
11378
|
} | {
|
|
11273
11379
|
data?: `0x${string}` | undefined;
|
|
@@ -11283,10 +11389,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11283
11389
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
11284
11390
|
accessList?: import("viem").AccessList | undefined;
|
|
11285
11391
|
blobs?: undefined;
|
|
11286
|
-
authorizationList?: undefined;
|
|
11287
11392
|
blobVersionedHashes?: undefined;
|
|
11288
11393
|
kzg?: undefined;
|
|
11289
11394
|
sidecars?: undefined;
|
|
11395
|
+
authorizationList?: undefined;
|
|
11290
11396
|
eip712Meta?: undefined | undefined;
|
|
11291
11397
|
} | {
|
|
11292
11398
|
data?: `0x${string}` | undefined;
|
|
@@ -11302,10 +11408,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11302
11408
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
11303
11409
|
accessList?: import("viem").AccessList | undefined;
|
|
11304
11410
|
blobs?: undefined;
|
|
11305
|
-
authorizationList?: undefined;
|
|
11306
11411
|
blobVersionedHashes?: undefined;
|
|
11307
11412
|
kzg?: undefined;
|
|
11308
11413
|
sidecars?: undefined;
|
|
11414
|
+
authorizationList?: undefined;
|
|
11309
11415
|
eip712Meta?: undefined | undefined;
|
|
11310
11416
|
} | {
|
|
11311
11417
|
type?: "0x3" | undefined;
|
|
@@ -13668,15 +13774,16 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13668
13774
|
format: (args: import("viem/chains").CeloRpcBlock) => {
|
|
13669
13775
|
baseFeePerGas: bigint | null;
|
|
13670
13776
|
blobGasUsed: bigint;
|
|
13671
|
-
difficulty: bigint
|
|
13777
|
+
difficulty: bigint;
|
|
13672
13778
|
excessBlobGas: bigint;
|
|
13673
13779
|
extraData: import("viem").Hex;
|
|
13674
|
-
gasLimit: bigint
|
|
13780
|
+
gasLimit: bigint;
|
|
13675
13781
|
gasUsed: bigint;
|
|
13676
13782
|
hash: `0x${string}` | null;
|
|
13677
13783
|
logsBloom: `0x${string}` | null;
|
|
13678
13784
|
miner: import("abitype").Address;
|
|
13679
|
-
|
|
13785
|
+
mixHash: import("viem").Hash;
|
|
13786
|
+
nonce: `0x${string}` | null;
|
|
13680
13787
|
number: bigint | null;
|
|
13681
13788
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
13682
13789
|
parentHash: import("viem").Hash;
|
|
@@ -13689,14 +13796,9 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13689
13796
|
totalDifficulty: bigint | null;
|
|
13690
13797
|
transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
|
|
13691
13798
|
transactionsRoot: import("viem").Hash;
|
|
13799
|
+
uncles: import("viem").Hash[];
|
|
13692
13800
|
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
13693
13801
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
13694
|
-
mixHash?: undefined | undefined;
|
|
13695
|
-
randomness?: {
|
|
13696
|
-
committed: import("viem").Hex;
|
|
13697
|
-
revealed: import("viem").Hex;
|
|
13698
|
-
} | undefined | undefined;
|
|
13699
|
-
uncles?: undefined | undefined;
|
|
13700
13802
|
} & {};
|
|
13701
13803
|
type: "block";
|
|
13702
13804
|
};
|
|
@@ -13883,8 +13985,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13883
13985
|
gatewayFee: bigint | null;
|
|
13884
13986
|
gatewayFeeRecipient: import("abitype").Address | null;
|
|
13885
13987
|
type: "cip42";
|
|
13886
|
-
authorizationList?: undefined;
|
|
13887
13988
|
blobVersionedHashes?: undefined;
|
|
13989
|
+
authorizationList?: undefined;
|
|
13888
13990
|
mint?: undefined;
|
|
13889
13991
|
isSystemTx?: undefined;
|
|
13890
13992
|
sourceHash?: undefined;
|
|
@@ -13912,8 +14014,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13912
14014
|
chainId: number;
|
|
13913
14015
|
feeCurrency: import("abitype").Address | null;
|
|
13914
14016
|
type: "cip64";
|
|
13915
|
-
authorizationList?: undefined;
|
|
13916
14017
|
blobVersionedHashes?: undefined;
|
|
14018
|
+
authorizationList?: undefined;
|
|
13917
14019
|
mint?: undefined;
|
|
13918
14020
|
isSystemTx?: undefined;
|
|
13919
14021
|
sourceHash?: undefined;
|
|
@@ -13944,8 +14046,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13944
14046
|
sourceHash: import("viem").Hex;
|
|
13945
14047
|
type: "deposit";
|
|
13946
14048
|
accessList?: undefined;
|
|
13947
|
-
authorizationList?: undefined;
|
|
13948
14049
|
blobVersionedHashes?: undefined;
|
|
14050
|
+
authorizationList?: undefined;
|
|
13949
14051
|
chainId?: undefined;
|
|
13950
14052
|
feeCurrency?: undefined;
|
|
13951
14053
|
gatewayFee?: undefined;
|
|
@@ -13969,10 +14071,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13969
14071
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
13970
14072
|
blobs?: undefined;
|
|
13971
14073
|
accessList?: undefined;
|
|
13972
|
-
authorizationList?: undefined;
|
|
13973
14074
|
blobVersionedHashes?: undefined;
|
|
13974
14075
|
kzg?: undefined;
|
|
13975
14076
|
sidecars?: undefined;
|
|
14077
|
+
authorizationList?: undefined;
|
|
13976
14078
|
feeCurrency?: `0x${string}` | undefined;
|
|
13977
14079
|
} | {
|
|
13978
14080
|
data?: `0x${string}` | undefined;
|
|
@@ -13988,10 +14090,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13988
14090
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
13989
14091
|
accessList?: import("viem").AccessList | undefined;
|
|
13990
14092
|
blobs?: undefined;
|
|
13991
|
-
authorizationList?: undefined;
|
|
13992
14093
|
blobVersionedHashes?: undefined;
|
|
13993
14094
|
kzg?: undefined;
|
|
13994
14095
|
sidecars?: undefined;
|
|
14096
|
+
authorizationList?: undefined;
|
|
13995
14097
|
feeCurrency?: `0x${string}` | undefined;
|
|
13996
14098
|
} | {
|
|
13997
14099
|
data?: `0x${string}` | undefined;
|
|
@@ -14007,10 +14109,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14007
14109
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
14008
14110
|
accessList?: import("viem").AccessList | undefined;
|
|
14009
14111
|
blobs?: undefined;
|
|
14010
|
-
authorizationList?: undefined;
|
|
14011
14112
|
blobVersionedHashes?: undefined;
|
|
14012
14113
|
kzg?: undefined;
|
|
14013
14114
|
sidecars?: undefined;
|
|
14115
|
+
authorizationList?: undefined;
|
|
14014
14116
|
feeCurrency?: `0x${string}` | undefined;
|
|
14015
14117
|
} | {
|
|
14016
14118
|
type?: "0x3" | undefined;
|
|
@@ -14065,10 +14167,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14065
14167
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
14066
14168
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
14067
14169
|
blobs?: undefined;
|
|
14068
|
-
authorizationList?: undefined;
|
|
14069
14170
|
blobVersionedHashes?: undefined;
|
|
14070
14171
|
kzg?: undefined;
|
|
14071
14172
|
sidecars?: undefined;
|
|
14173
|
+
authorizationList?: undefined;
|
|
14072
14174
|
}) & {};
|
|
14073
14175
|
type: "transactionRequest";
|
|
14074
14176
|
};
|
|
@@ -14079,15 +14181,16 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14079
14181
|
format: (args: import("viem/chains").CeloRpcBlock) => {
|
|
14080
14182
|
baseFeePerGas: bigint | null;
|
|
14081
14183
|
blobGasUsed: bigint;
|
|
14082
|
-
difficulty: bigint
|
|
14184
|
+
difficulty: bigint;
|
|
14083
14185
|
excessBlobGas: bigint;
|
|
14084
14186
|
extraData: import("viem").Hex;
|
|
14085
|
-
gasLimit: bigint
|
|
14187
|
+
gasLimit: bigint;
|
|
14086
14188
|
gasUsed: bigint;
|
|
14087
14189
|
hash: `0x${string}` | null;
|
|
14088
14190
|
logsBloom: `0x${string}` | null;
|
|
14089
14191
|
miner: import("abitype").Address;
|
|
14090
|
-
|
|
14192
|
+
mixHash: import("viem").Hash;
|
|
14193
|
+
nonce: `0x${string}` | null;
|
|
14091
14194
|
number: bigint | null;
|
|
14092
14195
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
14093
14196
|
parentHash: import("viem").Hash;
|
|
@@ -14100,14 +14203,9 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14100
14203
|
totalDifficulty: bigint | null;
|
|
14101
14204
|
transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
|
|
14102
14205
|
transactionsRoot: import("viem").Hash;
|
|
14206
|
+
uncles: import("viem").Hash[];
|
|
14103
14207
|
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
14104
14208
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
14105
|
-
mixHash?: undefined | undefined;
|
|
14106
|
-
randomness?: {
|
|
14107
|
-
committed: import("viem").Hex;
|
|
14108
|
-
revealed: import("viem").Hex;
|
|
14109
|
-
} | undefined | undefined;
|
|
14110
|
-
uncles?: undefined | undefined;
|
|
14111
14209
|
} & {};
|
|
14112
14210
|
type: "block";
|
|
14113
14211
|
};
|
|
@@ -14294,8 +14392,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14294
14392
|
gatewayFee: bigint | null;
|
|
14295
14393
|
gatewayFeeRecipient: import("abitype").Address | null;
|
|
14296
14394
|
type: "cip42";
|
|
14297
|
-
authorizationList?: undefined;
|
|
14298
14395
|
blobVersionedHashes?: undefined;
|
|
14396
|
+
authorizationList?: undefined;
|
|
14299
14397
|
mint?: undefined;
|
|
14300
14398
|
isSystemTx?: undefined;
|
|
14301
14399
|
sourceHash?: undefined;
|
|
@@ -14323,8 +14421,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14323
14421
|
chainId: number;
|
|
14324
14422
|
feeCurrency: import("abitype").Address | null;
|
|
14325
14423
|
type: "cip64";
|
|
14326
|
-
authorizationList?: undefined;
|
|
14327
14424
|
blobVersionedHashes?: undefined;
|
|
14425
|
+
authorizationList?: undefined;
|
|
14328
14426
|
mint?: undefined;
|
|
14329
14427
|
isSystemTx?: undefined;
|
|
14330
14428
|
sourceHash?: undefined;
|
|
@@ -14355,8 +14453,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14355
14453
|
sourceHash: import("viem").Hex;
|
|
14356
14454
|
type: "deposit";
|
|
14357
14455
|
accessList?: undefined;
|
|
14358
|
-
authorizationList?: undefined;
|
|
14359
14456
|
blobVersionedHashes?: undefined;
|
|
14457
|
+
authorizationList?: undefined;
|
|
14360
14458
|
chainId?: undefined;
|
|
14361
14459
|
feeCurrency?: undefined;
|
|
14362
14460
|
gatewayFee?: undefined;
|
|
@@ -14380,10 +14478,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14380
14478
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
14381
14479
|
blobs?: undefined;
|
|
14382
14480
|
accessList?: undefined;
|
|
14383
|
-
authorizationList?: undefined;
|
|
14384
14481
|
blobVersionedHashes?: undefined;
|
|
14385
14482
|
kzg?: undefined;
|
|
14386
14483
|
sidecars?: undefined;
|
|
14484
|
+
authorizationList?: undefined;
|
|
14387
14485
|
feeCurrency?: `0x${string}` | undefined;
|
|
14388
14486
|
} | {
|
|
14389
14487
|
data?: `0x${string}` | undefined;
|
|
@@ -14399,10 +14497,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14399
14497
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
14400
14498
|
accessList?: import("viem").AccessList | undefined;
|
|
14401
14499
|
blobs?: undefined;
|
|
14402
|
-
authorizationList?: undefined;
|
|
14403
14500
|
blobVersionedHashes?: undefined;
|
|
14404
14501
|
kzg?: undefined;
|
|
14405
14502
|
sidecars?: undefined;
|
|
14503
|
+
authorizationList?: undefined;
|
|
14406
14504
|
feeCurrency?: `0x${string}` | undefined;
|
|
14407
14505
|
} | {
|
|
14408
14506
|
data?: `0x${string}` | undefined;
|
|
@@ -14418,10 +14516,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14418
14516
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
14419
14517
|
accessList?: import("viem").AccessList | undefined;
|
|
14420
14518
|
blobs?: undefined;
|
|
14421
|
-
authorizationList?: undefined;
|
|
14422
14519
|
blobVersionedHashes?: undefined;
|
|
14423
14520
|
kzg?: undefined;
|
|
14424
14521
|
sidecars?: undefined;
|
|
14522
|
+
authorizationList?: undefined;
|
|
14425
14523
|
feeCurrency?: `0x${string}` | undefined;
|
|
14426
14524
|
} | {
|
|
14427
14525
|
type?: "0x3" | undefined;
|
|
@@ -14476,10 +14574,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14476
14574
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
14477
14575
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
14478
14576
|
blobs?: undefined;
|
|
14479
|
-
authorizationList?: undefined;
|
|
14480
14577
|
blobVersionedHashes?: undefined;
|
|
14481
14578
|
kzg?: undefined;
|
|
14482
14579
|
sidecars?: undefined;
|
|
14580
|
+
authorizationList?: undefined;
|
|
14483
14581
|
}) & {};
|
|
14484
14582
|
type: "transactionRequest";
|
|
14485
14583
|
};
|
|
@@ -15175,11 +15273,6 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15175
15273
|
externalId: {
|
|
15176
15274
|
tenderly: string;
|
|
15177
15275
|
};
|
|
15178
|
-
rpcUrls: {
|
|
15179
|
-
default: {
|
|
15180
|
-
http: string[];
|
|
15181
|
-
};
|
|
15182
|
-
};
|
|
15183
15276
|
markets: {};
|
|
15184
15277
|
bridges: {};
|
|
15185
15278
|
oracles: {};
|
|
@@ -15310,6 +15403,11 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15310
15403
|
readonly symbol: "ETH";
|
|
15311
15404
|
readonly decimals: 18;
|
|
15312
15405
|
};
|
|
15406
|
+
rpcUrls: {
|
|
15407
|
+
readonly default: {
|
|
15408
|
+
readonly http: readonly ["https://worldchain-mainnet.g.alchemy.com/public"];
|
|
15409
|
+
};
|
|
15410
|
+
};
|
|
15313
15411
|
sourceId: 1;
|
|
15314
15412
|
testnet: false;
|
|
15315
15413
|
custom?: Record<string, unknown> | undefined;
|
|
@@ -15563,7 +15661,17 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15563
15661
|
safeReorgDistance: 90000;
|
|
15564
15662
|
externalId: {};
|
|
15565
15663
|
markets: {};
|
|
15566
|
-
bridges: {
|
|
15664
|
+
bridges: {
|
|
15665
|
+
stargate: {
|
|
15666
|
+
endpointID: number;
|
|
15667
|
+
tokens: {
|
|
15668
|
+
name: string;
|
|
15669
|
+
type: string;
|
|
15670
|
+
id: number;
|
|
15671
|
+
address: string;
|
|
15672
|
+
}[];
|
|
15673
|
+
};
|
|
15674
|
+
};
|
|
15567
15675
|
oracles: {};
|
|
15568
15676
|
morpho: {};
|
|
15569
15677
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
@@ -15849,58 +15957,58 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15849
15957
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
15850
15958
|
uniswap: {
|
|
15851
15959
|
deployBlock: number;
|
|
15852
|
-
poolFactory: "
|
|
15853
|
-
permit2: "
|
|
15854
|
-
multicall2: "
|
|
15855
|
-
tickLens: "
|
|
15856
|
-
nonfungiblePositionManager: "
|
|
15857
|
-
positionsNFT: "
|
|
15960
|
+
poolFactory: "0x346239972d1fa486FC4a521031BC81bFB7D6e8a4";
|
|
15961
|
+
permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578";
|
|
15962
|
+
multicall2: "0x352A86168e6988A1aDF9A15Cb00017AAd3B67155";
|
|
15963
|
+
tickLens: "0xA9d71E1dd7ca26F26e656E66d6AA81ed7f745bf0";
|
|
15964
|
+
nonfungiblePositionManager: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
15965
|
+
positionsNFT: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
15858
15966
|
positionsNFTDeployBlock: number;
|
|
15859
|
-
universalRouter: "
|
|
15860
|
-
wrappedNativeAddress: "
|
|
15967
|
+
universalRouter: "0xA7E6cB0A6B1BE8b779022A6aFcb097cF0d3Ff4A2";
|
|
15968
|
+
wrappedNativeAddress: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15861
15969
|
wrappedNativeSymbol: string;
|
|
15862
15970
|
wrappedNativeName: string;
|
|
15863
15971
|
wrappedNativeDecimals: number;
|
|
15864
15972
|
nativeCurrencyName: string;
|
|
15865
15973
|
};
|
|
15866
15974
|
token: {
|
|
15867
|
-
wethAddress: "
|
|
15975
|
+
wethAddress: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15868
15976
|
usdcAddress: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
15869
15977
|
};
|
|
15870
15978
|
oku: {
|
|
15871
|
-
limitOrderRegistry: "
|
|
15979
|
+
limitOrderRegistry: "0x6E1293993C71Cb2E6b2Da8559f6d7Dc1fdb3AE02";
|
|
15872
15980
|
limitOrderRegistryDeployBlock: number;
|
|
15873
15981
|
pricing: {
|
|
15874
15982
|
nativeWrappedToken: "0x1429B38e58b97de646ACd65fdb8a4502c2131484";
|
|
15875
15983
|
nativeWrappedName: string;
|
|
15876
15984
|
};
|
|
15877
15985
|
};
|
|
15878
|
-
defaultPool: "
|
|
15986
|
+
defaultPool: "0x0000000000000000000000000000000000000000";
|
|
15879
15987
|
defaultToken0: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
15880
|
-
defaultToken1: "
|
|
15988
|
+
defaultToken1: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15881
15989
|
tokenList: ({
|
|
15882
15990
|
symbol: string;
|
|
15883
|
-
address: "
|
|
15991
|
+
address: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15884
15992
|
} | {
|
|
15885
15993
|
symbol: string;
|
|
15886
15994
|
address: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
15887
15995
|
})[];
|
|
15888
15996
|
stables: "0x0829F361A05D993d5CEb035cA6DF3446b060970b"[];
|
|
15889
|
-
watchlist:
|
|
15997
|
+
watchlist: never[];
|
|
15890
15998
|
internalName: "nibiru";
|
|
15891
15999
|
nativeLogoUrl: "https://assets.oku.trade/natives/nibi.svg";
|
|
15892
16000
|
contracts: {
|
|
15893
16001
|
limitOrder: {
|
|
15894
|
-
address: "
|
|
16002
|
+
address: "0x6E1293993C71Cb2E6b2Da8559f6d7Dc1fdb3AE02";
|
|
15895
16003
|
};
|
|
15896
16004
|
nftManager: {
|
|
15897
|
-
address: "
|
|
16005
|
+
address: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050";
|
|
15898
16006
|
};
|
|
15899
16007
|
weth9: {
|
|
15900
|
-
address: "
|
|
16008
|
+
address: "0x0CaCF669f8446BeCA826913a3c6B96aCD4b02a97";
|
|
15901
16009
|
};
|
|
15902
16010
|
multicall2: {
|
|
15903
|
-
address: "
|
|
16011
|
+
address: "0x352A86168e6988A1aDF9A15Cb00017AAd3B67155";
|
|
15904
16012
|
};
|
|
15905
16013
|
multicall3: {
|
|
15906
16014
|
address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
@@ -15930,6 +16038,105 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
15930
16038
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
15931
16039
|
formatters?: undefined | undefined;
|
|
15932
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;
|
|
15933
16140
|
}>];
|
|
15934
|
-
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 };
|
|
15935
16142
|
export { ChainContract } from "viem";
|