@0xsequence/abi 1.5.0 → 1.6.1
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.
|
@@ -308,6 +308,20 @@ const abi$3 = [{
|
|
|
308
308
|
}],
|
|
309
309
|
payable: true,
|
|
310
310
|
stateMutability: 'payable'
|
|
311
|
+
}, {
|
|
312
|
+
type: 'function',
|
|
313
|
+
name: 'setExtraImageHash',
|
|
314
|
+
constant: false,
|
|
315
|
+
inputs: [{
|
|
316
|
+
type: 'bytes32',
|
|
317
|
+
name: 'imageHash'
|
|
318
|
+
}, {
|
|
319
|
+
type: 'uint256',
|
|
320
|
+
name: 'expiration'
|
|
321
|
+
}],
|
|
322
|
+
outputs: [],
|
|
323
|
+
payable: false,
|
|
324
|
+
stateMutability: 'nonpayable'
|
|
311
325
|
}];
|
|
312
326
|
|
|
313
327
|
var mainModule = /*#__PURE__*/Object.freeze({
|
|
@@ -308,6 +308,20 @@ const abi$3 = [{
|
|
|
308
308
|
}],
|
|
309
309
|
payable: true,
|
|
310
310
|
stateMutability: 'payable'
|
|
311
|
+
}, {
|
|
312
|
+
type: 'function',
|
|
313
|
+
name: 'setExtraImageHash',
|
|
314
|
+
constant: false,
|
|
315
|
+
inputs: [{
|
|
316
|
+
type: 'bytes32',
|
|
317
|
+
name: 'imageHash'
|
|
318
|
+
}, {
|
|
319
|
+
type: 'uint256',
|
|
320
|
+
name: 'expiration'
|
|
321
|
+
}],
|
|
322
|
+
outputs: [],
|
|
323
|
+
payable: false,
|
|
324
|
+
stateMutability: 'nonpayable'
|
|
311
325
|
}];
|
|
312
326
|
|
|
313
327
|
var mainModule = /*#__PURE__*/Object.freeze({
|
|
@@ -304,6 +304,20 @@ const abi$3 = [{
|
|
|
304
304
|
}],
|
|
305
305
|
payable: true,
|
|
306
306
|
stateMutability: 'payable'
|
|
307
|
+
}, {
|
|
308
|
+
type: 'function',
|
|
309
|
+
name: 'setExtraImageHash',
|
|
310
|
+
constant: false,
|
|
311
|
+
inputs: [{
|
|
312
|
+
type: 'bytes32',
|
|
313
|
+
name: 'imageHash'
|
|
314
|
+
}, {
|
|
315
|
+
type: 'uint256',
|
|
316
|
+
name: 'expiration'
|
|
317
|
+
}],
|
|
318
|
+
outputs: [],
|
|
319
|
+
payable: false,
|
|
320
|
+
stateMutability: 'nonpayable'
|
|
307
321
|
}];
|
|
308
322
|
|
|
309
323
|
var mainModule = /*#__PURE__*/Object.freeze({
|
|
@@ -37,4 +37,15 @@ export declare const abi: ({
|
|
|
37
37
|
stateMutability: string;
|
|
38
38
|
constant?: undefined;
|
|
39
39
|
outputs?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
type: string;
|
|
42
|
+
name: string;
|
|
43
|
+
constant: boolean;
|
|
44
|
+
inputs: {
|
|
45
|
+
type: string;
|
|
46
|
+
name: string;
|
|
47
|
+
}[];
|
|
48
|
+
outputs: never[];
|
|
49
|
+
payable: boolean;
|
|
50
|
+
stateMutability: string;
|
|
40
51
|
})[];
|
package/package.json
CHANGED
package/src/wallet/mainModule.ts
CHANGED
|
@@ -136,5 +136,23 @@ export const abi = [
|
|
|
136
136
|
],
|
|
137
137
|
payable: true,
|
|
138
138
|
stateMutability: 'payable'
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
type: 'function',
|
|
142
|
+
name: 'setExtraImageHash',
|
|
143
|
+
constant: false,
|
|
144
|
+
inputs: [
|
|
145
|
+
{
|
|
146
|
+
type: 'bytes32',
|
|
147
|
+
name: 'imageHash'
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'uint256',
|
|
151
|
+
name: 'expiration'
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
outputs: [],
|
|
155
|
+
payable: false,
|
|
156
|
+
stateMutability: 'nonpayable'
|
|
139
157
|
}
|
|
140
158
|
]
|