@instadapp/interop-x 0.0.0-dev.ef78459 → 0.0.0-dev.f78418c

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. package/dist/abi/erc20.json +350 -0
  2. package/dist/abi/gnosisSafe.json +747 -0
  3. package/dist/abi/index.js +15 -0
  4. package/dist/abi/interopBridgeToken.json +286 -0
  5. package/dist/abi/interopXGateway.json +184 -0
  6. package/dist/constants/addresses.js +17 -2
  7. package/dist/constants/index.js +1 -0
  8. package/dist/constants/tokens.js +107 -0
  9. package/dist/db/models/index.js +1 -1
  10. package/dist/db/models/transaction.js +52 -0
  11. package/dist/index.js +1 -1
  12. package/dist/net/protocol/dial/SignatureDialProtocol.js +10 -12
  13. package/dist/net/protocol/index.js +3 -3
  14. package/dist/tasks/BaseTask.js +1 -1
  15. package/dist/tasks/InteropXGateway/SyncDepositEvents.js +79 -0
  16. package/dist/tasks/index.js +9 -1
  17. package/dist/typechain/Erc20.js +2 -0
  18. package/dist/typechain/GnosisSafe.js +2 -0
  19. package/dist/typechain/InteropBridgeToken.js +2 -0
  20. package/dist/typechain/InteropXGateway.js +2 -0
  21. package/dist/typechain/common.js +2 -0
  22. package/dist/typechain/factories/Erc20__factory.js +367 -0
  23. package/dist/typechain/factories/GnosisSafe__factory.js +1174 -0
  24. package/dist/typechain/factories/InteropBridgeToken__factory.js +459 -0
  25. package/dist/typechain/factories/InteropXGateway__factory.js +265 -0
  26. package/dist/typechain/factories/index.js +14 -0
  27. package/dist/typechain/index.js +35 -0
  28. package/dist/utils/index.js +13 -1
  29. package/package.json +18 -4
  30. package/src/abi/erc20.json +350 -0
  31. package/src/abi/gnosisSafe.json +747 -0
  32. package/src/abi/index.ts +11 -0
  33. package/src/abi/interopBridgeToken.json +286 -0
  34. package/src/abi/interopXGateway.json +184 -0
  35. package/src/constants/addresses.ts +17 -2
  36. package/src/constants/index.ts +1 -0
  37. package/src/constants/tokens.ts +104 -0
  38. package/src/db/models/index.ts +1 -1
  39. package/src/db/models/transaction.ts +92 -0
  40. package/src/index.ts +2 -1
  41. package/src/net/protocol/dial/SignatureDialProtocol.ts +12 -15
  42. package/src/net/protocol/index.ts +3 -3
  43. package/src/tasks/BaseTask.ts +1 -2
  44. package/src/tasks/InteropXGateway/SyncDepositEvents.ts +114 -0
  45. package/src/tasks/index.ts +4 -1
  46. package/src/typechain/Erc20.ts +491 -0
  47. package/src/typechain/GnosisSafe.ts +1728 -0
  48. package/src/typechain/InteropBridgeToken.ts +686 -0
  49. package/src/typechain/InteropXGateway.ts +407 -0
  50. package/src/typechain/common.ts +44 -0
  51. package/src/typechain/factories/Erc20__factory.ts +368 -0
  52. package/src/typechain/factories/GnosisSafe__factory.ts +1178 -0
  53. package/src/typechain/factories/InteropBridgeToken__factory.ts +466 -0
  54. package/src/typechain/factories/InteropXGateway__factory.ts +272 -0
  55. package/src/typechain/factories/index.ts +7 -0
  56. package/src/typechain/index.ts +12 -0
  57. package/src/types.ts +1 -1
  58. package/src/utils/index.ts +13 -0
  59. package/dist/db/models/execution.js +0 -38
  60. package/src/db/models/execution.ts +0 -57
@@ -0,0 +1,686 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import type {
5
+ BaseContract,
6
+ BigNumber,
7
+ BigNumberish,
8
+ BytesLike,
9
+ CallOverrides,
10
+ ContractTransaction,
11
+ Overrides,
12
+ PopulatedTransaction,
13
+ Signer,
14
+ utils,
15
+ } from "ethers";
16
+ import type {
17
+ FunctionFragment,
18
+ Result,
19
+ EventFragment,
20
+ } from "@ethersproject/abi";
21
+ import type { Listener, Provider } from "@ethersproject/providers";
22
+ import type {
23
+ TypedEventFilter,
24
+ TypedEvent,
25
+ TypedListener,
26
+ OnEvent,
27
+ } from "./common";
28
+
29
+ export interface InteropBridgeTokenInterface extends utils.Interface {
30
+ functions: {
31
+ "allowance(address,address)": FunctionFragment;
32
+ "approve(address,uint256)": FunctionFragment;
33
+ "balanceOf(address)": FunctionFragment;
34
+ "burn(address,uint256,uint256)": FunctionFragment;
35
+ "decimals()": FunctionFragment;
36
+ "decreaseAllowance(address,uint256)": FunctionFragment;
37
+ "increaseAllowance(address,uint256)": FunctionFragment;
38
+ "mint(address,uint256,uint256,bytes32)": FunctionFragment;
39
+ "name()": FunctionFragment;
40
+ "owner()": FunctionFragment;
41
+ "renounceOwnership()": FunctionFragment;
42
+ "symbol()": FunctionFragment;
43
+ "totalSupply()": FunctionFragment;
44
+ "transfer(address,uint256)": FunctionFragment;
45
+ "transferFrom(address,address,uint256)": FunctionFragment;
46
+ "transferOwnership(address)": FunctionFragment;
47
+ };
48
+
49
+ getFunction(
50
+ nameOrSignatureOrTopic:
51
+ | "allowance"
52
+ | "approve"
53
+ | "balanceOf"
54
+ | "burn"
55
+ | "decimals"
56
+ | "decreaseAllowance"
57
+ | "increaseAllowance"
58
+ | "mint"
59
+ | "name"
60
+ | "owner"
61
+ | "renounceOwnership"
62
+ | "symbol"
63
+ | "totalSupply"
64
+ | "transfer"
65
+ | "transferFrom"
66
+ | "transferOwnership"
67
+ ): FunctionFragment;
68
+
69
+ encodeFunctionData(
70
+ functionFragment: "allowance",
71
+ values: [string, string]
72
+ ): string;
73
+ encodeFunctionData(
74
+ functionFragment: "approve",
75
+ values: [string, BigNumberish]
76
+ ): string;
77
+ encodeFunctionData(functionFragment: "balanceOf", values: [string]): string;
78
+ encodeFunctionData(
79
+ functionFragment: "burn",
80
+ values: [string, BigNumberish, BigNumberish]
81
+ ): string;
82
+ encodeFunctionData(functionFragment: "decimals", values?: undefined): string;
83
+ encodeFunctionData(
84
+ functionFragment: "decreaseAllowance",
85
+ values: [string, BigNumberish]
86
+ ): string;
87
+ encodeFunctionData(
88
+ functionFragment: "increaseAllowance",
89
+ values: [string, BigNumberish]
90
+ ): string;
91
+ encodeFunctionData(
92
+ functionFragment: "mint",
93
+ values: [string, BigNumberish, BigNumberish, BytesLike]
94
+ ): string;
95
+ encodeFunctionData(functionFragment: "name", values?: undefined): string;
96
+ encodeFunctionData(functionFragment: "owner", values?: undefined): string;
97
+ encodeFunctionData(
98
+ functionFragment: "renounceOwnership",
99
+ values?: undefined
100
+ ): string;
101
+ encodeFunctionData(functionFragment: "symbol", values?: undefined): string;
102
+ encodeFunctionData(
103
+ functionFragment: "totalSupply",
104
+ values?: undefined
105
+ ): string;
106
+ encodeFunctionData(
107
+ functionFragment: "transfer",
108
+ values: [string, BigNumberish]
109
+ ): string;
110
+ encodeFunctionData(
111
+ functionFragment: "transferFrom",
112
+ values: [string, string, BigNumberish]
113
+ ): string;
114
+ encodeFunctionData(
115
+ functionFragment: "transferOwnership",
116
+ values: [string]
117
+ ): string;
118
+
119
+ decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result;
120
+ decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
121
+ decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
122
+ decodeFunctionResult(functionFragment: "burn", data: BytesLike): Result;
123
+ decodeFunctionResult(functionFragment: "decimals", data: BytesLike): Result;
124
+ decodeFunctionResult(
125
+ functionFragment: "decreaseAllowance",
126
+ data: BytesLike
127
+ ): Result;
128
+ decodeFunctionResult(
129
+ functionFragment: "increaseAllowance",
130
+ data: BytesLike
131
+ ): Result;
132
+ decodeFunctionResult(functionFragment: "mint", data: BytesLike): Result;
133
+ decodeFunctionResult(functionFragment: "name", data: BytesLike): Result;
134
+ decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
135
+ decodeFunctionResult(
136
+ functionFragment: "renounceOwnership",
137
+ data: BytesLike
138
+ ): Result;
139
+ decodeFunctionResult(functionFragment: "symbol", data: BytesLike): Result;
140
+ decodeFunctionResult(
141
+ functionFragment: "totalSupply",
142
+ data: BytesLike
143
+ ): Result;
144
+ decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result;
145
+ decodeFunctionResult(
146
+ functionFragment: "transferFrom",
147
+ data: BytesLike
148
+ ): Result;
149
+ decodeFunctionResult(
150
+ functionFragment: "transferOwnership",
151
+ data: BytesLike
152
+ ): Result;
153
+
154
+ events: {
155
+ "Approval(address,address,uint256)": EventFragment;
156
+ "Burn(address,uint256,uint256)": EventFragment;
157
+ "Mint(address,uint256,uint256,bytes32)": EventFragment;
158
+ "OwnershipTransferred(address,address)": EventFragment;
159
+ "Transfer(address,address,uint256)": EventFragment;
160
+ };
161
+
162
+ getEvent(nameOrSignatureOrTopic: "Approval"): EventFragment;
163
+ getEvent(nameOrSignatureOrTopic: "Burn"): EventFragment;
164
+ getEvent(nameOrSignatureOrTopic: "Mint"): EventFragment;
165
+ getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
166
+ getEvent(nameOrSignatureOrTopic: "Transfer"): EventFragment;
167
+ }
168
+
169
+ export interface ApprovalEventObject {
170
+ owner: string;
171
+ spender: string;
172
+ value: BigNumber;
173
+ }
174
+ export type ApprovalEvent = TypedEvent<
175
+ [string, string, BigNumber],
176
+ ApprovalEventObject
177
+ >;
178
+
179
+ export type ApprovalEventFilter = TypedEventFilter<ApprovalEvent>;
180
+
181
+ export interface BurnEventObject {
182
+ to: string;
183
+ amount: BigNumber;
184
+ chainId: BigNumber;
185
+ }
186
+ export type BurnEvent = TypedEvent<
187
+ [string, BigNumber, BigNumber],
188
+ BurnEventObject
189
+ >;
190
+
191
+ export type BurnEventFilter = TypedEventFilter<BurnEvent>;
192
+
193
+ export interface MintEventObject {
194
+ to: string;
195
+ amount: BigNumber;
196
+ chainId: BigNumber;
197
+ transactionHash: string;
198
+ }
199
+ export type MintEvent = TypedEvent<
200
+ [string, BigNumber, BigNumber, string],
201
+ MintEventObject
202
+ >;
203
+
204
+ export type MintEventFilter = TypedEventFilter<MintEvent>;
205
+
206
+ export interface OwnershipTransferredEventObject {
207
+ previousOwner: string;
208
+ newOwner: string;
209
+ }
210
+ export type OwnershipTransferredEvent = TypedEvent<
211
+ [string, string],
212
+ OwnershipTransferredEventObject
213
+ >;
214
+
215
+ export type OwnershipTransferredEventFilter =
216
+ TypedEventFilter<OwnershipTransferredEvent>;
217
+
218
+ export interface TransferEventObject {
219
+ from: string;
220
+ to: string;
221
+ value: BigNumber;
222
+ }
223
+ export type TransferEvent = TypedEvent<
224
+ [string, string, BigNumber],
225
+ TransferEventObject
226
+ >;
227
+
228
+ export type TransferEventFilter = TypedEventFilter<TransferEvent>;
229
+
230
+ export interface InteropBridgeToken extends BaseContract {
231
+ connect(signerOrProvider: Signer | Provider | string): this;
232
+ attach(addressOrName: string): this;
233
+ deployed(): Promise<this>;
234
+
235
+ interface: InteropBridgeTokenInterface;
236
+
237
+ queryFilter<TEvent extends TypedEvent>(
238
+ event: TypedEventFilter<TEvent>,
239
+ fromBlockOrBlockhash?: string | number | undefined,
240
+ toBlock?: string | number | undefined
241
+ ): Promise<Array<TEvent>>;
242
+
243
+ listeners<TEvent extends TypedEvent>(
244
+ eventFilter?: TypedEventFilter<TEvent>
245
+ ): Array<TypedListener<TEvent>>;
246
+ listeners(eventName?: string): Array<Listener>;
247
+ removeAllListeners<TEvent extends TypedEvent>(
248
+ eventFilter: TypedEventFilter<TEvent>
249
+ ): this;
250
+ removeAllListeners(eventName?: string): this;
251
+ off: OnEvent<this>;
252
+ on: OnEvent<this>;
253
+ once: OnEvent<this>;
254
+ removeListener: OnEvent<this>;
255
+
256
+ functions: {
257
+ allowance(
258
+ owner: string,
259
+ spender: string,
260
+ overrides?: CallOverrides
261
+ ): Promise<[BigNumber]>;
262
+
263
+ approve(
264
+ spender: string,
265
+ amount: BigNumberish,
266
+ overrides?: Overrides & { from?: string | Promise<string> }
267
+ ): Promise<ContractTransaction>;
268
+
269
+ balanceOf(account: string, overrides?: CallOverrides): Promise<[BigNumber]>;
270
+
271
+ burn(
272
+ to: string,
273
+ amount: BigNumberish,
274
+ chainId: BigNumberish,
275
+ overrides?: Overrides & { from?: string | Promise<string> }
276
+ ): Promise<ContractTransaction>;
277
+
278
+ decimals(overrides?: CallOverrides): Promise<[number]>;
279
+
280
+ decreaseAllowance(
281
+ spender: string,
282
+ subtractedValue: BigNumberish,
283
+ overrides?: Overrides & { from?: string | Promise<string> }
284
+ ): Promise<ContractTransaction>;
285
+
286
+ increaseAllowance(
287
+ spender: string,
288
+ addedValue: BigNumberish,
289
+ overrides?: Overrides & { from?: string | Promise<string> }
290
+ ): Promise<ContractTransaction>;
291
+
292
+ mint(
293
+ to: string,
294
+ amount: BigNumberish,
295
+ chainId: BigNumberish,
296
+ transactionHash: BytesLike,
297
+ overrides?: Overrides & { from?: string | Promise<string> }
298
+ ): Promise<ContractTransaction>;
299
+
300
+ name(overrides?: CallOverrides): Promise<[string]>;
301
+
302
+ owner(overrides?: CallOverrides): Promise<[string]>;
303
+
304
+ renounceOwnership(
305
+ overrides?: Overrides & { from?: string | Promise<string> }
306
+ ): Promise<ContractTransaction>;
307
+
308
+ symbol(overrides?: CallOverrides): Promise<[string]>;
309
+
310
+ totalSupply(overrides?: CallOverrides): Promise<[BigNumber]>;
311
+
312
+ transfer(
313
+ to: string,
314
+ amount: BigNumberish,
315
+ overrides?: Overrides & { from?: string | Promise<string> }
316
+ ): Promise<ContractTransaction>;
317
+
318
+ transferFrom(
319
+ from: string,
320
+ to: string,
321
+ amount: BigNumberish,
322
+ overrides?: Overrides & { from?: string | Promise<string> }
323
+ ): Promise<ContractTransaction>;
324
+
325
+ transferOwnership(
326
+ newOwner: string,
327
+ overrides?: Overrides & { from?: string | Promise<string> }
328
+ ): Promise<ContractTransaction>;
329
+ };
330
+
331
+ allowance(
332
+ owner: string,
333
+ spender: string,
334
+ overrides?: CallOverrides
335
+ ): Promise<BigNumber>;
336
+
337
+ approve(
338
+ spender: string,
339
+ amount: BigNumberish,
340
+ overrides?: Overrides & { from?: string | Promise<string> }
341
+ ): Promise<ContractTransaction>;
342
+
343
+ balanceOf(account: string, overrides?: CallOverrides): Promise<BigNumber>;
344
+
345
+ burn(
346
+ to: string,
347
+ amount: BigNumberish,
348
+ chainId: BigNumberish,
349
+ overrides?: Overrides & { from?: string | Promise<string> }
350
+ ): Promise<ContractTransaction>;
351
+
352
+ decimals(overrides?: CallOverrides): Promise<number>;
353
+
354
+ decreaseAllowance(
355
+ spender: string,
356
+ subtractedValue: BigNumberish,
357
+ overrides?: Overrides & { from?: string | Promise<string> }
358
+ ): Promise<ContractTransaction>;
359
+
360
+ increaseAllowance(
361
+ spender: string,
362
+ addedValue: BigNumberish,
363
+ overrides?: Overrides & { from?: string | Promise<string> }
364
+ ): Promise<ContractTransaction>;
365
+
366
+ mint(
367
+ to: string,
368
+ amount: BigNumberish,
369
+ chainId: BigNumberish,
370
+ transactionHash: BytesLike,
371
+ overrides?: Overrides & { from?: string | Promise<string> }
372
+ ): Promise<ContractTransaction>;
373
+
374
+ name(overrides?: CallOverrides): Promise<string>;
375
+
376
+ owner(overrides?: CallOverrides): Promise<string>;
377
+
378
+ renounceOwnership(
379
+ overrides?: Overrides & { from?: string | Promise<string> }
380
+ ): Promise<ContractTransaction>;
381
+
382
+ symbol(overrides?: CallOverrides): Promise<string>;
383
+
384
+ totalSupply(overrides?: CallOverrides): Promise<BigNumber>;
385
+
386
+ transfer(
387
+ to: string,
388
+ amount: BigNumberish,
389
+ overrides?: Overrides & { from?: string | Promise<string> }
390
+ ): Promise<ContractTransaction>;
391
+
392
+ transferFrom(
393
+ from: string,
394
+ to: string,
395
+ amount: BigNumberish,
396
+ overrides?: Overrides & { from?: string | Promise<string> }
397
+ ): Promise<ContractTransaction>;
398
+
399
+ transferOwnership(
400
+ newOwner: string,
401
+ overrides?: Overrides & { from?: string | Promise<string> }
402
+ ): Promise<ContractTransaction>;
403
+
404
+ callStatic: {
405
+ allowance(
406
+ owner: string,
407
+ spender: string,
408
+ overrides?: CallOverrides
409
+ ): Promise<BigNumber>;
410
+
411
+ approve(
412
+ spender: string,
413
+ amount: BigNumberish,
414
+ overrides?: CallOverrides
415
+ ): Promise<boolean>;
416
+
417
+ balanceOf(account: string, overrides?: CallOverrides): Promise<BigNumber>;
418
+
419
+ burn(
420
+ to: string,
421
+ amount: BigNumberish,
422
+ chainId: BigNumberish,
423
+ overrides?: CallOverrides
424
+ ): Promise<void>;
425
+
426
+ decimals(overrides?: CallOverrides): Promise<number>;
427
+
428
+ decreaseAllowance(
429
+ spender: string,
430
+ subtractedValue: BigNumberish,
431
+ overrides?: CallOverrides
432
+ ): Promise<boolean>;
433
+
434
+ increaseAllowance(
435
+ spender: string,
436
+ addedValue: BigNumberish,
437
+ overrides?: CallOverrides
438
+ ): Promise<boolean>;
439
+
440
+ mint(
441
+ to: string,
442
+ amount: BigNumberish,
443
+ chainId: BigNumberish,
444
+ transactionHash: BytesLike,
445
+ overrides?: CallOverrides
446
+ ): Promise<void>;
447
+
448
+ name(overrides?: CallOverrides): Promise<string>;
449
+
450
+ owner(overrides?: CallOverrides): Promise<string>;
451
+
452
+ renounceOwnership(overrides?: CallOverrides): Promise<void>;
453
+
454
+ symbol(overrides?: CallOverrides): Promise<string>;
455
+
456
+ totalSupply(overrides?: CallOverrides): Promise<BigNumber>;
457
+
458
+ transfer(
459
+ to: string,
460
+ amount: BigNumberish,
461
+ overrides?: CallOverrides
462
+ ): Promise<boolean>;
463
+
464
+ transferFrom(
465
+ from: string,
466
+ to: string,
467
+ amount: BigNumberish,
468
+ overrides?: CallOverrides
469
+ ): Promise<boolean>;
470
+
471
+ transferOwnership(
472
+ newOwner: string,
473
+ overrides?: CallOverrides
474
+ ): Promise<void>;
475
+ };
476
+
477
+ filters: {
478
+ "Approval(address,address,uint256)"(
479
+ owner?: string | null,
480
+ spender?: string | null,
481
+ value?: null
482
+ ): ApprovalEventFilter;
483
+ Approval(
484
+ owner?: string | null,
485
+ spender?: string | null,
486
+ value?: null
487
+ ): ApprovalEventFilter;
488
+
489
+ "Burn(address,uint256,uint256)"(
490
+ to?: string | null,
491
+ amount?: null,
492
+ chainId?: BigNumberish | null
493
+ ): BurnEventFilter;
494
+ Burn(
495
+ to?: string | null,
496
+ amount?: null,
497
+ chainId?: BigNumberish | null
498
+ ): BurnEventFilter;
499
+
500
+ "Mint(address,uint256,uint256,bytes32)"(
501
+ to?: string | null,
502
+ amount?: null,
503
+ chainId?: BigNumberish | null,
504
+ transactionHash?: BytesLike | null
505
+ ): MintEventFilter;
506
+ Mint(
507
+ to?: string | null,
508
+ amount?: null,
509
+ chainId?: BigNumberish | null,
510
+ transactionHash?: BytesLike | null
511
+ ): MintEventFilter;
512
+
513
+ "OwnershipTransferred(address,address)"(
514
+ previousOwner?: string | null,
515
+ newOwner?: string | null
516
+ ): OwnershipTransferredEventFilter;
517
+ OwnershipTransferred(
518
+ previousOwner?: string | null,
519
+ newOwner?: string | null
520
+ ): OwnershipTransferredEventFilter;
521
+
522
+ "Transfer(address,address,uint256)"(
523
+ from?: string | null,
524
+ to?: string | null,
525
+ value?: null
526
+ ): TransferEventFilter;
527
+ Transfer(
528
+ from?: string | null,
529
+ to?: string | null,
530
+ value?: null
531
+ ): TransferEventFilter;
532
+ };
533
+
534
+ estimateGas: {
535
+ allowance(
536
+ owner: string,
537
+ spender: string,
538
+ overrides?: CallOverrides
539
+ ): Promise<BigNumber>;
540
+
541
+ approve(
542
+ spender: string,
543
+ amount: BigNumberish,
544
+ overrides?: Overrides & { from?: string | Promise<string> }
545
+ ): Promise<BigNumber>;
546
+
547
+ balanceOf(account: string, overrides?: CallOverrides): Promise<BigNumber>;
548
+
549
+ burn(
550
+ to: string,
551
+ amount: BigNumberish,
552
+ chainId: BigNumberish,
553
+ overrides?: Overrides & { from?: string | Promise<string> }
554
+ ): Promise<BigNumber>;
555
+
556
+ decimals(overrides?: CallOverrides): Promise<BigNumber>;
557
+
558
+ decreaseAllowance(
559
+ spender: string,
560
+ subtractedValue: BigNumberish,
561
+ overrides?: Overrides & { from?: string | Promise<string> }
562
+ ): Promise<BigNumber>;
563
+
564
+ increaseAllowance(
565
+ spender: string,
566
+ addedValue: BigNumberish,
567
+ overrides?: Overrides & { from?: string | Promise<string> }
568
+ ): Promise<BigNumber>;
569
+
570
+ mint(
571
+ to: string,
572
+ amount: BigNumberish,
573
+ chainId: BigNumberish,
574
+ transactionHash: BytesLike,
575
+ overrides?: Overrides & { from?: string | Promise<string> }
576
+ ): Promise<BigNumber>;
577
+
578
+ name(overrides?: CallOverrides): Promise<BigNumber>;
579
+
580
+ owner(overrides?: CallOverrides): Promise<BigNumber>;
581
+
582
+ renounceOwnership(
583
+ overrides?: Overrides & { from?: string | Promise<string> }
584
+ ): Promise<BigNumber>;
585
+
586
+ symbol(overrides?: CallOverrides): Promise<BigNumber>;
587
+
588
+ totalSupply(overrides?: CallOverrides): Promise<BigNumber>;
589
+
590
+ transfer(
591
+ to: string,
592
+ amount: BigNumberish,
593
+ overrides?: Overrides & { from?: string | Promise<string> }
594
+ ): Promise<BigNumber>;
595
+
596
+ transferFrom(
597
+ from: string,
598
+ to: string,
599
+ amount: BigNumberish,
600
+ overrides?: Overrides & { from?: string | Promise<string> }
601
+ ): Promise<BigNumber>;
602
+
603
+ transferOwnership(
604
+ newOwner: string,
605
+ overrides?: Overrides & { from?: string | Promise<string> }
606
+ ): Promise<BigNumber>;
607
+ };
608
+
609
+ populateTransaction: {
610
+ allowance(
611
+ owner: string,
612
+ spender: string,
613
+ overrides?: CallOverrides
614
+ ): Promise<PopulatedTransaction>;
615
+
616
+ approve(
617
+ spender: string,
618
+ amount: BigNumberish,
619
+ overrides?: Overrides & { from?: string | Promise<string> }
620
+ ): Promise<PopulatedTransaction>;
621
+
622
+ balanceOf(
623
+ account: string,
624
+ overrides?: CallOverrides
625
+ ): Promise<PopulatedTransaction>;
626
+
627
+ burn(
628
+ to: string,
629
+ amount: BigNumberish,
630
+ chainId: BigNumberish,
631
+ overrides?: Overrides & { from?: string | Promise<string> }
632
+ ): Promise<PopulatedTransaction>;
633
+
634
+ decimals(overrides?: CallOverrides): Promise<PopulatedTransaction>;
635
+
636
+ decreaseAllowance(
637
+ spender: string,
638
+ subtractedValue: BigNumberish,
639
+ overrides?: Overrides & { from?: string | Promise<string> }
640
+ ): Promise<PopulatedTransaction>;
641
+
642
+ increaseAllowance(
643
+ spender: string,
644
+ addedValue: BigNumberish,
645
+ overrides?: Overrides & { from?: string | Promise<string> }
646
+ ): Promise<PopulatedTransaction>;
647
+
648
+ mint(
649
+ to: string,
650
+ amount: BigNumberish,
651
+ chainId: BigNumberish,
652
+ transactionHash: BytesLike,
653
+ overrides?: Overrides & { from?: string | Promise<string> }
654
+ ): Promise<PopulatedTransaction>;
655
+
656
+ name(overrides?: CallOverrides): Promise<PopulatedTransaction>;
657
+
658
+ owner(overrides?: CallOverrides): Promise<PopulatedTransaction>;
659
+
660
+ renounceOwnership(
661
+ overrides?: Overrides & { from?: string | Promise<string> }
662
+ ): Promise<PopulatedTransaction>;
663
+
664
+ symbol(overrides?: CallOverrides): Promise<PopulatedTransaction>;
665
+
666
+ totalSupply(overrides?: CallOverrides): Promise<PopulatedTransaction>;
667
+
668
+ transfer(
669
+ to: string,
670
+ amount: BigNumberish,
671
+ overrides?: Overrides & { from?: string | Promise<string> }
672
+ ): Promise<PopulatedTransaction>;
673
+
674
+ transferFrom(
675
+ from: string,
676
+ to: string,
677
+ amount: BigNumberish,
678
+ overrides?: Overrides & { from?: string | Promise<string> }
679
+ ): Promise<PopulatedTransaction>;
680
+
681
+ transferOwnership(
682
+ newOwner: string,
683
+ overrides?: Overrides & { from?: string | Promise<string> }
684
+ ): Promise<PopulatedTransaction>;
685
+ };
686
+ }