@cityofzion/bs-neo-legacy 0.7.0 → 0.7.2

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.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './BSNeoLegacy';
2
- export * from './BDSNeoLegacy';
3
- export * from './explorer';
2
+ export * from './DoraBDSNeoLegacy';
3
+ export * from './constants';
4
+ export * from './CryptoCompareEDSNeoLegacy';
package/dist/index.js CHANGED
@@ -15,5 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./BSNeoLegacy"), exports);
18
- __exportStar(require("./BDSNeoLegacy"), exports);
19
- __exportStar(require("./explorer"), exports);
18
+ __exportStar(require("./DoraBDSNeoLegacy"), exports);
19
+ __exportStar(require("./constants"), exports);
20
+ __exportStar(require("./CryptoCompareEDSNeoLegacy"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cityofzion/bs-neo-legacy",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Coz",
@@ -10,8 +10,8 @@
10
10
  "test": "jest --config jest.config.ts"
11
11
  },
12
12
  "dependencies": {
13
- "@cityofzion/blockchain-service": "0.7.0",
14
- "@cityofzion/bs-asteroid-sdk": "0.7.0",
13
+ "@cityofzion/blockchain-service": "0.7.2",
14
+ "@cityofzion/bs-asteroid-sdk": "0.7.2",
15
15
  "@cityofzion/dora-ts": "0.0.11",
16
16
  "@cityofzion/neon-js": "4.8.3"
17
17
  },
@@ -149,7 +149,7 @@ export class DoraBDSNeoLegacy implements BlockchainDataService, BDSClaimable {
149
149
  } catch {}
150
150
 
151
151
  return {
152
- amount: (Number(balance.balance) / 10 ** token.decimals).toFixed(token.decimals),
152
+ amount: Number(balance.balance).toFixed(token.decimals),
153
153
  token,
154
154
  }
155
155
  })
@@ -1,4 +0,0 @@
1
- ./src/BSNeoLegacy.ts:87:8 - warning TransactionIntentResponse is referenced by BSNeoLegacy.setTypeIntents.setTypeIntents but not included in the documentation.
2
-
3
- 87 type TransactionIntentResponse = IntentTransactionParam & { type: 'native' | 'nep5' }
4
-