@tatumio/algo 2.0.1-alpha.372 → 2.0.1-alpha.373
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +6 -6
- package/src/index.d.ts +5 -2
- package/src/index.js +3 -0
- package/src/index.js.map +1 -1
package/package.json
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tatumio/algo",
|
3
|
-
"version": "2.0.1-alpha.
|
3
|
+
"version": "2.0.1-alpha.373",
|
4
4
|
"type": "commonjs",
|
5
5
|
"license": "MIT",
|
6
6
|
"main": "./src/index.js",
|
7
7
|
"types": "./src/index.d.ts",
|
8
8
|
"dependencies": {
|
9
|
-
"@tatumio/shared-testing-common": "2.0.1-alpha.
|
10
|
-
"@tatumio/api-client": "2.0.1-alpha.
|
9
|
+
"@tatumio/shared-testing-common": "2.0.1-alpha.373",
|
10
|
+
"@tatumio/api-client": "2.0.1-alpha.373",
|
11
11
|
"axios": "^0.26.0",
|
12
12
|
"form-data": "^4.0.0",
|
13
|
-
"@tatumio/shared-core": "2.0.1-alpha.
|
14
|
-
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.
|
13
|
+
"@tatumio/shared-core": "2.0.1-alpha.373",
|
14
|
+
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.373",
|
15
15
|
"bignumber.js": "^9.0.2",
|
16
16
|
"lodash": "^4.17.21",
|
17
|
-
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.
|
17
|
+
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.373",
|
18
18
|
"algosdk": "^1.13.1",
|
19
19
|
"base32.js": "^0.1.0",
|
20
20
|
"url-parse": "^1.5.10",
|
package/src/index.d.ts
CHANGED
@@ -1,7 +1,10 @@
|
|
1
|
+
export * from './lib/algo.sdk';
|
2
|
+
export * from './lib/services';
|
3
|
+
export * from './lib/services/algo.wallet';
|
4
|
+
export * from './lib/services/algo.tx';
|
5
|
+
export * from './lib/services/algo.web';
|
1
6
|
export declare type AlgoApiCallsType = {
|
2
7
|
getBlockchainAccountBalance: (account: string) => Promise<{
|
3
8
|
balance?: number;
|
4
9
|
}>;
|
5
10
|
};
|
6
|
-
export * from './lib/algo.sdk';
|
7
|
-
export * from './lib/services';
|
package/src/index.js
CHANGED
@@ -3,4 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
4
4
|
tslib_1.__exportStar(require("./lib/algo.sdk"), exports);
|
5
5
|
tslib_1.__exportStar(require("./lib/services"), exports);
|
6
|
+
tslib_1.__exportStar(require("./lib/services/algo.wallet"), exports);
|
7
|
+
tslib_1.__exportStar(require("./lib/services/algo.tx"), exports);
|
8
|
+
tslib_1.__exportStar(require("./lib/services/algo.web"), exports);
|
6
9
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/blockchain/algo/src/index.ts"],"names":[],"mappings":";;;
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/blockchain/algo/src/index.ts"],"names":[],"mappings":";;;AAAA,yDAA8B;AAC9B,yDAA8B;AAC9B,qEAA0C;AAC1C,iEAAsC;AACtC,kEAAuC"}
|