@bolt-liquidity-hq/sui-client 0.1.0-beta.16 → 0.1.0-beta.17

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/index.d.cts CHANGED
@@ -262,6 +262,8 @@ declare const PoolFeesInfoStruct: _mysten_bcs.BcsStruct<{
262
262
  swap_fee_pct: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
263
263
  lp_withdrawal_fee_pct: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
264
264
  lp_fee_pct: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
265
+ max_dynamic_fee: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
266
+ limit_ratio: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
265
267
  }, string>;
266
268
  type PoolFeesInfoStructOutput = BcsParsed<typeof PoolFeesInfoStruct>;
267
269
  declare const ProtocolFeesInfoStruct: _mysten_bcs.BcsStruct<{
package/dist/index.d.ts CHANGED
@@ -262,6 +262,8 @@ declare const PoolFeesInfoStruct: _mysten_bcs.BcsStruct<{
262
262
  swap_fee_pct: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
263
263
  lp_withdrawal_fee_pct: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
264
264
  lp_fee_pct: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
265
+ max_dynamic_fee: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
266
+ limit_ratio: _mysten_bcs.BcsType<string, string | number | bigint, "u64">;
265
267
  }, string>;
266
268
  type PoolFeesInfoStructOutput = BcsParsed<typeof PoolFeesInfoStruct>;
267
269
  declare const ProtocolFeesInfoStruct: _mysten_bcs.BcsStruct<{
package/dist/index.js CHANGED
@@ -42,7 +42,7 @@ var MainnetAssets = {
42
42
  chainId: "101",
43
43
  denom: "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
44
44
  decimals: 6,
45
- logo: "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png",
45
+ logo: "https://raw.githubusercontent.com/cosmos/chain-registry/refs/heads/master/_non-cosmos/ethereum/images/usdc.png",
46
46
  coingeckoId: "usd-coin"
47
47
  }
48
48
  };
@@ -80,7 +80,7 @@ var TestnetAssets = {
80
80
  chainId: "103",
81
81
  denom: "0xa1ec7fc00a6f40db9693ad1415d0c193ad3906494428cf252621037bd7117e29::usdc::USDC",
82
82
  decimals: 6,
83
- logo: "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png",
83
+ logo: "https://raw.githubusercontent.com/cosmos/chain-registry/refs/heads/master/_non-cosmos/ethereum/images/usdc.png",
84
84
  coingeckoId: "usd-coin"
85
85
  },
86
86
  "::test_btc::TEST_BTC": {
@@ -876,7 +876,9 @@ var PoolInfoStruct = bcs6.struct("PoolInfo", {
876
876
  var PoolFeesInfoStruct = bcs6.struct("PoolFeesInfo", {
877
877
  swap_fee_pct: bcs6.u64(),
878
878
  lp_withdrawal_fee_pct: bcs6.u64(),
879
- lp_fee_pct: bcs6.u64()
879
+ lp_fee_pct: bcs6.u64(),
880
+ max_dynamic_fee: bcs6.u64(),
881
+ limit_ratio: bcs6.u64()
880
882
  });
881
883
  var ProtocolFeesInfoStruct = bcs6.struct("ProtocolFeesInfo", {
882
884
  swap_fee_pct: bcs6.u64(),