@qidao/sdk 5.1.77 → 5.1.78

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.
@@ -40,7 +40,8 @@ export declare enum ChainId {
40
40
  CELO = 42220,
41
41
  AURORA = 1313161554,
42
42
  BOBA = 288,
43
- CUBE = 1818
43
+ CUBE = 1818,
44
+ CANTO = 7700
44
45
  }
45
46
  export declare enum TradeType {
46
47
  EXACT_INPUT = 0,
@@ -30,6 +30,7 @@ export declare class Currency {
30
30
  static readonly AURORA: Currency;
31
31
  static readonly BOBA: Currency;
32
32
  static readonly CUBE: Currency;
33
+ static readonly CANTO: Currency;
33
34
  static readonly NATIVE: {
34
35
  1: Currency;
35
36
  5: Currency;
@@ -63,6 +64,7 @@ export declare class Currency {
63
64
  1313161554: Currency;
64
65
  288: Currency;
65
66
  1818: Currency;
67
+ 7700: Currency;
66
68
  };
67
69
  /**
68
70
  * Constructs an instance of the base class `Currency`. The only instance of the base class `Currency` is `Currency.ETHER`.
@@ -57,4 +57,5 @@ export declare const WNATIVE: {
57
57
  1313161554: Token;
58
58
  288: Token;
59
59
  1818: Token;
60
+ 7700: Token;
60
61
  };
@@ -1,5 +1,5 @@
1
- import { ChainId } from "./constants";
2
- import { Token } from "./entities";
1
+ import { ChainId } from './constants';
2
+ import { Token } from './entities';
3
3
  type ChainTokenMap = {
4
4
  readonly [chainId in ChainId]?: Token;
5
5
  };
@@ -127618,5 +127618,6 @@ export declare const COLLATERALS: {
127618
127618
  [ChainId.IOTEX]: typeof EMPTY_COLLATERALS;
127619
127619
  [ChainId.KAVA]: typeof EMPTY_COLLATERALS;
127620
127620
  [ChainId.KLAYTN]: typeof EMPTY_COLLATERALS;
127621
+ [ChainId.CANTO]: typeof EMPTY_COLLATERALS;
127621
127622
  };
127622
127623
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@qidao/sdk",
3
3
  "license": "MIT",
4
- "version": "5.1.77",
4
+ "version": "5.1.78",
5
5
  "description": "🛠 An SDK for building applications on top of QiDao Protocol.",
6
6
  "main": "./dist/index.js",
7
7
  "umd:main": "dist/index.umd.js",