@gitmyabi/usdt 1.0.19 → 1.0.20
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 +3 -3
- package/contracts/{USDToken_json.d.ts → SimpleUSDTToken_json.d.ts} +36 -320
- package/contracts/{USDToken_json.js → SimpleUSDTToken_json.js} +46 -333
- package/contracts/{USDToken_json.ts → SimpleUSDTToken_json.ts} +50 -434
- package/contracts/index.d.ts +2 -2
- package/contracts/index.js +4 -4
- package/contracts/index.ts +2 -2
- package/package.json +3 -3
package/contracts/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export type {
|
|
1
|
+
export { SimpleUSDTToken_jsonAbi, SimpleUSDTToken_json } from './SimpleUSDTToken_json';
|
|
2
|
+
export type { SimpleUSDTToken_jsonAbi as SimpleUSDTToken_jsonAbiType, SimpleUSDTToken_jsonContract } from './SimpleUSDTToken_json';
|
package/contracts/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.SimpleUSDTToken_json = exports.SimpleUSDTToken_jsonAbi = void 0;
|
|
4
4
|
// Auto-generated exports for all contracts
|
|
5
|
-
var
|
|
6
|
-
Object.defineProperty(exports, "
|
|
7
|
-
Object.defineProperty(exports, "
|
|
5
|
+
var SimpleUSDTToken_json_1 = require("./SimpleUSDTToken_json");
|
|
6
|
+
Object.defineProperty(exports, "SimpleUSDTToken_jsonAbi", { enumerable: true, get: function () { return SimpleUSDTToken_json_1.SimpleUSDTToken_jsonAbi; } });
|
|
7
|
+
Object.defineProperty(exports, "SimpleUSDTToken_json", { enumerable: true, get: function () { return SimpleUSDTToken_json_1.SimpleUSDTToken_json; } });
|
package/contracts/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// Auto-generated exports for all contracts
|
|
2
|
-
export {
|
|
3
|
-
export type {
|
|
2
|
+
export { SimpleUSDTToken_jsonAbi, SimpleUSDTToken_json } from './SimpleUSDTToken_json';
|
|
3
|
+
export type { SimpleUSDTToken_jsonAbi as SimpleUSDTToken_jsonAbiType, SimpleUSDTToken_jsonContract } from './SimpleUSDTToken_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.20",
|
|
4
|
+
"description": "Auto-generated TypeScript type bindings for USDT (build etherscan-usdt-680fdf1e-1787033882968, commit e2ee137, 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": "e2ee137"
|
|
43
43
|
}
|