@gitmyabi/usdt 1.0.13 → 1.0.14
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 +6 -6
- package/contracts/ERC1967Proxy_json.d.ts +169 -0
- package/contracts/ERC1967Proxy_json.js +221 -0
- package/contracts/ERC1967Proxy_json.ts +251 -0
- package/contracts/{EssentialToken_json.d.ts → USDTProxy_json.d.ts} +282 -157
- package/contracts/{EssentialToken_json.js → USDTProxy_json.js} +342 -169
- package/contracts/{EssentialToken_json.ts → USDTProxy_json.ts} +382 -209
- 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 { ERC1967Proxy_jsonAbi, ERC1967Proxy_json } from './ERC1967Proxy_json';
|
|
2
|
+
export type { ERC1967Proxy_jsonAbi as ERC1967Proxy_jsonAbiType, ERC1967Proxy_jsonContract } from './ERC1967Proxy_json';
|
|
3
|
+
export { USDTProxy_jsonAbi, USDTProxy_json } from './USDTProxy_json';
|
|
4
|
+
export type { USDTProxy_jsonAbi as USDTProxy_jsonAbiType, USDTProxy_jsonContract } from './USDTProxy_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.USDTProxy_json = exports.USDTProxy_jsonAbi = exports.ERC1967Proxy_json = exports.ERC1967Proxy_jsonAbi = void 0;
|
|
4
4
|
// Auto-generated exports for all contracts
|
|
5
|
-
var
|
|
6
|
-
Object.defineProperty(exports, "
|
|
7
|
-
Object.defineProperty(exports, "
|
|
5
|
+
var ERC1967Proxy_json_1 = require("./ERC1967Proxy_json");
|
|
6
|
+
Object.defineProperty(exports, "ERC1967Proxy_jsonAbi", { enumerable: true, get: function () { return ERC1967Proxy_json_1.ERC1967Proxy_jsonAbi; } });
|
|
7
|
+
Object.defineProperty(exports, "ERC1967Proxy_json", { enumerable: true, get: function () { return ERC1967Proxy_json_1.ERC1967Proxy_json; } });
|
|
8
|
+
var USDTProxy_json_1 = require("./USDTProxy_json");
|
|
9
|
+
Object.defineProperty(exports, "USDTProxy_jsonAbi", { enumerable: true, get: function () { return USDTProxy_json_1.USDTProxy_jsonAbi; } });
|
|
10
|
+
Object.defineProperty(exports, "USDTProxy_json", { enumerable: true, get: function () { return USDTProxy_json_1.USDTProxy_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 { ERC1967Proxy_jsonAbi, ERC1967Proxy_json } from './ERC1967Proxy_json';
|
|
3
|
+
export type { ERC1967Proxy_jsonAbi as ERC1967Proxy_jsonAbiType, ERC1967Proxy_jsonContract } from './ERC1967Proxy_json';
|
|
4
|
+
export { USDTProxy_jsonAbi, USDTProxy_json } from './USDTProxy_json';
|
|
5
|
+
export type { USDTProxy_jsonAbi as USDTProxy_jsonAbiType, USDTProxy_jsonContract } from './USDTProxy_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
|
|
3
|
+
"version": "1.0.14",
|
|
4
|
+
"description": "Auto-generated TypeScript type bindings for USDT (build etherscan-usdt-4725775d-1785793958422, commit cf642dd, 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": "cf642dd"
|
|
43
43
|
}
|