@gfxlabs/oku-chains 1.1.200 → 1.1.201

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
@@ -4086,7 +4086,29 @@
4086
4086
  openocean: "telos",
4087
4087
  icecreamswap: true,
4088
4088
  },
4089
- bridges: {},
4089
+ bridges: {
4090
+ stargate: {
4091
+ endpointID: 30199,
4092
+ tokens: [
4093
+ {
4094
+ name: "ETH",
4095
+ type: "OFT",
4096
+ id: 13,
4097
+ address: "0xA272fFe20cFfe769CdFc4b63088DCD2C82a2D8F9"
4098
+ }, {
4099
+ name: "USDC",
4100
+ type: "OFT",
4101
+ id: 1,
4102
+ address: "0x2086f755A6d9254045C257ea3d382ef854849B0f"
4103
+ }, {
4104
+ name: "USDT",
4105
+ type: "OFT",
4106
+ id: 2,
4107
+ address: "0x3a1293Bdb83bBbDd5Ebf4fAc96605aD2021BbC0f"
4108
+ }
4109
+ ]
4110
+ }
4111
+ },
4090
4112
  morpho: {},
4091
4113
  oracles: {},
4092
4114
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
package/dist/index-mjs.js CHANGED
@@ -4082,7 +4082,29 @@ const telos = makeConfig({
4082
4082
  openocean: "telos",
4083
4083
  icecreamswap: true,
4084
4084
  },
4085
- bridges: {},
4085
+ bridges: {
4086
+ stargate: {
4087
+ endpointID: 30199,
4088
+ tokens: [
4089
+ {
4090
+ name: "ETH",
4091
+ type: "OFT",
4092
+ id: 13,
4093
+ address: "0xA272fFe20cFfe769CdFc4b63088DCD2C82a2D8F9"
4094
+ }, {
4095
+ name: "USDC",
4096
+ type: "OFT",
4097
+ id: 1,
4098
+ address: "0x2086f755A6d9254045C257ea3d382ef854849B0f"
4099
+ }, {
4100
+ name: "USDT",
4101
+ type: "OFT",
4102
+ id: 2,
4103
+ address: "0x3a1293Bdb83bBbDd5Ebf4fAc96605aD2021BbC0f"
4104
+ }
4105
+ ]
4106
+ }
4107
+ },
4086
4108
  morpho: {},
4087
4109
  oracles: {},
4088
4110
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
package/dist/index.js CHANGED
@@ -4084,7 +4084,29 @@ const telos = makeConfig({
4084
4084
  openocean: "telos",
4085
4085
  icecreamswap: true,
4086
4086
  },
4087
- bridges: {},
4087
+ bridges: {
4088
+ stargate: {
4089
+ endpointID: 30199,
4090
+ tokens: [
4091
+ {
4092
+ name: "ETH",
4093
+ type: "OFT",
4094
+ id: 13,
4095
+ address: "0xA272fFe20cFfe769CdFc4b63088DCD2C82a2D8F9"
4096
+ }, {
4097
+ name: "USDC",
4098
+ type: "OFT",
4099
+ id: 1,
4100
+ address: "0x2086f755A6d9254045C257ea3d382ef854849B0f"
4101
+ }, {
4102
+ name: "USDT",
4103
+ type: "OFT",
4104
+ id: 2,
4105
+ address: "0x3a1293Bdb83bBbDd5Ebf4fAc96605aD2021BbC0f"
4106
+ }
4107
+ ]
4108
+ }
4109
+ },
4088
4110
  morpho: {},
4089
4111
  oracles: {},
4090
4112
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
@@ -6326,7 +6326,17 @@ declare const telos: Readonly<{
6326
6326
  openocean: string;
6327
6327
  icecreamswap: true;
6328
6328
  };
6329
- bridges: {};
6329
+ bridges: {
6330
+ stargate: {
6331
+ endpointID: number;
6332
+ tokens: {
6333
+ name: string;
6334
+ type: string;
6335
+ id: number;
6336
+ address: string;
6337
+ }[];
6338
+ };
6339
+ };
6330
6340
  morpho: {};
6331
6341
  oracles: {};
6332
6342
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
@@ -7296,7 +7306,7 @@ interface Bridges {
7296
7306
  stargate?: {
7297
7307
  endpointID: number;
7298
7308
  blockConfirmations?: number;
7299
- tokens?: {
7309
+ tokens: {
7300
7310
  name: string;
7301
7311
  type?: string; // OFT or POOL, if missing, assume is POOL
7302
7312
  id: number; // used to determine possible routes. pool id
@@ -13885,7 +13895,17 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13885
13895
  openocean: string;
13886
13896
  icecreamswap: true;
13887
13897
  };
13888
- bridges: {};
13898
+ bridges: {
13899
+ stargate: {
13900
+ endpointID: number;
13901
+ tokens: {
13902
+ name: string;
13903
+ type: string;
13904
+ id: number;
13905
+ address: string;
13906
+ }[];
13907
+ };
13908
+ };
13889
13909
  morpho: {};
13890
13910
  oracles: {};
13891
13911
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
@@ -6326,7 +6326,17 @@ declare const telos: Readonly<{
6326
6326
  openocean: string;
6327
6327
  icecreamswap: true;
6328
6328
  };
6329
- bridges: {};
6329
+ bridges: {
6330
+ stargate: {
6331
+ endpointID: number;
6332
+ tokens: {
6333
+ name: string;
6334
+ type: string;
6335
+ id: number;
6336
+ address: string;
6337
+ }[];
6338
+ };
6339
+ };
6330
6340
  morpho: {};
6331
6341
  oracles: {};
6332
6342
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
@@ -7296,7 +7306,7 @@ interface Bridges {
7296
7306
  stargate?: {
7297
7307
  endpointID: number;
7298
7308
  blockConfirmations?: number;
7299
- tokens?: {
7309
+ tokens: {
7300
7310
  name: string;
7301
7311
  type?: string; // OFT or POOL, if missing, assume is POOL
7302
7312
  id: number; // used to determine possible routes. pool id
@@ -13885,7 +13895,17 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13885
13895
  openocean: string;
13886
13896
  icecreamswap: true;
13887
13897
  };
13888
- bridges: {};
13898
+ bridges: {
13899
+ stargate: {
13900
+ endpointID: number;
13901
+ tokens: {
13902
+ name: string;
13903
+ type: string;
13904
+ id: number;
13905
+ address: string;
13906
+ }[];
13907
+ };
13908
+ };
13889
13909
  morpho: {};
13890
13910
  oracles: {};
13891
13911
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
@@ -6326,7 +6326,17 @@ declare const telos: Readonly<{
6326
6326
  openocean: string;
6327
6327
  icecreamswap: true;
6328
6328
  };
6329
- bridges: {};
6329
+ bridges: {
6330
+ stargate: {
6331
+ endpointID: number;
6332
+ tokens: {
6333
+ name: string;
6334
+ type: string;
6335
+ id: number;
6336
+ address: string;
6337
+ }[];
6338
+ };
6339
+ };
6330
6340
  morpho: {};
6331
6341
  oracles: {};
6332
6342
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
@@ -7296,7 +7306,7 @@ interface Bridges {
7296
7306
  stargate?: {
7297
7307
  endpointID: number;
7298
7308
  blockConfirmations?: number;
7299
- tokens?: {
7309
+ tokens: {
7300
7310
  name: string;
7301
7311
  type?: string; // OFT or POOL, if missing, assume is POOL
7302
7312
  id: number; // used to determine possible routes. pool id
@@ -13885,7 +13895,17 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13885
13895
  openocean: string;
13886
13896
  icecreamswap: true;
13887
13897
  };
13888
- bridges: {};
13898
+ bridges: {
13899
+ stargate: {
13900
+ endpointID: number;
13901
+ tokens: {
13902
+ name: string;
13903
+ type: string;
13904
+ id: number;
13905
+ address: string;
13906
+ }[];
13907
+ };
13908
+ };
13889
13909
  morpho: {};
13890
13910
  oracles: {};
13891
13911
  initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gfxlabs/oku-chains",
3
- "version": "1.1.200",
3
+ "version": "1.1.201",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index-mjs.js",