@ercworldio/blockchain-shared 1.0.3-dev.4-PROJ-1448.4 → 1.0.3-dev.4-PROJ-1452.0
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/build/contracts/Escrow.d.ts +0 -56
- package/build/contracts/Escrow.d.ts.map +1 -1
- package/build/contracts/Escrow.js +64 -68
- package/build/contracts/artifacts/Escrow.json +147 -19
- package/build/contracts/typechain-types/contracts/escrow/Escrow.d.ts +45 -10
- package/build/contracts/typechain-types/contracts/escrow/Escrow.d.ts.map +1 -1
- package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.d.ts +69 -13
- package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.d.ts.map +1 -1
- package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.js +91 -17
- package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.d.ts +69 -13
- package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.d.ts.map +1 -1
- package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.js +91 -17
- package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.d.ts +1 -1
- package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.js +1 -1
- package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts +114 -16
- package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts.map +1 -1
- package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.js +148 -20
- package/build/contracts/typechain-types/factories/contracts/lib/Events__factory.d.ts +1 -1
- package/build/contracts/typechain-types/factories/contracts/lib/Events__factory.js +1 -1
- package/build/contracts/typechain-types/factories/contracts/lib/MultisigLib__factory.d.ts +1 -1
- package/build/contracts/typechain-types/factories/contracts/lib/MultisigLib__factory.js +1 -1
- package/build/contracts/types/escrow.d.ts +4 -2
- package/build/contracts/types/escrow.d.ts.map +1 -1
- package/build/utils/custodial.d.ts +2 -1
- package/build/utils/custodial.d.ts.map +1 -1
- package/build/utils/custodial.js +1 -1
- package/package.json +1 -1
package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class EscrowErrors__factory extends ContractFactory {
|
|
|
14
14
|
deploymentTransaction(): ContractTransactionResponse;
|
|
15
15
|
}>;
|
|
16
16
|
connect(runner: ContractRunner | null): EscrowErrors__factory;
|
|
17
|
-
static readonly bytecode = "
|
|
17
|
+
static readonly bytecode = "0x608080604052346013576039908160188239f35b5f80fdfe5f80fdfea26469706673582212204ade273a5becc8a7280ac2fea8132948c83f4aea0eceddceb6814a2b222a05f164736f6c634300081c0033";
|
|
18
18
|
static readonly abi: readonly [{
|
|
19
19
|
readonly inputs: readonly [{
|
|
20
20
|
readonly internalType: "address";
|
|
@@ -35,18 +35,6 @@ export declare class EscrowErrors__factory extends ContractFactory {
|
|
|
35
35
|
}];
|
|
36
36
|
readonly name: "AlreadyCreatedTransaction";
|
|
37
37
|
readonly type: "error";
|
|
38
|
-
}, {
|
|
39
|
-
readonly inputs: readonly [{
|
|
40
|
-
readonly internalType: "uint256";
|
|
41
|
-
readonly name: "request_id";
|
|
42
|
-
readonly type: "uint256";
|
|
43
|
-
}, {
|
|
44
|
-
readonly internalType: "uint8";
|
|
45
|
-
readonly name: "error_id";
|
|
46
|
-
readonly type: "uint8";
|
|
47
|
-
}];
|
|
48
|
-
readonly name: "BatchError";
|
|
49
|
-
readonly type: "error";
|
|
50
38
|
}, {
|
|
51
39
|
readonly inputs: readonly [{
|
|
52
40
|
readonly internalType: "bytes32";
|
|
@@ -95,6 +83,22 @@ export declare class EscrowErrors__factory extends ContractFactory {
|
|
|
95
83
|
readonly inputs: readonly [];
|
|
96
84
|
readonly name: "ExceedsMaxBatch";
|
|
97
85
|
readonly type: "error";
|
|
86
|
+
}, {
|
|
87
|
+
readonly inputs: readonly [{
|
|
88
|
+
readonly internalType: "uint256";
|
|
89
|
+
readonly name: "requestId";
|
|
90
|
+
readonly type: "uint256";
|
|
91
|
+
}, {
|
|
92
|
+
readonly internalType: "uint256";
|
|
93
|
+
readonly name: "delta";
|
|
94
|
+
readonly type: "uint256";
|
|
95
|
+
}, {
|
|
96
|
+
readonly internalType: "uint256";
|
|
97
|
+
readonly name: "maxAllowed";
|
|
98
|
+
readonly type: "uint256";
|
|
99
|
+
}];
|
|
100
|
+
readonly name: "FeeDeltaExceedsCap";
|
|
101
|
+
readonly type: "error";
|
|
98
102
|
}, {
|
|
99
103
|
readonly inputs: readonly [{
|
|
100
104
|
readonly internalType: "address";
|
|
@@ -127,6 +131,22 @@ export declare class EscrowErrors__factory extends ContractFactory {
|
|
|
127
131
|
}];
|
|
128
132
|
readonly name: "InsufficientExecutiveSigs";
|
|
129
133
|
readonly type: "error";
|
|
134
|
+
}, {
|
|
135
|
+
readonly inputs: readonly [{
|
|
136
|
+
readonly internalType: "uint256";
|
|
137
|
+
readonly name: "requestId";
|
|
138
|
+
readonly type: "uint256";
|
|
139
|
+
}, {
|
|
140
|
+
readonly internalType: "uint256";
|
|
141
|
+
readonly name: "required";
|
|
142
|
+
readonly type: "uint256";
|
|
143
|
+
}, {
|
|
144
|
+
readonly internalType: "uint256";
|
|
145
|
+
readonly name: "provided";
|
|
146
|
+
readonly type: "uint256";
|
|
147
|
+
}];
|
|
148
|
+
readonly name: "InsufficientExecutiveSigsForRequest";
|
|
149
|
+
readonly type: "error";
|
|
130
150
|
}, {
|
|
131
151
|
readonly inputs: readonly [{
|
|
132
152
|
readonly internalType: "uint256";
|
|
@@ -139,6 +159,22 @@ export declare class EscrowErrors__factory extends ContractFactory {
|
|
|
139
159
|
}];
|
|
140
160
|
readonly name: "InsufficientManagerSigs";
|
|
141
161
|
readonly type: "error";
|
|
162
|
+
}, {
|
|
163
|
+
readonly inputs: readonly [{
|
|
164
|
+
readonly internalType: "uint256";
|
|
165
|
+
readonly name: "requestId";
|
|
166
|
+
readonly type: "uint256";
|
|
167
|
+
}, {
|
|
168
|
+
readonly internalType: "uint256";
|
|
169
|
+
readonly name: "required";
|
|
170
|
+
readonly type: "uint256";
|
|
171
|
+
}, {
|
|
172
|
+
readonly internalType: "uint256";
|
|
173
|
+
readonly name: "provided";
|
|
174
|
+
readonly type: "uint256";
|
|
175
|
+
}];
|
|
176
|
+
readonly name: "InsufficientManagerSigsForRequest";
|
|
177
|
+
readonly type: "error";
|
|
142
178
|
}, {
|
|
143
179
|
readonly inputs: readonly [];
|
|
144
180
|
readonly name: "InsufficientReserves";
|
|
@@ -155,6 +191,26 @@ export declare class EscrowErrors__factory extends ContractFactory {
|
|
|
155
191
|
}];
|
|
156
192
|
readonly name: "InvalidMultiSig";
|
|
157
193
|
readonly type: "error";
|
|
194
|
+
}, {
|
|
195
|
+
readonly inputs: readonly [{
|
|
196
|
+
readonly internalType: "uint256";
|
|
197
|
+
readonly name: "requestId";
|
|
198
|
+
readonly type: "uint256";
|
|
199
|
+
}, {
|
|
200
|
+
readonly internalType: "uint256";
|
|
201
|
+
readonly name: "sig_idx";
|
|
202
|
+
readonly type: "uint256";
|
|
203
|
+
}];
|
|
204
|
+
readonly name: "InvalidMultiSigForRequest";
|
|
205
|
+
readonly type: "error";
|
|
206
|
+
}, {
|
|
207
|
+
readonly inputs: readonly [{
|
|
208
|
+
readonly internalType: "uint256";
|
|
209
|
+
readonly name: "request_id";
|
|
210
|
+
readonly type: "uint256";
|
|
211
|
+
}];
|
|
212
|
+
readonly name: "InvalidNegativeFee";
|
|
213
|
+
readonly type: "error";
|
|
158
214
|
}, {
|
|
159
215
|
readonly inputs: readonly [{
|
|
160
216
|
readonly internalType: "uint256";
|
package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EscrowErrors__factory.d.ts","sourceRoot":"","sources":["../../../../../../src/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,eAAe,EACf,2BAA2B,EAE5B,MAAM,QAAQ,CAAC;AAChB,OAAO,KAAK,EAAE,MAAM,EAAE,yBAAyB,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAChF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EACtB,MAAM,wCAAwC,CAAC;
|
|
1
|
+
{"version":3,"file":"EscrowErrors__factory.d.ts","sourceRoot":"","sources":["../../../../../../src/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,eAAe,EACf,2BAA2B,EAE5B,MAAM,QAAQ,CAAC;AAChB,OAAO,KAAK,EAAE,MAAM,EAAE,yBAAyB,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAChF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EACtB,MAAM,wCAAwC,CAAC;AA6bhD,KAAK,6BAA6B,GAC9B,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,GACjB,qBAAqB,CAAC,OAAO,eAAe,CAAC,CAAC;AAMlD,qBAAa,qBAAsB,SAAQ,eAAe;gBAC5C,GAAG,IAAI,EAAE,6BAA6B;IAQzC,oBAAoB,CAC3B,SAAS,CAAC,EAAE,mBAAmB,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAClD,OAAO,CAAC,yBAAyB,CAAC;IAG5B,MAAM,CAAC,SAAS,CAAC,EAAE,mBAAmB,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GACzB,OAAO,CAC7C,YAAY,GAAG;QACb,qBAAqB,IAAI,2BAA2B,CAAC;KACtD,CACF;IAEM,OAAO,CAAC,MAAM,EAAE,cAAc,GAAG,IAAI,GAAG,qBAAqB;IAItE,MAAM,CAAC,QAAQ,CAAC,QAAQ,0KAAa;IACrC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,qBAAqB;IAG/C,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,MAAM,CAAC,EAAE,cAAc,GAAG,IAAI,GAC7B,YAAY;CAGhB"}
|
|
@@ -33,22 +33,6 @@ const _abi = [
|
|
|
33
33
|
name: "AlreadyCreatedTransaction",
|
|
34
34
|
type: "error",
|
|
35
35
|
},
|
|
36
|
-
{
|
|
37
|
-
inputs: [
|
|
38
|
-
{
|
|
39
|
-
internalType: "uint256",
|
|
40
|
-
name: "request_id",
|
|
41
|
-
type: "uint256",
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
internalType: "uint8",
|
|
45
|
-
name: "error_id",
|
|
46
|
-
type: "uint8",
|
|
47
|
-
},
|
|
48
|
-
],
|
|
49
|
-
name: "BatchError",
|
|
50
|
-
type: "error",
|
|
51
|
-
},
|
|
52
36
|
{
|
|
53
37
|
inputs: [
|
|
54
38
|
{
|
|
@@ -111,6 +95,27 @@ const _abi = [
|
|
|
111
95
|
name: "ExceedsMaxBatch",
|
|
112
96
|
type: "error",
|
|
113
97
|
},
|
|
98
|
+
{
|
|
99
|
+
inputs: [
|
|
100
|
+
{
|
|
101
|
+
internalType: "uint256",
|
|
102
|
+
name: "requestId",
|
|
103
|
+
type: "uint256",
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
internalType: "uint256",
|
|
107
|
+
name: "delta",
|
|
108
|
+
type: "uint256",
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
internalType: "uint256",
|
|
112
|
+
name: "maxAllowed",
|
|
113
|
+
type: "uint256",
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
name: "FeeDeltaExceedsCap",
|
|
117
|
+
type: "error",
|
|
118
|
+
},
|
|
114
119
|
{
|
|
115
120
|
inputs: [
|
|
116
121
|
{
|
|
@@ -153,6 +158,27 @@ const _abi = [
|
|
|
153
158
|
name: "InsufficientExecutiveSigs",
|
|
154
159
|
type: "error",
|
|
155
160
|
},
|
|
161
|
+
{
|
|
162
|
+
inputs: [
|
|
163
|
+
{
|
|
164
|
+
internalType: "uint256",
|
|
165
|
+
name: "requestId",
|
|
166
|
+
type: "uint256",
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
internalType: "uint256",
|
|
170
|
+
name: "required",
|
|
171
|
+
type: "uint256",
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
internalType: "uint256",
|
|
175
|
+
name: "provided",
|
|
176
|
+
type: "uint256",
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
name: "InsufficientExecutiveSigsForRequest",
|
|
180
|
+
type: "error",
|
|
181
|
+
},
|
|
156
182
|
{
|
|
157
183
|
inputs: [
|
|
158
184
|
{
|
|
@@ -169,6 +195,27 @@ const _abi = [
|
|
|
169
195
|
name: "InsufficientManagerSigs",
|
|
170
196
|
type: "error",
|
|
171
197
|
},
|
|
198
|
+
{
|
|
199
|
+
inputs: [
|
|
200
|
+
{
|
|
201
|
+
internalType: "uint256",
|
|
202
|
+
name: "requestId",
|
|
203
|
+
type: "uint256",
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
internalType: "uint256",
|
|
207
|
+
name: "required",
|
|
208
|
+
type: "uint256",
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
internalType: "uint256",
|
|
212
|
+
name: "provided",
|
|
213
|
+
type: "uint256",
|
|
214
|
+
},
|
|
215
|
+
],
|
|
216
|
+
name: "InsufficientManagerSigsForRequest",
|
|
217
|
+
type: "error",
|
|
218
|
+
},
|
|
172
219
|
{
|
|
173
220
|
inputs: [],
|
|
174
221
|
name: "InsufficientReserves",
|
|
@@ -190,6 +237,33 @@ const _abi = [
|
|
|
190
237
|
name: "InvalidMultiSig",
|
|
191
238
|
type: "error",
|
|
192
239
|
},
|
|
240
|
+
{
|
|
241
|
+
inputs: [
|
|
242
|
+
{
|
|
243
|
+
internalType: "uint256",
|
|
244
|
+
name: "requestId",
|
|
245
|
+
type: "uint256",
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
internalType: "uint256",
|
|
249
|
+
name: "sig_idx",
|
|
250
|
+
type: "uint256",
|
|
251
|
+
},
|
|
252
|
+
],
|
|
253
|
+
name: "InvalidMultiSigForRequest",
|
|
254
|
+
type: "error",
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
inputs: [
|
|
258
|
+
{
|
|
259
|
+
internalType: "uint256",
|
|
260
|
+
name: "request_id",
|
|
261
|
+
type: "uint256",
|
|
262
|
+
},
|
|
263
|
+
],
|
|
264
|
+
name: "InvalidNegativeFee",
|
|
265
|
+
type: "error",
|
|
266
|
+
},
|
|
193
267
|
{
|
|
194
268
|
inputs: [
|
|
195
269
|
{
|
|
@@ -370,7 +444,7 @@ const _abi = [
|
|
|
370
444
|
type: "error",
|
|
371
445
|
},
|
|
372
446
|
];
|
|
373
|
-
const _bytecode = "
|
|
447
|
+
const _bytecode = "0x608080604052346013576039908160188239f35b5f80fdfe5f80fdfea26469706673582212204ade273a5becc8a7280ac2fea8132948c83f4aea0eceddceb6814a2b222a05f164736f6c634300081c0033";
|
|
374
448
|
const isSuperArgs = (xs) => xs.length > 1;
|
|
375
449
|
class EscrowErrors__factory extends ethers_1.ContractFactory {
|
|
376
450
|
constructor(...args) {
|
package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class EscrowSignature__factory extends ContractFactory {
|
|
|
14
14
|
deploymentTransaction(): ContractTransactionResponse;
|
|
15
15
|
}>;
|
|
16
16
|
connect(runner: ContractRunner | null): EscrowSignature__factory;
|
|
17
|
-
static readonly bytecode = "
|
|
17
|
+
static readonly bytecode = "0x608080604052346015576104e6908161001a8239f35b5f80fdfe60806040526004361015610011575f80fd5b5f5f3560e01c806331993fdf1461021a5780633644e515146101fe578063ac21242d146101465763d37dbaa214610046575f80fd5b3461014357610054366103e9565b94806080604096939495965161006981610355565b6001815260208101948552604081019760018060a01b03168852606081019660018060a01b031687520193845261012f57602061011d8787878787519260018060a01b039051169160018060a01b0390511690519060405192878401947f30df4329ee18debd99f937f6d70edc594d2957d5c194e77ab788df398c193af28652600160408601526060850152608084015260a083015260c082015260c0815261011360e082610371565b5190205f54610435565b6040516001600160a01b039091168152f35b634e487b7160e01b81526021600452602490fd5b80fd5b346101fa57602061011d610159366103e9565b93608060405161016881610355565b5f8082528982019384526001600160a01b03968716604080840191825296881660608085019182529490930186905293519351915186517fe35cf8b8df51aa49768d4a7859037953b72f9188d7c60825dfd506ac7c8d430c818d0190815297810192909252928101939093528516608083015290931660a084015260c08084019190915282529061011360e082610371565b5f80fd5b346101fa575f3660031901126101fa5760205f54604051908152f35b346101fa5760403660031901126101fa5760043567ffffffffffffffff81116101fa5761024b903690600401610393565b60243567ffffffffffffffff81116101fa5761026b903690600401610393565b9060ff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460401c1615610346576040516080810181811067ffffffffffffffff821117610332576040528181528260208201524660408201526060309101526020815191012090602081519101206040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815261032b60c082610371565b5190205f55005b634e487b7160e01b5f52604160045260245ffd5b631afcd79f60e31b5f5260045ffd5b60a0810190811067ffffffffffffffff82111761033257604052565b90601f8019910116810190811067ffffffffffffffff82111761033257604052565b81601f820112156101fa5780359067ffffffffffffffff821161033257604051926103c8601f8401601f191660200185610371565b828452602083830101116101fa57815f926020809301838601378301015290565b60e06003198201126101fa57600435916024356001600160a01b03811681036101fa57916044356001600160a01b03811681036101fa579160606064359260831901126101fa57608490565b9060405190602082019261190160f01b84526022830152604282015260428152610460606282610371565b5190209080359060ff82168092036101fa5760209260406080925f9482519384528684015285810135828401520135606082015282805260015afa156104a5575f5190565b6040513d5f823e3d90fdfea2646970667358221220e3501da6bb415904c62fe4cbc5d9bfb6c43580e10abf4422618f27d041da6ba364736f6c634300081c0033";
|
|
18
18
|
static readonly abi: readonly [{
|
|
19
19
|
readonly inputs: readonly [];
|
|
20
20
|
readonly name: "InvalidInitialization";
|
package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.js
CHANGED
|
@@ -173,7 +173,7 @@ const _abi = [
|
|
|
173
173
|
type: "function",
|
|
174
174
|
},
|
|
175
175
|
];
|
|
176
|
-
const _bytecode = "
|
|
176
|
+
const _bytecode = "0x608080604052346015576104e6908161001a8239f35b5f80fdfe60806040526004361015610011575f80fd5b5f5f3560e01c806331993fdf1461021a5780633644e515146101fe578063ac21242d146101465763d37dbaa214610046575f80fd5b3461014357610054366103e9565b94806080604096939495965161006981610355565b6001815260208101948552604081019760018060a01b03168852606081019660018060a01b031687520193845261012f57602061011d8787878787519260018060a01b039051169160018060a01b0390511690519060405192878401947f30df4329ee18debd99f937f6d70edc594d2957d5c194e77ab788df398c193af28652600160408601526060850152608084015260a083015260c082015260c0815261011360e082610371565b5190205f54610435565b6040516001600160a01b039091168152f35b634e487b7160e01b81526021600452602490fd5b80fd5b346101fa57602061011d610159366103e9565b93608060405161016881610355565b5f8082528982019384526001600160a01b03968716604080840191825296881660608085019182529490930186905293519351915186517fe35cf8b8df51aa49768d4a7859037953b72f9188d7c60825dfd506ac7c8d430c818d0190815297810192909252928101939093528516608083015290931660a084015260c08084019190915282529061011360e082610371565b5f80fd5b346101fa575f3660031901126101fa5760205f54604051908152f35b346101fa5760403660031901126101fa5760043567ffffffffffffffff81116101fa5761024b903690600401610393565b60243567ffffffffffffffff81116101fa5761026b903690600401610393565b9060ff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460401c1615610346576040516080810181811067ffffffffffffffff821117610332576040528181528260208201524660408201526060309101526020815191012090602081519101206040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815261032b60c082610371565b5190205f55005b634e487b7160e01b5f52604160045260245ffd5b631afcd79f60e31b5f5260045ffd5b60a0810190811067ffffffffffffffff82111761033257604052565b90601f8019910116810190811067ffffffffffffffff82111761033257604052565b81601f820112156101fa5780359067ffffffffffffffff821161033257604051926103c8601f8401601f191660200185610371565b828452602083830101116101fa57815f926020809301838601378301015290565b60e06003198201126101fa57600435916024356001600160a01b03811681036101fa57916044356001600160a01b03811681036101fa579160606064359260831901126101fa57608490565b9060405190602082019261190160f01b84526022830152604282015260428152610460606282610371565b5190209080359060ff82168092036101fa5760209260406080925f9482519384528684015285810135828401520135606082015282805260015afa156104a5575f5190565b6040513d5f823e3d90fdfea2646970667358221220e3501da6bb415904c62fe4cbc5d9bfb6c43580e10abf4422618f27d041da6ba364736f6c634300081c0033";
|
|
177
177
|
const isSuperArgs = (xs) => xs.length > 1;
|
|
178
178
|
class EscrowSignature__factory extends ethers_1.ContractFactory {
|
|
179
179
|
constructor(...args) {
|