@gfxlabs/oku-chains 1.9.1 → 1.9.2
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 +7 -0
- package/dist/index-mjs.js +7 -0
- package/dist/index.js +7 -0
- package/dist/types/browser.d.ts +23 -1
- package/dist/types/index-mjs.d.ts +23 -1
- package/dist/types/index.d.ts +23 -1
- package/package.json +1 -1
package/dist/browser.js
CHANGED
|
@@ -2664,6 +2664,13 @@
|
|
|
2664
2664
|
},
|
|
2665
2665
|
dexscreener: "ethereum",
|
|
2666
2666
|
},
|
|
2667
|
+
uniswapv4: {
|
|
2668
|
+
deployBlock: 21688329,
|
|
2669
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90",
|
|
2670
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e",
|
|
2671
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af",
|
|
2672
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3",
|
|
2673
|
+
},
|
|
2667
2674
|
uniswap: {
|
|
2668
2675
|
deployBlock: 12369621,
|
|
2669
2676
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984",
|
package/dist/index-mjs.js
CHANGED
|
@@ -2661,6 +2661,13 @@ const mainnet = makeConfig({
|
|
|
2661
2661
|
},
|
|
2662
2662
|
dexscreener: "ethereum",
|
|
2663
2663
|
},
|
|
2664
|
+
uniswapv4: {
|
|
2665
|
+
deployBlock: 21688329,
|
|
2666
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90",
|
|
2667
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e",
|
|
2668
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af",
|
|
2669
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3",
|
|
2670
|
+
},
|
|
2664
2671
|
uniswap: {
|
|
2665
2672
|
deployBlock: 12369621,
|
|
2666
2673
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984",
|
package/dist/index.js
CHANGED
|
@@ -2663,6 +2663,13 @@ const mainnet = makeConfig({
|
|
|
2663
2663
|
},
|
|
2664
2664
|
dexscreener: "ethereum",
|
|
2665
2665
|
},
|
|
2666
|
+
uniswapv4: {
|
|
2667
|
+
deployBlock: 21688329,
|
|
2668
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90",
|
|
2669
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e",
|
|
2670
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af",
|
|
2671
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3",
|
|
2672
|
+
},
|
|
2666
2673
|
uniswap: {
|
|
2667
2674
|
deployBlock: 12369621,
|
|
2668
2675
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984",
|
package/dist/types/browser.d.ts
CHANGED
|
@@ -4652,6 +4652,13 @@ declare const mainnet: Readonly<{
|
|
|
4652
4652
|
};
|
|
4653
4653
|
dexscreener: string;
|
|
4654
4654
|
};
|
|
4655
|
+
uniswapv4: {
|
|
4656
|
+
deployBlock: number;
|
|
4657
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90";
|
|
4658
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e";
|
|
4659
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af";
|
|
4660
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3";
|
|
4661
|
+
};
|
|
4655
4662
|
uniswap: {
|
|
4656
4663
|
deployBlock: number;
|
|
4657
4664
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984";
|
|
@@ -9825,6 +9832,13 @@ interface UniswapMetadata {
|
|
|
9825
9832
|
wrappedNativeDecimals?: number;
|
|
9826
9833
|
nativeCurrencyName?: string;
|
|
9827
9834
|
}
|
|
9835
|
+
interface UniswapV4Metadata {
|
|
9836
|
+
deployBlock: number;
|
|
9837
|
+
poolManager: Address;
|
|
9838
|
+
positionManager: Address;
|
|
9839
|
+
universalRouter: Address;
|
|
9840
|
+
permit2: Address;
|
|
9841
|
+
}
|
|
9828
9842
|
interface OkuPricingMetadata {
|
|
9829
9843
|
nativeWrappedToken?: Address;
|
|
9830
9844
|
nativeToken?: Address;
|
|
@@ -9966,6 +9980,7 @@ interface IChainInfo<formatters extends ChainFormatters | undefined = ChainForma
|
|
|
9966
9980
|
initCodeHash: Hash;
|
|
9967
9981
|
blockTimeSeconds: float64;
|
|
9968
9982
|
uniswap: UniswapMetadata;
|
|
9983
|
+
uniswapv4?: UniswapV4Metadata;
|
|
9969
9984
|
morpho: MorphoMetadata;
|
|
9970
9985
|
token: TokenMetadata;
|
|
9971
9986
|
oku: OkuMetadata;
|
|
@@ -11571,6 +11586,13 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11571
11586
|
};
|
|
11572
11587
|
dexscreener: string;
|
|
11573
11588
|
};
|
|
11589
|
+
uniswapv4: {
|
|
11590
|
+
deployBlock: number;
|
|
11591
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90";
|
|
11592
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e";
|
|
11593
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af";
|
|
11594
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3";
|
|
11595
|
+
};
|
|
11574
11596
|
uniswap: {
|
|
11575
11597
|
deployBlock: number;
|
|
11576
11598
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984";
|
|
@@ -19593,5 +19615,5 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
19593
19615
|
formatters?: undefined | undefined;
|
|
19594
19616
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
19595
19617
|
}>];
|
|
19596
|
-
export { arbitrum, avalanche, base, blast, bob, boba, bsc, celo, corn, etherlink, filecoin, gnosis, goat, hemi, lens, lightlink, linea, lisk, mainnet, manta, mantle, matchain, metal, monad, moonbeam, nibiru, optimism, plasma, polygon, redbelly, ronin, rootstock, saga, scroll, sei, sonic, taiko, telos, tronShasta, unichain, worldchain, xdc, zerog, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuCustomOrderTypesMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
|
|
19618
|
+
export { arbitrum, avalanche, base, blast, bob, boba, bsc, celo, corn, etherlink, filecoin, gnosis, goat, hemi, lens, lightlink, linea, lisk, mainnet, manta, mantle, matchain, metal, monad, moonbeam, nibiru, optimism, plasma, polygon, redbelly, ronin, rootstock, saga, scroll, sei, sonic, taiko, telos, tronShasta, unichain, worldchain, xdc, zerog, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, UniswapV4Metadata, OkuPricingMetadata, OkuCustomOrderTypesMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
|
|
19597
19619
|
export { ChainContract } from "viem";
|
|
@@ -4652,6 +4652,13 @@ declare const mainnet: Readonly<{
|
|
|
4652
4652
|
};
|
|
4653
4653
|
dexscreener: string;
|
|
4654
4654
|
};
|
|
4655
|
+
uniswapv4: {
|
|
4656
|
+
deployBlock: number;
|
|
4657
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90";
|
|
4658
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e";
|
|
4659
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af";
|
|
4660
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3";
|
|
4661
|
+
};
|
|
4655
4662
|
uniswap: {
|
|
4656
4663
|
deployBlock: number;
|
|
4657
4664
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984";
|
|
@@ -9825,6 +9832,13 @@ interface UniswapMetadata {
|
|
|
9825
9832
|
wrappedNativeDecimals?: number;
|
|
9826
9833
|
nativeCurrencyName?: string;
|
|
9827
9834
|
}
|
|
9835
|
+
interface UniswapV4Metadata {
|
|
9836
|
+
deployBlock: number;
|
|
9837
|
+
poolManager: Address;
|
|
9838
|
+
positionManager: Address;
|
|
9839
|
+
universalRouter: Address;
|
|
9840
|
+
permit2: Address;
|
|
9841
|
+
}
|
|
9828
9842
|
interface OkuPricingMetadata {
|
|
9829
9843
|
nativeWrappedToken?: Address;
|
|
9830
9844
|
nativeToken?: Address;
|
|
@@ -9966,6 +9980,7 @@ interface IChainInfo<formatters extends ChainFormatters | undefined = ChainForma
|
|
|
9966
9980
|
initCodeHash: Hash;
|
|
9967
9981
|
blockTimeSeconds: float64;
|
|
9968
9982
|
uniswap: UniswapMetadata;
|
|
9983
|
+
uniswapv4?: UniswapV4Metadata;
|
|
9969
9984
|
morpho: MorphoMetadata;
|
|
9970
9985
|
token: TokenMetadata;
|
|
9971
9986
|
oku: OkuMetadata;
|
|
@@ -11571,6 +11586,13 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11571
11586
|
};
|
|
11572
11587
|
dexscreener: string;
|
|
11573
11588
|
};
|
|
11589
|
+
uniswapv4: {
|
|
11590
|
+
deployBlock: number;
|
|
11591
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90";
|
|
11592
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e";
|
|
11593
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af";
|
|
11594
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3";
|
|
11595
|
+
};
|
|
11574
11596
|
uniswap: {
|
|
11575
11597
|
deployBlock: number;
|
|
11576
11598
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984";
|
|
@@ -19593,5 +19615,5 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
19593
19615
|
formatters?: undefined | undefined;
|
|
19594
19616
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
19595
19617
|
}>];
|
|
19596
|
-
export { arbitrum, avalanche, base, blast, bob, boba, bsc, celo, corn, etherlink, filecoin, gnosis, goat, hemi, lens, lightlink, linea, lisk, mainnet, manta, mantle, matchain, metal, monad, moonbeam, nibiru, optimism, plasma, polygon, redbelly, ronin, rootstock, saga, scroll, sei, sonic, taiko, telos, tronShasta, unichain, worldchain, xdc, zerog, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuCustomOrderTypesMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
|
|
19618
|
+
export { arbitrum, avalanche, base, blast, bob, boba, bsc, celo, corn, etherlink, filecoin, gnosis, goat, hemi, lens, lightlink, linea, lisk, mainnet, manta, mantle, matchain, metal, monad, moonbeam, nibiru, optimism, plasma, polygon, redbelly, ronin, rootstock, saga, scroll, sei, sonic, taiko, telos, tronShasta, unichain, worldchain, xdc, zerog, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, UniswapV4Metadata, OkuPricingMetadata, OkuCustomOrderTypesMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
|
|
19597
19619
|
export { ChainContract } from "viem";
|
package/dist/types/index.d.ts
CHANGED
|
@@ -4652,6 +4652,13 @@ declare const mainnet: Readonly<{
|
|
|
4652
4652
|
};
|
|
4653
4653
|
dexscreener: string;
|
|
4654
4654
|
};
|
|
4655
|
+
uniswapv4: {
|
|
4656
|
+
deployBlock: number;
|
|
4657
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90";
|
|
4658
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e";
|
|
4659
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af";
|
|
4660
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3";
|
|
4661
|
+
};
|
|
4655
4662
|
uniswap: {
|
|
4656
4663
|
deployBlock: number;
|
|
4657
4664
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984";
|
|
@@ -9825,6 +9832,13 @@ interface UniswapMetadata {
|
|
|
9825
9832
|
wrappedNativeDecimals?: number;
|
|
9826
9833
|
nativeCurrencyName?: string;
|
|
9827
9834
|
}
|
|
9835
|
+
interface UniswapV4Metadata {
|
|
9836
|
+
deployBlock: number;
|
|
9837
|
+
poolManager: Address;
|
|
9838
|
+
positionManager: Address;
|
|
9839
|
+
universalRouter: Address;
|
|
9840
|
+
permit2: Address;
|
|
9841
|
+
}
|
|
9828
9842
|
interface OkuPricingMetadata {
|
|
9829
9843
|
nativeWrappedToken?: Address;
|
|
9830
9844
|
nativeToken?: Address;
|
|
@@ -9966,6 +9980,7 @@ interface IChainInfo<formatters extends ChainFormatters | undefined = ChainForma
|
|
|
9966
9980
|
initCodeHash: Hash;
|
|
9967
9981
|
blockTimeSeconds: float64;
|
|
9968
9982
|
uniswap: UniswapMetadata;
|
|
9983
|
+
uniswapv4?: UniswapV4Metadata;
|
|
9969
9984
|
morpho: MorphoMetadata;
|
|
9970
9985
|
token: TokenMetadata;
|
|
9971
9986
|
oku: OkuMetadata;
|
|
@@ -11571,6 +11586,13 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11571
11586
|
};
|
|
11572
11587
|
dexscreener: string;
|
|
11573
11588
|
};
|
|
11589
|
+
uniswapv4: {
|
|
11590
|
+
deployBlock: number;
|
|
11591
|
+
poolManager: "0x000000000004444c5dc75cB358380D2e3dE08A90";
|
|
11592
|
+
positionManager: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e";
|
|
11593
|
+
universalRouter: "0x66a9893cc07d91d95644aedd05d03f95e1dba8af";
|
|
11594
|
+
permit2: "0x000000000022D473030F116dDEE9F6B43aC78BA3";
|
|
11595
|
+
};
|
|
11574
11596
|
uniswap: {
|
|
11575
11597
|
deployBlock: number;
|
|
11576
11598
|
poolFactory: "0x1F98431c8aD98523631AE4a59f267346ea31F984";
|
|
@@ -19593,5 +19615,5 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
19593
19615
|
formatters?: undefined | undefined;
|
|
19594
19616
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
19595
19617
|
}>];
|
|
19596
|
-
export { arbitrum, avalanche, base, blast, bob, boba, bsc, celo, corn, etherlink, filecoin, gnosis, goat, hemi, lens, lightlink, linea, lisk, mainnet, manta, mantle, matchain, metal, monad, moonbeam, nibiru, optimism, plasma, polygon, redbelly, ronin, rootstock, saga, scroll, sei, sonic, taiko, telos, tronShasta, unichain, worldchain, xdc, zerog, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuCustomOrderTypesMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
|
|
19618
|
+
export { arbitrum, avalanche, base, blast, bob, boba, bsc, celo, corn, etherlink, filecoin, gnosis, goat, hemi, lens, lightlink, linea, lisk, mainnet, manta, mantle, matchain, metal, monad, moonbeam, nibiru, optimism, plasma, polygon, redbelly, ronin, rootstock, saga, scroll, sei, sonic, taiko, telos, tronShasta, unichain, worldchain, xdc, zerog, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, UniswapV4Metadata, OkuPricingMetadata, OkuCustomOrderTypesMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
|
|
19597
19619
|
export { ChainContract } from "viem";
|