@gfxlabs/oku-chains 1.1.158 → 1.1.159

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 CHANGED
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('viem/chains')) :
3
- typeof define === 'function' && define.amd ? define(['exports', 'viem/chains'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["oku-chains"] = {}, global.viem_chains));
5
- })(this, (function (exports, chains) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('viem/chains'), require('viem')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', 'viem/chains', 'viem'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["oku-chains"] = {}, global.viem_chains, global.viem));
5
+ })(this, (function (exports, chains, viem) { 'use strict';
6
6
 
7
7
  const makeConfig = (x) => {
8
8
  return x;
@@ -3529,6 +3529,82 @@
3529
3529
  },
3530
3530
  });
3531
3531
 
3532
+ const telos = makeConfig({
3533
+ ...chains.telos,
3534
+ blockTimeSeconds: 0.5,
3535
+ launchTime: 1738632669,
3536
+ sortIndex: 13,
3537
+ logoUrl: "https://assets.oku.trade/chains/telos-logo.svg",
3538
+ safeReorgDistance: 90000,
3539
+ externalId: {},
3540
+ markets: {
3541
+ icecreamswap: true,
3542
+ },
3543
+ bridges: {},
3544
+ morpho: {},
3545
+ oracles: {},
3546
+ initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
3547
+ uniswap: {
3548
+ deployBlock: 386633562,
3549
+ poolFactory: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D",
3550
+ permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578",
3551
+ multicall2: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435",
3552
+ tickLens: "0xB3309C48F8407651D918ca3Da4C45DE40109E641",
3553
+ nonfungiblePositionManager: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3554
+ positionsNFT: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3555
+ positionsNFTDeployBlock: 386635939,
3556
+ universalRouter: "0x738fD6d10bCc05c230388B4027CAd37f82fe2AF2",
3557
+ wrappedNativeAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3558
+ wrappedNativeSymbol: "wTLOS",
3559
+ wrappedNativeName: "Wrapped TLOS",
3560
+ wrappedNativeDecimals: 18,
3561
+ nativeCurrencyName: "TLOS",
3562
+ },
3563
+ token: {
3564
+ wethAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3565
+ wbtcAddress: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c",
3566
+ usdcAddress: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b",
3567
+ },
3568
+ oku: {
3569
+ limitOrderRegistry: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc",
3570
+ limitOrderRegistryDeployBlock: 386645006,
3571
+ pricing: {
3572
+ nativeWrappedToken: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3573
+ nativeWrappedName: "TLOS",
3574
+ },
3575
+ },
3576
+ defaultPool: viem.zeroAddress,
3577
+ defaultToken0: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b",
3578
+ defaultToken1: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3579
+ tokenList: [
3580
+ { symbol: "WTLOS", address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E" },
3581
+ { symbol: "USDC", address: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b" },
3582
+ { symbol: "WBTC", address: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c" },
3583
+ ],
3584
+ stables: ["0x8D97Cea50351Fb4329d591682b148D43a0C3611b"],
3585
+ watchlist: [],
3586
+ internalName: "telos",
3587
+ nativeLogoUrl: "https://assets.oku.trade/natives/telos.png",
3588
+ contracts: {
3589
+ ...chains.telos.contracts,
3590
+ limitOrder: {
3591
+ address: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc",
3592
+ },
3593
+ nftManager: {
3594
+ address: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3595
+ },
3596
+ weth9: {
3597
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3598
+ },
3599
+ multicall2: {
3600
+ address: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435",
3601
+ },
3602
+ multicall3: {
3603
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
3604
+ },
3605
+ },
3606
+ });
3607
+
3532
3608
  const xLayer = makeConfig({
3533
3609
  ...chains.xLayer,
3534
3610
  blockTimeSeconds: 3,
@@ -3922,6 +3998,7 @@
3922
3998
  exports.sei = sei;
3923
3999
  exports.sonic = sonic;
3924
4000
  exports.taiko = taiko;
4001
+ exports.telos = telos;
3925
4002
  exports.xLayer = xLayer;
3926
4003
  exports.zkSync = zkSync;
3927
4004
 
package/dist/index-mjs.js CHANGED
@@ -1,4 +1,5 @@
1
- import { arbitrum as arbitrum$1, base as base$1, blast as blast$1, bob as bob$1, boba as boba$1, bsc as bsc$1, celo as celo$1, corn as corn$1, filecoin as filecoin$1, gnosis as gnosis$1, hemi as hemi$1, linea as linea$1, lisk as lisk$1, mainnet as mainnet$1, manta as manta$1, mantle as mantle$1, metalL2, moonbeam as moonbeam$1, optimism as optimism$1, polygon as polygon$1, rootstock as rootstock$1, scroll as scroll$1, sei as sei$1, sonic as sonic$1, taiko as taiko$1, xLayer as xLayer$1, polygonZkEvm as polygonZkEvm$1, zksync } from 'viem/chains';
1
+ import { arbitrum as arbitrum$1, base as base$1, blast as blast$1, bob as bob$1, boba as boba$1, bsc as bsc$1, celo as celo$1, corn as corn$1, filecoin as filecoin$1, gnosis as gnosis$1, hemi as hemi$1, linea as linea$1, lisk as lisk$1, mainnet as mainnet$1, manta as manta$1, mantle as mantle$1, metalL2, moonbeam as moonbeam$1, optimism as optimism$1, polygon as polygon$1, rootstock as rootstock$1, scroll as scroll$1, sei as sei$1, sonic as sonic$1, taiko as taiko$1, telos as telos$1, xLayer as xLayer$1, polygonZkEvm as polygonZkEvm$1, zksync } from 'viem/chains';
2
+ import { zeroAddress } from 'viem';
2
3
 
3
4
  const makeConfig = (x) => {
4
5
  return x;
@@ -3525,6 +3526,82 @@ const taiko = makeConfig({
3525
3526
  },
3526
3527
  });
3527
3528
 
3529
+ const telos = makeConfig({
3530
+ ...telos$1,
3531
+ blockTimeSeconds: 0.5,
3532
+ launchTime: 1738632669,
3533
+ sortIndex: 13,
3534
+ logoUrl: "https://assets.oku.trade/chains/telos-logo.svg",
3535
+ safeReorgDistance: 90000,
3536
+ externalId: {},
3537
+ markets: {
3538
+ icecreamswap: true,
3539
+ },
3540
+ bridges: {},
3541
+ morpho: {},
3542
+ oracles: {},
3543
+ initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
3544
+ uniswap: {
3545
+ deployBlock: 386633562,
3546
+ poolFactory: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D",
3547
+ permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578",
3548
+ multicall2: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435",
3549
+ tickLens: "0xB3309C48F8407651D918ca3Da4C45DE40109E641",
3550
+ nonfungiblePositionManager: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3551
+ positionsNFT: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3552
+ positionsNFTDeployBlock: 386635939,
3553
+ universalRouter: "0x738fD6d10bCc05c230388B4027CAd37f82fe2AF2",
3554
+ wrappedNativeAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3555
+ wrappedNativeSymbol: "wTLOS",
3556
+ wrappedNativeName: "Wrapped TLOS",
3557
+ wrappedNativeDecimals: 18,
3558
+ nativeCurrencyName: "TLOS",
3559
+ },
3560
+ token: {
3561
+ wethAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3562
+ wbtcAddress: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c",
3563
+ usdcAddress: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b",
3564
+ },
3565
+ oku: {
3566
+ limitOrderRegistry: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc",
3567
+ limitOrderRegistryDeployBlock: 386645006,
3568
+ pricing: {
3569
+ nativeWrappedToken: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3570
+ nativeWrappedName: "TLOS",
3571
+ },
3572
+ },
3573
+ defaultPool: zeroAddress,
3574
+ defaultToken0: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b",
3575
+ defaultToken1: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3576
+ tokenList: [
3577
+ { symbol: "WTLOS", address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E" },
3578
+ { symbol: "USDC", address: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b" },
3579
+ { symbol: "WBTC", address: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c" },
3580
+ ],
3581
+ stables: ["0x8D97Cea50351Fb4329d591682b148D43a0C3611b"],
3582
+ watchlist: [],
3583
+ internalName: "telos",
3584
+ nativeLogoUrl: "https://assets.oku.trade/natives/telos.png",
3585
+ contracts: {
3586
+ ...telos$1.contracts,
3587
+ limitOrder: {
3588
+ address: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc",
3589
+ },
3590
+ nftManager: {
3591
+ address: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3592
+ },
3593
+ weth9: {
3594
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3595
+ },
3596
+ multicall2: {
3597
+ address: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435",
3598
+ },
3599
+ multicall3: {
3600
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
3601
+ },
3602
+ },
3603
+ });
3604
+
3528
3605
  const xLayer = makeConfig({
3529
3606
  ...xLayer$1,
3530
3607
  blockTimeSeconds: 3,
@@ -3891,4 +3968,4 @@ const MAINNET_CHAINS = [
3891
3968
  hemi,
3892
3969
  ];
3893
3970
 
3894
- export { MAINNET_CHAINS, arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, hemi, linea, lisk, mainnet, manta, mantle, metal, moonbeam, optimism, polygon, polygonZkEvm, rootstock, scroll, sei, sonic, taiko, xLayer, zkSync };
3971
+ export { MAINNET_CHAINS, arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, hemi, linea, lisk, mainnet, manta, mantle, metal, moonbeam, optimism, polygon, polygonZkEvm, rootstock, scroll, sei, sonic, taiko, telos, xLayer, zkSync };
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var chains = require('viem/chains');
4
+ var viem = require('viem');
4
5
 
5
6
  const makeConfig = (x) => {
6
7
  return x;
@@ -3527,6 +3528,82 @@ const taiko = makeConfig({
3527
3528
  },
3528
3529
  });
3529
3530
 
3531
+ const telos = makeConfig({
3532
+ ...chains.telos,
3533
+ blockTimeSeconds: 0.5,
3534
+ launchTime: 1738632669,
3535
+ sortIndex: 13,
3536
+ logoUrl: "https://assets.oku.trade/chains/telos-logo.svg",
3537
+ safeReorgDistance: 90000,
3538
+ externalId: {},
3539
+ markets: {
3540
+ icecreamswap: true,
3541
+ },
3542
+ bridges: {},
3543
+ morpho: {},
3544
+ oracles: {},
3545
+ initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
3546
+ uniswap: {
3547
+ deployBlock: 386633562,
3548
+ poolFactory: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D",
3549
+ permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578",
3550
+ multicall2: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435",
3551
+ tickLens: "0xB3309C48F8407651D918ca3Da4C45DE40109E641",
3552
+ nonfungiblePositionManager: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3553
+ positionsNFT: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3554
+ positionsNFTDeployBlock: 386635939,
3555
+ universalRouter: "0x738fD6d10bCc05c230388B4027CAd37f82fe2AF2",
3556
+ wrappedNativeAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3557
+ wrappedNativeSymbol: "wTLOS",
3558
+ wrappedNativeName: "Wrapped TLOS",
3559
+ wrappedNativeDecimals: 18,
3560
+ nativeCurrencyName: "TLOS",
3561
+ },
3562
+ token: {
3563
+ wethAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3564
+ wbtcAddress: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c",
3565
+ usdcAddress: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b",
3566
+ },
3567
+ oku: {
3568
+ limitOrderRegistry: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc",
3569
+ limitOrderRegistryDeployBlock: 386645006,
3570
+ pricing: {
3571
+ nativeWrappedToken: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3572
+ nativeWrappedName: "TLOS",
3573
+ },
3574
+ },
3575
+ defaultPool: viem.zeroAddress,
3576
+ defaultToken0: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b",
3577
+ defaultToken1: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3578
+ tokenList: [
3579
+ { symbol: "WTLOS", address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E" },
3580
+ { symbol: "USDC", address: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b" },
3581
+ { symbol: "WBTC", address: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c" },
3582
+ ],
3583
+ stables: ["0x8D97Cea50351Fb4329d591682b148D43a0C3611b"],
3584
+ watchlist: [],
3585
+ internalName: "telos",
3586
+ nativeLogoUrl: "https://assets.oku.trade/natives/telos.png",
3587
+ contracts: {
3588
+ ...chains.telos.contracts,
3589
+ limitOrder: {
3590
+ address: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc",
3591
+ },
3592
+ nftManager: {
3593
+ address: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
3594
+ },
3595
+ weth9: {
3596
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E",
3597
+ },
3598
+ multicall2: {
3599
+ address: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435",
3600
+ },
3601
+ multicall3: {
3602
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
3603
+ },
3604
+ },
3605
+ });
3606
+
3530
3607
  const xLayer = makeConfig({
3531
3608
  ...chains.xLayer,
3532
3609
  blockTimeSeconds: 3,
@@ -3920,5 +3997,6 @@ exports.scroll = scroll;
3920
3997
  exports.sei = sei;
3921
3998
  exports.sonic = sonic;
3922
3999
  exports.taiko = taiko;
4000
+ exports.telos = telos;
3923
4001
  exports.xLayer = xLayer;
3924
4002
  exports.zkSync = zkSync;
@@ -5768,6 +5768,110 @@ declare const taiko: Readonly<{
5768
5768
  formatters?: undefined | undefined;
5769
5769
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5770
5770
  }>;
5771
+ declare const telos: Readonly<{
5772
+ blockTimeSeconds: 0.5;
5773
+ launchTime: 1738632669;
5774
+ sortIndex: 13;
5775
+ logoUrl: "https://assets.oku.trade/chains/telos-logo.svg";
5776
+ safeReorgDistance: 90000;
5777
+ externalId: {};
5778
+ markets: {
5779
+ icecreamswap: true;
5780
+ };
5781
+ bridges: {};
5782
+ morpho: {};
5783
+ oracles: {};
5784
+ initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
5785
+ uniswap: {
5786
+ deployBlock: number;
5787
+ poolFactory: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D";
5788
+ permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578";
5789
+ multicall2: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
5790
+ tickLens: "0xB3309C48F8407651D918ca3Da4C45DE40109E641";
5791
+ nonfungiblePositionManager: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5792
+ positionsNFT: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5793
+ positionsNFTDeployBlock: number;
5794
+ universalRouter: "0x738fD6d10bCc05c230388B4027CAd37f82fe2AF2";
5795
+ wrappedNativeAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5796
+ wrappedNativeSymbol: string;
5797
+ wrappedNativeName: string;
5798
+ wrappedNativeDecimals: number;
5799
+ nativeCurrencyName: string;
5800
+ };
5801
+ token: {
5802
+ wethAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5803
+ wbtcAddress: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c";
5804
+ usdcAddress: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5805
+ };
5806
+ oku: {
5807
+ limitOrderRegistry: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc";
5808
+ limitOrderRegistryDeployBlock: number;
5809
+ pricing: {
5810
+ nativeWrappedToken: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5811
+ nativeWrappedName: string;
5812
+ };
5813
+ };
5814
+ defaultPool: "0x0000000000000000000000000000000000000000";
5815
+ defaultToken0: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5816
+ defaultToken1: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5817
+ tokenList: ({
5818
+ symbol: string;
5819
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5820
+ } | {
5821
+ symbol: string;
5822
+ address: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5823
+ } | {
5824
+ symbol: string;
5825
+ address: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c";
5826
+ })[];
5827
+ stables: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b"[];
5828
+ watchlist: never[];
5829
+ internalName: "telos";
5830
+ nativeLogoUrl: "https://assets.oku.trade/natives/telos.png";
5831
+ contracts: {
5832
+ limitOrder: {
5833
+ address: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc";
5834
+ };
5835
+ nftManager: {
5836
+ address: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5837
+ };
5838
+ weth9: {
5839
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5840
+ };
5841
+ multicall2: {
5842
+ address: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
5843
+ };
5844
+ multicall3: {
5845
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11";
5846
+ };
5847
+ };
5848
+ blockExplorers: {
5849
+ readonly default: {
5850
+ readonly name: "Teloscan";
5851
+ readonly url: "https://www.teloscan.io/";
5852
+ };
5853
+ };
5854
+ id: 40;
5855
+ name: "Telos";
5856
+ nativeCurrency: {
5857
+ readonly decimals: 18;
5858
+ readonly name: "Telos";
5859
+ readonly symbol: "TLOS";
5860
+ };
5861
+ rpcUrls: {
5862
+ readonly default: {
5863
+ readonly http: readonly [
5864
+ "https://mainnet.telos.net/evm"
5865
+ ];
5866
+ };
5867
+ };
5868
+ sourceId?: number | undefined | undefined;
5869
+ testnet?: boolean | undefined | undefined;
5870
+ custom?: Record<string, unknown> | undefined;
5871
+ fees?: import("viem").ChainFees<undefined> | undefined;
5872
+ formatters?: undefined | undefined;
5873
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5874
+ }>;
5771
5875
  declare const xLayer: Readonly<{
5772
5876
  blockTimeSeconds: 3;
5773
5877
  launchTime: 0;
@@ -13109,5 +13213,5 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13109
13213
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
13110
13214
  network: "Hemi";
13111
13215
  }>];
13112
- export { arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, hemi, linea, lisk, mainnet, manta, mantle, metal, moonbeam, optimism, polygon, rootstock, scroll, sei, sonic, taiko, xLayer, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
13216
+ export { arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, hemi, linea, lisk, mainnet, manta, mantle, metal, moonbeam, optimism, polygon, rootstock, scroll, sei, sonic, taiko, telos, xLayer, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
13113
13217
  export { ChainContract } from "viem";
@@ -5768,6 +5768,110 @@ declare const taiko: Readonly<{
5768
5768
  formatters?: undefined | undefined;
5769
5769
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5770
5770
  }>;
5771
+ declare const telos: Readonly<{
5772
+ blockTimeSeconds: 0.5;
5773
+ launchTime: 1738632669;
5774
+ sortIndex: 13;
5775
+ logoUrl: "https://assets.oku.trade/chains/telos-logo.svg";
5776
+ safeReorgDistance: 90000;
5777
+ externalId: {};
5778
+ markets: {
5779
+ icecreamswap: true;
5780
+ };
5781
+ bridges: {};
5782
+ morpho: {};
5783
+ oracles: {};
5784
+ initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
5785
+ uniswap: {
5786
+ deployBlock: number;
5787
+ poolFactory: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D";
5788
+ permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578";
5789
+ multicall2: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
5790
+ tickLens: "0xB3309C48F8407651D918ca3Da4C45DE40109E641";
5791
+ nonfungiblePositionManager: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5792
+ positionsNFT: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5793
+ positionsNFTDeployBlock: number;
5794
+ universalRouter: "0x738fD6d10bCc05c230388B4027CAd37f82fe2AF2";
5795
+ wrappedNativeAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5796
+ wrappedNativeSymbol: string;
5797
+ wrappedNativeName: string;
5798
+ wrappedNativeDecimals: number;
5799
+ nativeCurrencyName: string;
5800
+ };
5801
+ token: {
5802
+ wethAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5803
+ wbtcAddress: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c";
5804
+ usdcAddress: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5805
+ };
5806
+ oku: {
5807
+ limitOrderRegistry: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc";
5808
+ limitOrderRegistryDeployBlock: number;
5809
+ pricing: {
5810
+ nativeWrappedToken: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5811
+ nativeWrappedName: string;
5812
+ };
5813
+ };
5814
+ defaultPool: "0x0000000000000000000000000000000000000000";
5815
+ defaultToken0: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5816
+ defaultToken1: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5817
+ tokenList: ({
5818
+ symbol: string;
5819
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5820
+ } | {
5821
+ symbol: string;
5822
+ address: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5823
+ } | {
5824
+ symbol: string;
5825
+ address: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c";
5826
+ })[];
5827
+ stables: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b"[];
5828
+ watchlist: never[];
5829
+ internalName: "telos";
5830
+ nativeLogoUrl: "https://assets.oku.trade/natives/telos.png";
5831
+ contracts: {
5832
+ limitOrder: {
5833
+ address: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc";
5834
+ };
5835
+ nftManager: {
5836
+ address: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5837
+ };
5838
+ weth9: {
5839
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5840
+ };
5841
+ multicall2: {
5842
+ address: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
5843
+ };
5844
+ multicall3: {
5845
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11";
5846
+ };
5847
+ };
5848
+ blockExplorers: {
5849
+ readonly default: {
5850
+ readonly name: "Teloscan";
5851
+ readonly url: "https://www.teloscan.io/";
5852
+ };
5853
+ };
5854
+ id: 40;
5855
+ name: "Telos";
5856
+ nativeCurrency: {
5857
+ readonly decimals: 18;
5858
+ readonly name: "Telos";
5859
+ readonly symbol: "TLOS";
5860
+ };
5861
+ rpcUrls: {
5862
+ readonly default: {
5863
+ readonly http: readonly [
5864
+ "https://mainnet.telos.net/evm"
5865
+ ];
5866
+ };
5867
+ };
5868
+ sourceId?: number | undefined | undefined;
5869
+ testnet?: boolean | undefined | undefined;
5870
+ custom?: Record<string, unknown> | undefined;
5871
+ fees?: import("viem").ChainFees<undefined> | undefined;
5872
+ formatters?: undefined | undefined;
5873
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5874
+ }>;
5771
5875
  declare const xLayer: Readonly<{
5772
5876
  blockTimeSeconds: 3;
5773
5877
  launchTime: 0;
@@ -13109,5 +13213,5 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13109
13213
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
13110
13214
  network: "Hemi";
13111
13215
  }>];
13112
- export { arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, hemi, linea, lisk, mainnet, manta, mantle, metal, moonbeam, optimism, polygon, rootstock, scroll, sei, sonic, taiko, xLayer, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
13216
+ export { arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, hemi, linea, lisk, mainnet, manta, mantle, metal, moonbeam, optimism, polygon, rootstock, scroll, sei, sonic, taiko, telos, xLayer, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
13113
13217
  export { ChainContract } from "viem";
@@ -5768,6 +5768,110 @@ declare const taiko: Readonly<{
5768
5768
  formatters?: undefined | undefined;
5769
5769
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5770
5770
  }>;
5771
+ declare const telos: Readonly<{
5772
+ blockTimeSeconds: 0.5;
5773
+ launchTime: 1738632669;
5774
+ sortIndex: 13;
5775
+ logoUrl: "https://assets.oku.trade/chains/telos-logo.svg";
5776
+ safeReorgDistance: 90000;
5777
+ externalId: {};
5778
+ markets: {
5779
+ icecreamswap: true;
5780
+ };
5781
+ bridges: {};
5782
+ morpho: {};
5783
+ oracles: {};
5784
+ initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
5785
+ uniswap: {
5786
+ deployBlock: number;
5787
+ poolFactory: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D";
5788
+ permit2: "0xB952578f3520EE8Ea45b7914994dcf4702cEe578";
5789
+ multicall2: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
5790
+ tickLens: "0xB3309C48F8407651D918ca3Da4C45DE40109E641";
5791
+ nonfungiblePositionManager: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5792
+ positionsNFT: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5793
+ positionsNFTDeployBlock: number;
5794
+ universalRouter: "0x738fD6d10bCc05c230388B4027CAd37f82fe2AF2";
5795
+ wrappedNativeAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5796
+ wrappedNativeSymbol: string;
5797
+ wrappedNativeName: string;
5798
+ wrappedNativeDecimals: number;
5799
+ nativeCurrencyName: string;
5800
+ };
5801
+ token: {
5802
+ wethAddress: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5803
+ wbtcAddress: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c";
5804
+ usdcAddress: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5805
+ };
5806
+ oku: {
5807
+ limitOrderRegistry: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc";
5808
+ limitOrderRegistryDeployBlock: number;
5809
+ pricing: {
5810
+ nativeWrappedToken: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5811
+ nativeWrappedName: string;
5812
+ };
5813
+ };
5814
+ defaultPool: "0x0000000000000000000000000000000000000000";
5815
+ defaultToken0: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5816
+ defaultToken1: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5817
+ tokenList: ({
5818
+ symbol: string;
5819
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5820
+ } | {
5821
+ symbol: string;
5822
+ address: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b";
5823
+ } | {
5824
+ symbol: string;
5825
+ address: "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c";
5826
+ })[];
5827
+ stables: "0x8D97Cea50351Fb4329d591682b148D43a0C3611b"[];
5828
+ watchlist: never[];
5829
+ internalName: "telos";
5830
+ nativeLogoUrl: "https://assets.oku.trade/natives/telos.png";
5831
+ contracts: {
5832
+ limitOrder: {
5833
+ address: "0x1b35fbA9357fD9bda7ed0429C8BbAbe1e8CC88fc";
5834
+ };
5835
+ nftManager: {
5836
+ address: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c";
5837
+ };
5838
+ weth9: {
5839
+ address: "0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E";
5840
+ };
5841
+ multicall2: {
5842
+ address: "0x5d6b0f5335ec95cD2aB7E52f2A0750dd86502435";
5843
+ };
5844
+ multicall3: {
5845
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11";
5846
+ };
5847
+ };
5848
+ blockExplorers: {
5849
+ readonly default: {
5850
+ readonly name: "Teloscan";
5851
+ readonly url: "https://www.teloscan.io/";
5852
+ };
5853
+ };
5854
+ id: 40;
5855
+ name: "Telos";
5856
+ nativeCurrency: {
5857
+ readonly decimals: 18;
5858
+ readonly name: "Telos";
5859
+ readonly symbol: "TLOS";
5860
+ };
5861
+ rpcUrls: {
5862
+ readonly default: {
5863
+ readonly http: readonly [
5864
+ "https://mainnet.telos.net/evm"
5865
+ ];
5866
+ };
5867
+ };
5868
+ sourceId?: number | undefined | undefined;
5869
+ testnet?: boolean | undefined | undefined;
5870
+ custom?: Record<string, unknown> | undefined;
5871
+ fees?: import("viem").ChainFees<undefined> | undefined;
5872
+ formatters?: undefined | undefined;
5873
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5874
+ }>;
5771
5875
  declare const xLayer: Readonly<{
5772
5876
  blockTimeSeconds: 3;
5773
5877
  launchTime: 0;
@@ -13109,5 +13213,5 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13109
13213
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
13110
13214
  network: "Hemi";
13111
13215
  }>];
13112
- export { arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, hemi, linea, lisk, mainnet, manta, mantle, metal, moonbeam, optimism, polygon, rootstock, scroll, sei, sonic, taiko, xLayer, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
13216
+ export { arbitrum, base, blast, bob, boba, bsc, celo, corn, filecoin, gnosis, hemi, linea, lisk, mainnet, manta, mantle, metal, moonbeam, optimism, polygon, rootstock, scroll, sei, sonic, taiko, telos, xLayer, polygonZkEvm, zkSync, MorphoMetadata, UniswapMetadata, OkuPricingMetadata, OkuMetadata, TokenMetadata, Markets, Bridges, Oracles, IChainInfo, MAINNET_CHAINS };
13113
13217
  export { ChainContract } from "viem";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gfxlabs/oku-chains",
3
- "version": "1.1.158",
3
+ "version": "1.1.159",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index-mjs.js",
@@ -50,7 +50,7 @@
50
50
  "tslib": "2.8.1",
51
51
  "tsx": "4.19.2",
52
52
  "typescript": "5.7.3",
53
- "viem": "^2.22.16"
53
+ "viem": "^2.22.17"
54
54
  },
55
55
  "packageManager": "yarn@4.6.0",
56
56
  "peerDependencies": {