@gitmyabi/usdt 1.0.3 → 1.0.5
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/README.md +5 -5
- package/contracts/BridgeToken_json.d.ts +169 -0
- package/contracts/BridgeToken_json.js +221 -0
- package/contracts/BridgeToken_json.ts +251 -0
- package/contracts/{TetherUSD_json.d.ts → TokenImplementation_json.d.ts} +266 -145
- package/contracts/{TetherUSD_json.js → TokenImplementation_json.js} +319 -189
- package/contracts/{TetherUSD_json.ts → TokenImplementation_json.ts} +349 -193
- package/contracts/index.d.ts +4 -2
- package/contracts/index.js +7 -4
- package/contracts/index.ts +4 -2
- package/package.json +3 -3
package/contracts/index.d.ts
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export type {
|
|
1
|
+
export { BridgeToken_jsonAbi, BridgeToken_json } from './BridgeToken_json';
|
|
2
|
+
export type { BridgeToken_jsonAbi as BridgeToken_jsonAbiType, BridgeToken_jsonContract } from './BridgeToken_json';
|
|
3
|
+
export { TokenImplementation_jsonAbi, TokenImplementation_json } from './TokenImplementation_json';
|
|
4
|
+
export type { TokenImplementation_jsonAbi as TokenImplementation_jsonAbiType, TokenImplementation_jsonContract } from './TokenImplementation_json';
|
package/contracts/index.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.TokenImplementation_json = exports.TokenImplementation_jsonAbi = exports.BridgeToken_json = exports.BridgeToken_jsonAbi = void 0;
|
|
4
4
|
// Auto-generated exports for all contracts
|
|
5
|
-
var
|
|
6
|
-
Object.defineProperty(exports, "
|
|
7
|
-
Object.defineProperty(exports, "
|
|
5
|
+
var BridgeToken_json_1 = require("./BridgeToken_json");
|
|
6
|
+
Object.defineProperty(exports, "BridgeToken_jsonAbi", { enumerable: true, get: function () { return BridgeToken_json_1.BridgeToken_jsonAbi; } });
|
|
7
|
+
Object.defineProperty(exports, "BridgeToken_json", { enumerable: true, get: function () { return BridgeToken_json_1.BridgeToken_json; } });
|
|
8
|
+
var TokenImplementation_json_1 = require("./TokenImplementation_json");
|
|
9
|
+
Object.defineProperty(exports, "TokenImplementation_jsonAbi", { enumerable: true, get: function () { return TokenImplementation_json_1.TokenImplementation_jsonAbi; } });
|
|
10
|
+
Object.defineProperty(exports, "TokenImplementation_json", { enumerable: true, get: function () { return TokenImplementation_json_1.TokenImplementation_json; } });
|
package/contracts/index.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
// Auto-generated exports for all contracts
|
|
2
|
-
export {
|
|
3
|
-
export type {
|
|
2
|
+
export { BridgeToken_jsonAbi, BridgeToken_json } from './BridgeToken_json';
|
|
3
|
+
export type { BridgeToken_jsonAbi as BridgeToken_jsonAbiType, BridgeToken_jsonContract } from './BridgeToken_json';
|
|
4
|
+
export { TokenImplementation_jsonAbi, TokenImplementation_json } from './TokenImplementation_json';
|
|
5
|
+
export type { TokenImplementation_jsonAbi as TokenImplementation_jsonAbiType, TokenImplementation_jsonContract } from './TokenImplementation_json';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitmyabi/usdt",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Auto-generated TypeScript type bindings for USDT (build etherscan-usdt-
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "Auto-generated TypeScript type bindings for USDT (build etherscan-usdt-1cdd2eab-1785352507010, commit 3642a24, branch etherscan)",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"url": "https://github.com/etherscan/usdt"
|
|
40
40
|
},
|
|
41
41
|
"branch": "etherscan",
|
|
42
|
-
"shortHash": "
|
|
42
|
+
"shortHash": "3642a24"
|
|
43
43
|
}
|