@gfxlabs/oku-chains 1.12.11 → 1.12.13
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 +87 -20
- package/dist/index-mjs.js +88 -22
- package/dist/index.js +87 -20
- package/dist/types/definitions/arbitrum.d.ts +1 -2
- package/dist/types/definitions/base.d.ts +1 -2
- package/dist/types/definitions/boba.d.ts +1 -1
- package/dist/types/definitions/bsc.d.ts +1 -1
- package/dist/types/definitions/filecoin.d.ts +1 -1
- package/dist/types/definitions/gensyn.d.ts +1 -1
- package/dist/types/definitions/hemi.d.ts +1 -1
- package/dist/types/definitions/index.d.ts +1 -0
- package/dist/types/definitions/linea.d.ts +1 -1
- package/dist/types/definitions/mantle.d.ts +1 -1
- package/dist/types/definitions/nibiru.d.ts +1 -1
- package/dist/types/definitions/optimism.d.ts +1 -2
- package/dist/types/definitions/polygon.d.ts +1 -1
- package/dist/types/definitions/redbelly.d.ts +1 -1
- package/dist/types/definitions/robinhood.d.ts +112 -0
- package/dist/types/definitions/telos.d.ts +1 -1
- package/dist/types/definitions/unichain.d.ts +1 -1
- package/dist/types/definitions/worldchain.d.ts +1 -2
- package/dist/types/index.d.ts +146 -55
- package/dist/types/spec/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -123,8 +123,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
123
123
|
usdcAddress: "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8";
|
|
124
124
|
};
|
|
125
125
|
oku: {
|
|
126
|
-
|
|
127
|
-
router11: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
126
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
128
127
|
limitOrderRegistry: "0x54dF9e11c7933a9cA3BD1E540B63dA15edAe40bf";
|
|
129
128
|
limitOrderRegistryDeployBlock: number;
|
|
130
129
|
pricing: {
|
|
@@ -335,8 +334,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
335
334
|
usdcAddress: "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913";
|
|
336
335
|
};
|
|
337
336
|
oku: {
|
|
338
|
-
|
|
339
|
-
router11: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
337
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
340
338
|
limitOrderRegistry: "0xff8b754c64e9a8473bd6e1118d0eac67f0a8ae27";
|
|
341
339
|
limitOrderRegistryDeployBlock: number;
|
|
342
340
|
pricing: {
|
|
@@ -541,39 +539,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
541
539
|
maxFeePerBlobGas?: undefined | undefined;
|
|
542
540
|
maxFeePerGas?: undefined | undefined;
|
|
543
541
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
544
|
-
isSystemTx
|
|
545
|
-
/**
|
|
546
|
-
* True if the chain belongs to the given {@link ChainType} family. Accepts an
|
|
547
|
-
* {@link IChainInfo} object, a CAIP-2 identifier or namespace string, an
|
|
548
|
-
* internal name, or a numeric chain id.
|
|
549
|
-
*
|
|
550
|
-
* Reusable, namespace-driven replacement for one-off `isBitcoinChain` style
|
|
551
|
-
* checks, e.g. `isNetworkType(ChainType.Bitcoin, "bitcoin")`.
|
|
552
|
-
*
|
|
553
|
-
* @example
|
|
554
|
-
* ```ts
|
|
555
|
-
* import { isNetworkType, ChainType } from "@gfxlabs/oku-chains";
|
|
556
|
-
* isNetworkType(ChainType.Bitcoin, "bitcoin") // => true
|
|
557
|
-
* isNetworkType(ChainType.EVM, 1) // => true
|
|
558
|
-
* isNetworkType(ChainType.EVM, "eip155:1") // => true
|
|
559
|
-
* ```
|
|
560
|
-
*/
|
|
561
|
-
? /**
|
|
562
|
-
* True if the chain belongs to the given {@link ChainType} family. Accepts an
|
|
563
|
-
* {@link IChainInfo} object, a CAIP-2 identifier or namespace string, an
|
|
564
|
-
* internal name, or a numeric chain id.
|
|
565
|
-
*
|
|
566
|
-
* Reusable, namespace-driven replacement for one-off `isBitcoinChain` style
|
|
567
|
-
* checks, e.g. `isNetworkType(ChainType.Bitcoin, "bitcoin")`.
|
|
568
|
-
*
|
|
569
|
-
* @example
|
|
570
|
-
* ```ts
|
|
571
|
-
* import { isNetworkType, ChainType } from "@gfxlabs/oku-chains";
|
|
572
|
-
* isNetworkType(ChainType.Bitcoin, "bitcoin") // => true
|
|
573
|
-
* isNetworkType(ChainType.EVM, 1) // => true
|
|
574
|
-
* isNetworkType(ChainType.EVM, "eip155:1") // => true
|
|
575
|
-
* ```
|
|
576
|
-
*/: undefined | undefined;
|
|
542
|
+
isSystemTx?: undefined | undefined;
|
|
577
543
|
mint?: undefined | undefined;
|
|
578
544
|
sourceHash?: undefined | undefined;
|
|
579
545
|
} | {
|
|
@@ -813,7 +779,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
813
779
|
usdcAddress: "0x66a2A913e447d6b4BF33EFbec43aAeF87890FBbc";
|
|
814
780
|
};
|
|
815
781
|
oku: {
|
|
816
|
-
|
|
782
|
+
router: "0x87a3721df43fd6788a6b11662D2a804F27911506";
|
|
817
783
|
limitOrderRegistry: "0xfefb60591cffc694c0137983a9091d64af8ecbac";
|
|
818
784
|
limitOrderRegistryDeployBlock: number;
|
|
819
785
|
pricing: {
|
|
@@ -1433,7 +1399,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
1433
1399
|
wethAddress: "0x2170ed0880ac9a755fd29b2688956bd959f933f8";
|
|
1434
1400
|
};
|
|
1435
1401
|
oku: {
|
|
1436
|
-
|
|
1402
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
1437
1403
|
limitOrderRegistry: "0x19b9bd76028cab6f414ed1fc57400b75b5ca0627";
|
|
1438
1404
|
limitOrderRegistryDeployBlock: number;
|
|
1439
1405
|
pricing: {
|
|
@@ -1578,7 +1544,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
1578
1544
|
wethAddress: "0xb829b68f57CC546dA7E5806A929e53bE32a4625D";
|
|
1579
1545
|
};
|
|
1580
1546
|
oku: {
|
|
1581
|
-
|
|
1547
|
+
router: "0x961feB343932036fa057D80A057aB746dFEe294e";
|
|
1582
1548
|
pricing: {
|
|
1583
1549
|
pools: never[];
|
|
1584
1550
|
nativeWrappedToken: "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A";
|
|
@@ -2139,8 +2105,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
2139
2105
|
dexscreener: string;
|
|
2140
2106
|
};
|
|
2141
2107
|
oku: {
|
|
2142
|
-
|
|
2143
|
-
router11: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
2108
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
2144
2109
|
limitOrderRegistryDeployBlock: number;
|
|
2145
2110
|
limitOrderRegistry: "0x54dF9e11c7933a9cA3BD1E540B63dA15edAe40bf";
|
|
2146
2111
|
customOrderTypes: {
|
|
@@ -2666,7 +2631,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
2666
2631
|
wethAddress: "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619";
|
|
2667
2632
|
};
|
|
2668
2633
|
oku: {
|
|
2669
|
-
|
|
2634
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
2670
2635
|
limitOrderRegistry: "0x54dF9e11c7933a9cA3BD1E540B63dA15edAe40bf";
|
|
2671
2636
|
limitOrderRegistryDeployBlock: number;
|
|
2672
2637
|
pricing: {
|
|
@@ -4054,7 +4019,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
4054
4019
|
wbtcAddress: "0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4";
|
|
4055
4020
|
};
|
|
4056
4021
|
oku: {
|
|
4057
|
-
|
|
4022
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
4058
4023
|
limitOrderRegistry: "0x63c8527f670d4eb3401c80c5905ceca8727f1e74";
|
|
4059
4024
|
limitOrderRegistryDeployBlock: number;
|
|
4060
4025
|
pricing: {
|
|
@@ -4389,7 +4354,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
4389
4354
|
wethAddress: "0x78c1b0C915c4FAA5FffA6CAbf0219DA63d7f4cb8";
|
|
4390
4355
|
};
|
|
4391
4356
|
oku: {
|
|
4392
|
-
|
|
4357
|
+
router: "0xCF883b5926F1c782308381121BA80234000000cE";
|
|
4393
4358
|
limitOrderRegistry: "0x346239972d1fa486FC4a521031BC81bFB7D6e8a4";
|
|
4394
4359
|
limitOrderRegistryDeployBlock: number;
|
|
4395
4360
|
pricing: {
|
|
@@ -4925,7 +4890,17 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
4925
4890
|
chainId: number;
|
|
4926
4891
|
type: "eip2930";
|
|
4927
4892
|
gasPrice: bigint;
|
|
4928
|
-
maxFeePerBlobGas
|
|
4893
|
+
maxFeePerBlobGas
|
|
4894
|
+
/**
|
|
4895
|
+
* True if the chain is non-EVM (its CAIP-2 namespace is not `eip155`). Accepts
|
|
4896
|
+
* an {@link IChainInfo} object, a CAIP-2 string, an internal name, or a
|
|
4897
|
+
* numeric chain id.
|
|
4898
|
+
*/
|
|
4899
|
+
? /**
|
|
4900
|
+
* True if the chain is non-EVM (its CAIP-2 namespace is not `eip155`). Accepts
|
|
4901
|
+
* an {@link IChainInfo} object, a CAIP-2 string, an internal name, or a
|
|
4902
|
+
* numeric chain id.
|
|
4903
|
+
*/: undefined | undefined;
|
|
4929
4904
|
maxFeePerGas?: undefined | undefined;
|
|
4930
4905
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
4931
4906
|
isSystemTx?: undefined | undefined;
|
|
@@ -5935,7 +5910,13 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
5935
5910
|
value: bigint;
|
|
5936
5911
|
yParity: number;
|
|
5937
5912
|
accessList: import("viem").AccessList;
|
|
5938
|
-
authorizationList
|
|
5913
|
+
authorizationList
|
|
5914
|
+
/**
|
|
5915
|
+
* True if the chain is an EVM chain (CAIP-2 namespace `eip155`). Accepts an
|
|
5916
|
+
* {@link IChainInfo} object, a CAIP-2 string, an internal name, or a numeric
|
|
5917
|
+
* chain id.
|
|
5918
|
+
*/
|
|
5919
|
+
?: undefined | undefined;
|
|
5939
5920
|
blobVersionedHashes?: undefined | undefined;
|
|
5940
5921
|
chainId: number;
|
|
5941
5922
|
type: "eip2930";
|
|
@@ -7472,7 +7453,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
7472
7453
|
wbtcAddress: "0x03C7054BCB39f7b2e5B2c7AcB37583e32D70Cfa3";
|
|
7473
7454
|
};
|
|
7474
7455
|
oku: {
|
|
7475
|
-
|
|
7456
|
+
router: "0x1a84c0daAf3948392ccA68f475141cF8dC5B8045";
|
|
7476
7457
|
limitOrderRegistry: "0xcd7f266E3C0D0771897aAF74BEB38072D66402A0";
|
|
7477
7458
|
limitOrderRegistryDeployBlock: number;
|
|
7478
7459
|
pricing: {
|
|
@@ -7621,7 +7602,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
7621
7602
|
usdcAddress: "0xF1815bd50389c46847f0Bda824eC8da914045D14";
|
|
7622
7603
|
};
|
|
7623
7604
|
oku: {
|
|
7624
|
-
|
|
7605
|
+
router: "0x1a84c0daAf3948392ccA68f475141cF8dC5B8045";
|
|
7625
7606
|
limitOrderRegistry: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc";
|
|
7626
7607
|
limitOrderRegistryDeployBlock: number;
|
|
7627
7608
|
pricing: {
|
|
@@ -8024,7 +8005,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
8024
8005
|
usdcAddress: "0x8201c02d4AB2214471E8C3AD6475C8b0CD9F2D06";
|
|
8025
8006
|
};
|
|
8026
8007
|
oku: {
|
|
8027
|
-
|
|
8008
|
+
router: "0x028F7f81D6816735207A19a3b5C1B72f95B655E5";
|
|
8028
8009
|
limitOrderRegistry: "0x9db70E29712Cc8Af10c2B597BaDA6784544FF407";
|
|
8029
8010
|
limitOrderRegistryDeployBlock: number;
|
|
8030
8011
|
pricing: {
|
|
@@ -8317,8 +8298,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
8317
8298
|
wbtcAddress: "0x03c7054bcb39f7b2e5b2c7acb37583e32d70cfa3";
|
|
8318
8299
|
};
|
|
8319
8300
|
oku: {
|
|
8320
|
-
|
|
8321
|
-
router11: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
8301
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
8322
8302
|
permit2Proxy10: "0x1B361B7cEce8920Bb5C3606B322EEC08FA85EB12";
|
|
8323
8303
|
permit2Proxy11: "0x43830FE2074eaD6562586b512D87aa6af840a688";
|
|
8324
8304
|
pricing: {
|
|
@@ -9123,7 +9103,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
9123
9103
|
usdcAddress: "0x0829F361A05D993d5CEb035cA6DF3446b060970b";
|
|
9124
9104
|
};
|
|
9125
9105
|
oku: {
|
|
9126
|
-
|
|
9106
|
+
router: "0x1a84c0daAf3948392ccA68f475141cF8dC5B8045";
|
|
9127
9107
|
limitOrderRegistry: "0x6E1293993C71Cb2E6b2Da8559f6d7Dc1fdb3AE02";
|
|
9128
9108
|
limitOrderRegistryDeployBlock: number;
|
|
9129
9109
|
pricing: {
|
|
@@ -9437,7 +9417,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
9437
9417
|
wethAddress: "0x4200000000000000000000000000000000000006";
|
|
9438
9418
|
};
|
|
9439
9419
|
oku: {
|
|
9440
|
-
|
|
9420
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
9441
9421
|
limitOrderRegistry: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D";
|
|
9442
9422
|
limitOrderRegistryDeployBlock: number;
|
|
9443
9423
|
pricing: {
|
|
@@ -10794,7 +10774,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
10794
10774
|
wethAddress: "0x4200000000000000000000000000000000000006";
|
|
10795
10775
|
};
|
|
10796
10776
|
oku: {
|
|
10797
|
-
|
|
10777
|
+
router: "0x25132a6F4f0A993d62e57D0510df1395729125ad";
|
|
10798
10778
|
pricing: {
|
|
10799
10779
|
nativeWrappedToken: "0x4200000000000000000000000000000000000006";
|
|
10800
10780
|
nativeWrappedName: string;
|
|
@@ -10993,6 +10973,117 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
10993
10973
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
10994
10974
|
} & {
|
|
10995
10975
|
caip2Namespace: string;
|
|
10976
|
+
}>, Readonly<{
|
|
10977
|
+
blockTimeSeconds: 2;
|
|
10978
|
+
launchTime: 0;
|
|
10979
|
+
transactionType: "eip1559";
|
|
10980
|
+
sortIndex: 47;
|
|
10981
|
+
logoUrl: "https://cms.oku.trade/cdn/public/chains/robinhood-logo.svg";
|
|
10982
|
+
deprecated: false;
|
|
10983
|
+
liteChain: true;
|
|
10984
|
+
estimatedSwapGas: 300000;
|
|
10985
|
+
estimatedBridgeGas: 200000;
|
|
10986
|
+
estimatedWrapGas: 60000;
|
|
10987
|
+
safeReorgDistance: 90000;
|
|
10988
|
+
blockAid: "";
|
|
10989
|
+
externalId: {};
|
|
10990
|
+
markets: {};
|
|
10991
|
+
bridges: {};
|
|
10992
|
+
oracles: {};
|
|
10993
|
+
morpho: {};
|
|
10994
|
+
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
10995
|
+
uniswap: {
|
|
10996
|
+
poolFactory: "0x1f7d7550B1b028f7571E69A784071F0205FD2EfA";
|
|
10997
|
+
nonfungiblePositionManager: "0x73991a25C818Bf1f1128dEAaB1492D45638DE0D3";
|
|
10998
|
+
positionsNFT: "0x73991a25C818Bf1f1128dEAaB1492D45638DE0D3";
|
|
10999
|
+
wrappedNativeAddress: "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73";
|
|
11000
|
+
wrappedNativeSymbol: string;
|
|
11001
|
+
wrappedNativeName: string;
|
|
11002
|
+
wrappedNativeDecimals: number;
|
|
11003
|
+
nativeCurrencyName: string;
|
|
11004
|
+
};
|
|
11005
|
+
token: {
|
|
11006
|
+
wethAddress: "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73";
|
|
11007
|
+
};
|
|
11008
|
+
oku: {
|
|
11009
|
+
pricing: {
|
|
11010
|
+
nativeWrappedToken: "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73";
|
|
11011
|
+
nativeWrappedName: string;
|
|
11012
|
+
};
|
|
11013
|
+
};
|
|
11014
|
+
defaultPool: "0x69BfaF19C9f377BB306a89aEd9F6B07e2c1a8d9a";
|
|
11015
|
+
defaultToken0: "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73";
|
|
11016
|
+
defaultToken1: "0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168";
|
|
11017
|
+
tokenList: ({
|
|
11018
|
+
symbol: string;
|
|
11019
|
+
address: "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73";
|
|
11020
|
+
} | {
|
|
11021
|
+
symbol: string;
|
|
11022
|
+
address: "0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168";
|
|
11023
|
+
} | {
|
|
11024
|
+
symbol: string;
|
|
11025
|
+
address: "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34";
|
|
11026
|
+
})[];
|
|
11027
|
+
stables: ("0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168" | "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34")[];
|
|
11028
|
+
watchlist: never[];
|
|
11029
|
+
v4Watchlist: never[];
|
|
11030
|
+
internalName: "robinhood";
|
|
11031
|
+
nativeLogoUrl: "https://cms.oku.trade/cdn/public/natives/eth.png";
|
|
11032
|
+
contracts: {
|
|
11033
|
+
limitOrder: {
|
|
11034
|
+
address: "0x0000000000000000000000000000000000000000";
|
|
11035
|
+
};
|
|
11036
|
+
nftManager: {
|
|
11037
|
+
address: "0x73991a25C818Bf1f1128dEAaB1492D45638DE0D3";
|
|
11038
|
+
};
|
|
11039
|
+
weth9: {
|
|
11040
|
+
address: "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73";
|
|
11041
|
+
};
|
|
11042
|
+
multicall3: {
|
|
11043
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
11044
|
+
};
|
|
11045
|
+
};
|
|
11046
|
+
blockExplorers: {
|
|
11047
|
+
readonly default: {
|
|
11048
|
+
readonly name: "Blockscout";
|
|
11049
|
+
readonly url: "https://robinhoodchain.blockscout.com";
|
|
11050
|
+
readonly apiUrl: "https://robinhoodchain.blockscout.com/api";
|
|
11051
|
+
};
|
|
11052
|
+
};
|
|
11053
|
+
blockTime?: number | undefined | undefined | undefined;
|
|
11054
|
+
ensTlds?: readonly string[] | undefined;
|
|
11055
|
+
id: 4663;
|
|
11056
|
+
name: "Robinhood Chain";
|
|
11057
|
+
nativeCurrency: {
|
|
11058
|
+
readonly name: "Ether";
|
|
11059
|
+
readonly symbol: "ETH";
|
|
11060
|
+
readonly decimals: 18;
|
|
11061
|
+
};
|
|
11062
|
+
experimental_preconfirmationTime?: number | undefined | undefined | undefined;
|
|
11063
|
+
rpcUrls: {
|
|
11064
|
+
readonly default: {
|
|
11065
|
+
readonly http: readonly ["https://rpc.mainnet.chain.robinhood.com"];
|
|
11066
|
+
};
|
|
11067
|
+
};
|
|
11068
|
+
sourceId?: number | undefined | undefined | undefined;
|
|
11069
|
+
testnet?: boolean | undefined | undefined | undefined;
|
|
11070
|
+
custom?: Record<string, unknown> | undefined;
|
|
11071
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
11072
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
11073
|
+
formatters?: undefined | undefined;
|
|
11074
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
11075
|
+
client: import("viem").Client;
|
|
11076
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
11077
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
11078
|
+
client: import("viem").Client;
|
|
11079
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
11080
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
11081
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
11082
|
+
}] | undefined | undefined;
|
|
11083
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
11084
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined | undefined;
|
|
11085
|
+
} & {
|
|
11086
|
+
caip2Namespace: string;
|
|
10996
11087
|
}>];
|
|
10997
11088
|
/**
|
|
10998
11089
|
* Non-EVM chains (e.g. Bitcoin). These share the {@link IChainInfo} shape as
|
|
@@ -70,8 +70,7 @@ export interface OkuCustomOrderTypesMetadata {
|
|
|
70
70
|
oracleLessDeployBlock?: number;
|
|
71
71
|
}
|
|
72
72
|
export interface OkuMetadata {
|
|
73
|
-
|
|
74
|
-
router11?: Address;
|
|
73
|
+
router?: Address;
|
|
75
74
|
permit2Proxy10?: Address;
|
|
76
75
|
permit2Proxy11?: Address;
|
|
77
76
|
limitOrderRegistry?: Address;
|