@gitmyabi/gnosissafe 1.0.21 → 1.0.23
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/{Proxy_json.d.ts → GnosisSafeProxy_json.d.ts} +12 -14
- package/contracts/{Proxy_json.js → GnosisSafeProxy_json.js} +10 -12
- package/contracts/{Proxy_json.ts → GnosisSafeProxy_json.ts} +14 -16
- package/contracts/GnosisSafe_json.d.ts +243 -201
- package/contracts/GnosisSafe_json.js +310 -205
- package/contracts/GnosisSafe_json.ts +323 -238
- 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,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export type {
|
|
1
|
+
export { GnosisSafeProxy_jsonAbi, GnosisSafeProxy_json } from './GnosisSafeProxy_json';
|
|
2
|
+
export type { GnosisSafeProxy_jsonAbi as GnosisSafeProxy_jsonAbiType, GnosisSafeProxy_jsonContract } from './GnosisSafeProxy_json';
|
|
3
3
|
export { GnosisSafe_jsonAbi, GnosisSafe_json } from './GnosisSafe_json';
|
|
4
4
|
export type { GnosisSafe_jsonAbi as GnosisSafe_jsonAbiType, GnosisSafe_jsonContract } from './GnosisSafe_json';
|
package/contracts/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GnosisSafe_json = exports.GnosisSafe_jsonAbi = exports.
|
|
3
|
+
exports.GnosisSafe_json = exports.GnosisSafe_jsonAbi = exports.GnosisSafeProxy_json = exports.GnosisSafeProxy_jsonAbi = void 0;
|
|
4
4
|
// Auto-generated exports for all contracts
|
|
5
|
-
var
|
|
6
|
-
Object.defineProperty(exports, "
|
|
7
|
-
Object.defineProperty(exports, "
|
|
5
|
+
var GnosisSafeProxy_json_1 = require("./GnosisSafeProxy_json");
|
|
6
|
+
Object.defineProperty(exports, "GnosisSafeProxy_jsonAbi", { enumerable: true, get: function () { return GnosisSafeProxy_json_1.GnosisSafeProxy_jsonAbi; } });
|
|
7
|
+
Object.defineProperty(exports, "GnosisSafeProxy_json", { enumerable: true, get: function () { return GnosisSafeProxy_json_1.GnosisSafeProxy_json; } });
|
|
8
8
|
var GnosisSafe_json_1 = require("./GnosisSafe_json");
|
|
9
9
|
Object.defineProperty(exports, "GnosisSafe_jsonAbi", { enumerable: true, get: function () { return GnosisSafe_json_1.GnosisSafe_jsonAbi; } });
|
|
10
10
|
Object.defineProperty(exports, "GnosisSafe_json", { enumerable: true, get: function () { return GnosisSafe_json_1.GnosisSafe_json; } });
|
package/contracts/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Auto-generated exports for all contracts
|
|
2
|
-
export {
|
|
3
|
-
export type {
|
|
2
|
+
export { GnosisSafeProxy_jsonAbi, GnosisSafeProxy_json } from './GnosisSafeProxy_json';
|
|
3
|
+
export type { GnosisSafeProxy_jsonAbi as GnosisSafeProxy_jsonAbiType, GnosisSafeProxy_jsonContract } from './GnosisSafeProxy_json';
|
|
4
4
|
export { GnosisSafe_jsonAbi, GnosisSafe_json } from './GnosisSafe_json';
|
|
5
5
|
export type { GnosisSafe_jsonAbi as GnosisSafe_jsonAbiType, GnosisSafe_jsonContract } from './GnosisSafe_json';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitmyabi/gnosissafe",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Auto-generated TypeScript type bindings for GnosisSafe (build etherscan-gnosissafe-
|
|
3
|
+
"version": "1.0.23",
|
|
4
|
+
"description": "Auto-generated TypeScript type bindings for GnosisSafe (build etherscan-gnosissafe-238abc9f-1786055199713, commit 2f252bd, 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/gnosissafe"
|
|
40
40
|
},
|
|
41
41
|
"branch": "etherscan",
|
|
42
|
-
"shortHash": "
|
|
42
|
+
"shortHash": "2f252bd"
|
|
43
43
|
}
|