@cryptorubic/core 0.14.0-alpha.solana-gas.12 → 1.0.0-alpha.no-sdk.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptorubic/core",
3
- "version": "0.14.0-alpha.solana-gas.12",
3
+ "version": "1.0.0-alpha.no-sdk.1",
4
4
  "dependencies": {
5
5
  "bignumber.js": "9.1.2",
6
6
  "tslib": "*"
@@ -2,7 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ForeignBlacklistInterface = void 0;
4
4
  class ForeignBlacklistInterface {
5
- lifi;
6
- rango;
7
5
  }
8
6
  exports.ForeignBlacklistInterface = ForeignBlacklistInterface;
@@ -5,7 +5,6 @@ const bignumber_js_1 = require("bignumber.js");
5
5
  const price_token_1 = require("./price-token");
6
6
  const token_1 = require("./token");
7
7
  class PriceTokenAmount extends price_token_1.PriceToken {
8
- _weiAmount;
9
8
  get weiAmount() {
10
9
  return this._weiAmount;
11
10
  }
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PriceToken = void 0;
4
4
  const token_1 = require("./token");
5
5
  class PriceToken extends token_1.Token {
6
- _price;
7
6
  get price() {
8
7
  return this._price;
9
8
  }
@@ -4,7 +4,6 @@ exports.TokenAmount = void 0;
4
4
  const token_1 = require("./token");
5
5
  const bignumber_js_1 = require("bignumber.js");
6
6
  class TokenAmount extends token_1.Token {
7
- _weiAmount;
8
7
  get weiAmount() {
9
8
  return this._weiAmount;
10
9
  }
@@ -11,12 +11,6 @@ class Token {
11
11
  static tokensToAddresses(tokens) {
12
12
  return tokens.map((token) => token.address);
13
13
  }
14
- logger;
15
- blockchain;
16
- address;
17
- name;
18
- symbol;
19
- decimals;
20
14
  get isNative() {
21
15
  const nativeAddress = blockchains_info_1.BlockchainsInfo.isSolanaBlockchainName(this.blockchain)
22
16
  ? 'So11111111111111111111111111111111111111111'