@gitmyabi/safe 1.0.4 → 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 +6 -6
- package/contracts/SafeProxy_json.d.ts +87 -0
- package/contracts/SafeProxy_json.js +103 -0
- package/contracts/SafeProxy_json.ts +132 -0
- package/contracts/Safe_json.d.ts +1588 -0
- package/contracts/Safe_json.js +1761 -0
- package/contracts/Safe_json.ts +2127 -0
- 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/SafeToken_json.d.ts +0 -798
- package/contracts/SafeToken_json.js +0 -819
- package/contracts/SafeToken_json.ts +0 -1063
package/contracts/index.d.ts
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export type {
|
|
1
|
+
export { SafeProxy_jsonAbi, SafeProxy_json } from './SafeProxy_json';
|
|
2
|
+
export type { SafeProxy_jsonAbi as SafeProxy_jsonAbiType, SafeProxy_jsonContract } from './SafeProxy_json';
|
|
3
|
+
export { Safe_jsonAbi, Safe_json } from './Safe_json';
|
|
4
|
+
export type { Safe_jsonAbi as Safe_jsonAbiType, Safe_jsonContract } from './Safe_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.Safe_json = exports.Safe_jsonAbi = exports.SafeProxy_json = exports.SafeProxy_jsonAbi = void 0;
|
|
4
4
|
// Auto-generated exports for all contracts
|
|
5
|
-
var
|
|
6
|
-
Object.defineProperty(exports, "
|
|
7
|
-
Object.defineProperty(exports, "
|
|
5
|
+
var SafeProxy_json_1 = require("./SafeProxy_json");
|
|
6
|
+
Object.defineProperty(exports, "SafeProxy_jsonAbi", { enumerable: true, get: function () { return SafeProxy_json_1.SafeProxy_jsonAbi; } });
|
|
7
|
+
Object.defineProperty(exports, "SafeProxy_json", { enumerable: true, get: function () { return SafeProxy_json_1.SafeProxy_json; } });
|
|
8
|
+
var Safe_json_1 = require("./Safe_json");
|
|
9
|
+
Object.defineProperty(exports, "Safe_jsonAbi", { enumerable: true, get: function () { return Safe_json_1.Safe_jsonAbi; } });
|
|
10
|
+
Object.defineProperty(exports, "Safe_json", { enumerable: true, get: function () { return Safe_json_1.Safe_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 { SafeProxy_jsonAbi, SafeProxy_json } from './SafeProxy_json';
|
|
3
|
+
export type { SafeProxy_jsonAbi as SafeProxy_jsonAbiType, SafeProxy_jsonContract } from './SafeProxy_json';
|
|
4
|
+
export { Safe_jsonAbi, Safe_json } from './Safe_json';
|
|
5
|
+
export type { Safe_jsonAbi as Safe_jsonAbiType, Safe_jsonContract } from './Safe_json';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitmyabi/safe",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Auto-generated TypeScript type bindings for
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "Auto-generated TypeScript type bindings for Safe (build etherscan-safe-894e031a-1785479836206, commit eb40178, 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/safe"
|
|
40
40
|
},
|
|
41
41
|
"branch": "etherscan",
|
|
42
|
-
"shortHash": "
|
|
42
|
+
"shortHash": "eb40178"
|
|
43
43
|
}
|