@snowbridge/contract-types 0.1.1 → 0.1.3

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.
@@ -0,0 +1,246 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.IERC20Metadata__factory = void 0;
7
+ const ethers_1 = require("ethers");
8
+ const _abi = [
9
+ {
10
+ type: "function",
11
+ name: "allowance",
12
+ inputs: [
13
+ {
14
+ name: "owner",
15
+ type: "address",
16
+ internalType: "address",
17
+ },
18
+ {
19
+ name: "spender",
20
+ type: "address",
21
+ internalType: "address",
22
+ },
23
+ ],
24
+ outputs: [
25
+ {
26
+ name: "",
27
+ type: "uint256",
28
+ internalType: "uint256",
29
+ },
30
+ ],
31
+ stateMutability: "view",
32
+ },
33
+ {
34
+ type: "function",
35
+ name: "approve",
36
+ inputs: [
37
+ {
38
+ name: "spender",
39
+ type: "address",
40
+ internalType: "address",
41
+ },
42
+ {
43
+ name: "amount",
44
+ type: "uint256",
45
+ internalType: "uint256",
46
+ },
47
+ ],
48
+ outputs: [
49
+ {
50
+ name: "",
51
+ type: "bool",
52
+ internalType: "bool",
53
+ },
54
+ ],
55
+ stateMutability: "nonpayable",
56
+ },
57
+ {
58
+ type: "function",
59
+ name: "balanceOf",
60
+ inputs: [
61
+ {
62
+ name: "account",
63
+ type: "address",
64
+ internalType: "address",
65
+ },
66
+ ],
67
+ outputs: [
68
+ {
69
+ name: "",
70
+ type: "uint256",
71
+ internalType: "uint256",
72
+ },
73
+ ],
74
+ stateMutability: "view",
75
+ },
76
+ {
77
+ type: "function",
78
+ name: "decimals",
79
+ inputs: [],
80
+ outputs: [
81
+ {
82
+ name: "",
83
+ type: "uint8",
84
+ internalType: "uint8",
85
+ },
86
+ ],
87
+ stateMutability: "view",
88
+ },
89
+ {
90
+ type: "function",
91
+ name: "name",
92
+ inputs: [],
93
+ outputs: [
94
+ {
95
+ name: "",
96
+ type: "string",
97
+ internalType: "string",
98
+ },
99
+ ],
100
+ stateMutability: "view",
101
+ },
102
+ {
103
+ type: "function",
104
+ name: "symbol",
105
+ inputs: [],
106
+ outputs: [
107
+ {
108
+ name: "",
109
+ type: "string",
110
+ internalType: "string",
111
+ },
112
+ ],
113
+ stateMutability: "view",
114
+ },
115
+ {
116
+ type: "function",
117
+ name: "totalSupply",
118
+ inputs: [],
119
+ outputs: [
120
+ {
121
+ name: "",
122
+ type: "uint256",
123
+ internalType: "uint256",
124
+ },
125
+ ],
126
+ stateMutability: "view",
127
+ },
128
+ {
129
+ type: "function",
130
+ name: "transfer",
131
+ inputs: [
132
+ {
133
+ name: "recipient",
134
+ type: "address",
135
+ internalType: "address",
136
+ },
137
+ {
138
+ name: "amount",
139
+ type: "uint256",
140
+ internalType: "uint256",
141
+ },
142
+ ],
143
+ outputs: [
144
+ {
145
+ name: "",
146
+ type: "bool",
147
+ internalType: "bool",
148
+ },
149
+ ],
150
+ stateMutability: "nonpayable",
151
+ },
152
+ {
153
+ type: "function",
154
+ name: "transferFrom",
155
+ inputs: [
156
+ {
157
+ name: "sender",
158
+ type: "address",
159
+ internalType: "address",
160
+ },
161
+ {
162
+ name: "recipient",
163
+ type: "address",
164
+ internalType: "address",
165
+ },
166
+ {
167
+ name: "amount",
168
+ type: "uint256",
169
+ internalType: "uint256",
170
+ },
171
+ ],
172
+ outputs: [
173
+ {
174
+ name: "",
175
+ type: "bool",
176
+ internalType: "bool",
177
+ },
178
+ ],
179
+ stateMutability: "nonpayable",
180
+ },
181
+ {
182
+ type: "event",
183
+ name: "Approval",
184
+ inputs: [
185
+ {
186
+ name: "owner",
187
+ type: "address",
188
+ indexed: true,
189
+ internalType: "address",
190
+ },
191
+ {
192
+ name: "spender",
193
+ type: "address",
194
+ indexed: true,
195
+ internalType: "address",
196
+ },
197
+ {
198
+ name: "value",
199
+ type: "uint256",
200
+ indexed: false,
201
+ internalType: "uint256",
202
+ },
203
+ ],
204
+ anonymous: false,
205
+ },
206
+ {
207
+ type: "event",
208
+ name: "Transfer",
209
+ inputs: [
210
+ {
211
+ name: "from",
212
+ type: "address",
213
+ indexed: true,
214
+ internalType: "address",
215
+ },
216
+ {
217
+ name: "to",
218
+ type: "address",
219
+ indexed: true,
220
+ internalType: "address",
221
+ },
222
+ {
223
+ name: "value",
224
+ type: "uint256",
225
+ indexed: false,
226
+ internalType: "uint256",
227
+ },
228
+ ],
229
+ anonymous: false,
230
+ },
231
+ {
232
+ type: "error",
233
+ name: "InvalidAccount",
234
+ inputs: [],
235
+ },
236
+ ];
237
+ class IERC20Metadata__factory {
238
+ static createInterface() {
239
+ return new ethers_1.Interface(_abi);
240
+ }
241
+ static connect(address, runner) {
242
+ return new ethers_1.Contract(address, _abi, runner);
243
+ }
244
+ }
245
+ exports.IERC20Metadata__factory = IERC20Metadata__factory;
246
+ IERC20Metadata__factory.abi = _abi;
@@ -490,16 +490,6 @@ export declare class IGateway__factory {
490
490
  readonly name: "TokenTransferFeesChanged";
491
491
  readonly inputs: readonly [];
492
492
  readonly anonymous: false;
493
- }, {
494
- readonly type: "event";
495
- readonly name: "Upgraded";
496
- readonly inputs: readonly [{
497
- readonly name: "implementation";
498
- readonly type: "address";
499
- readonly indexed: true;
500
- readonly internalType: "address";
501
- }];
502
- readonly anonymous: false;
503
493
  }];
504
494
  static createInterface(): IGatewayInterface;
505
495
  static connect(address: string, runner?: ContractRunner | null): IGateway;
@@ -1 +1 @@
1
- {"version":3,"file":"IGateway__factory.d.ts","sourceRoot":"","sources":["../../src/factories/IGateway__factory.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuB,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAClE,OAAO,KAAK,EAAE,QAAQ,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAuoB/D,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,iBAAiB;IAG3C,MAAM,CAAC,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,cAAc,GAAG,IAAI,GAAG,QAAQ;CAG1E"}
1
+ {"version":3,"file":"IGateway__factory.d.ts","sourceRoot":"","sources":["../../src/factories/IGateway__factory.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuB,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAClE,OAAO,KAAK,EAAE,QAAQ,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AA0nB/D,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,iBAAiB;IAG3C,MAAM,CAAC,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,cAAc,GAAG,IAAI,GAAG,QAAQ;CAG1E"}
@@ -635,19 +635,6 @@ const _abi = [
635
635
  inputs: [],
636
636
  anonymous: false,
637
637
  },
638
- {
639
- type: "event",
640
- name: "Upgraded",
641
- inputs: [
642
- {
643
- name: "implementation",
644
- type: "address",
645
- indexed: true,
646
- internalType: "address",
647
- },
648
- ],
649
- anonymous: false,
650
- },
651
638
  ];
652
639
  class IGateway__factory {
653
640
  static createInterface() {
@@ -0,0 +1,242 @@
1
+ import { ContractFactory, ContractTransactionResponse } from "ethers";
2
+ import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
3
+ import type { NonPayableOverrides } from "../common";
4
+ import type { WETH9, WETH9Interface } from "../WETH9";
5
+ type WETH9ConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
6
+ export declare class WETH9__factory extends ContractFactory {
7
+ constructor(...args: WETH9ConstructorParams);
8
+ getDeployTransaction(overrides?: NonPayableOverrides & {
9
+ from?: string;
10
+ }): Promise<ContractDeployTransaction>;
11
+ deploy(overrides?: NonPayableOverrides & {
12
+ from?: string;
13
+ }): Promise<WETH9 & {
14
+ deploymentTransaction(): ContractTransactionResponse;
15
+ }>;
16
+ connect(runner: ContractRunner | null): WETH9__factory;
17
+ static readonly bytecode = "0x6080604052346100cb57600061001581546100d0565b601f81116100a1575b50601a6c2bb930b83832b21022ba3432b960991b0181556001906100436001546100d0565b90601f8211610077575b6008630ae8aa8960e31b016001556002805460ff191660121790556040516108d8908161010b8239f35b60018152601f60208220920160051c8201915b828110610097575061004d565b818155830161008a565b818052601f60208320910160051c8101905b8181106100c0575061001e565b8281556001016100b3565b600080fd5b90600182811c92168015610100575b60208310146100ea57565b634e487b7160e01b600052602260045260246000fd5b91607f16916100df56fe60806040818152600480361015610029575b505050361561001f57600080fd5b610027610859565b005b600092833560e01c90816306fdde03146104f257508063095ea7b31461047657806318160ddd1461045b57806323b872dd146104295780632e1a7d4d14610397578063313ce5671461037557806370a082311461033157806395d89b4114610154578063a9059cbb1461011d578063d0e30db0146101035763dd62ed3e0361001157346100ff57816003193601126100ff5760209282916100c8610679565b6100d06106a1565b9173ffffffffffffffffffffffffffffffffffffffff8092168452865283832091168252845220549051908152f35b8280fd5b838060031936011261011a57610117610859565b80f35b80fd5b50503461015057806003193601126101505760209061014761013d610679565b602435903361070d565b90519015158152f35b5080fd5b509190346101505781600319360112610150578051908260018054908160011c9060018316928315610327575b60209384841081146102fb5783885287959493929181156102a05750600114610223575b50505003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019267ffffffffffffffff8411838510176101f757508291826101f3925282610613565b0390f35b806041867f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b600188529193925086917fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b82841061028a57505050907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe092601f928201019181936101a5565b805488850187015287945092850192810161024f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016848701525050151560051b830101905081601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101a5565b60248960228c7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b91607f1691610181565b505034610150576020600319360112610150578060209273ffffffffffffffffffffffffffffffffffffffff610365610679565b1681526003845220549051908152f35b50503461015057816003193601126101505760209060ff600254169051908152f35b50346100ff5760206003193601126100ff5735903383526003602052808320805483811061042557836103c9916106c4565b9055828083801561041b575b8280929181923390f11561041057519081527f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b6560203392a280f35b51913d9150823e3d90fd5b6108fc91506103d5565b8480fd5b5050346101505760606003193601126101505760209061014761044a610679565b6104526106a1565b6044359161070d565b50503461015057816003193601126101505751478152602090f35b50346100ff57816003193601126100ff57602092610492610679565b9183602435928392338252875273ffffffffffffffffffffffffffffffffffffffff8282209516948582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b84915083346100ff57826003193601126100ff5782835460018160011c9060018316928315610609575b60209384841081146102fb5783885287959493929181156102a0575060011461058d5750505003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019267ffffffffffffffff8411838510176101f757508291826101f3925282610613565b8780529193925086917f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b8284106105f357505050907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe092601f928201019181936101a5565b80548885018701528794509285019281016105b8565b91607f169161051c565b60208082528251818301819052939260005b858110610665575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b818101830151848201604001528201610625565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361069c57565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361069c57565b919082039182116106d157565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b919082018092116106d157565b91909173ffffffffffffffffffffffffffffffffffffffff809116916000938385526020926003845260409183838820541061081c573386141580610820575b6107b1575b9180917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9594938789526003865282892061078e8682546106c4565b9055169687815260038552206107a5838254610700565b905551908152a3600190565b85875260048552828720338852855283838820541061081c579180917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef95949387895260048652828920338a52865282892061080e8682546106c4565b905591509192939450610752565b8680fd5b506004855282872033885285527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83882054141561074d565b3360005260036020526040600020610872348254610700565b90556040513481527fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c60203392a256fea2646970667358221220fff724ce99a8dc98c8a38838ac7db0f81faf809bcc52e4c70f12f14487255b5064736f6c63430008170033";
18
+ static readonly abi: readonly [{
19
+ readonly type: "receive";
20
+ readonly stateMutability: "payable";
21
+ }, {
22
+ readonly type: "function";
23
+ readonly name: "allowance";
24
+ readonly inputs: readonly [{
25
+ readonly name: "";
26
+ readonly type: "address";
27
+ readonly internalType: "address";
28
+ }, {
29
+ readonly name: "";
30
+ readonly type: "address";
31
+ readonly internalType: "address";
32
+ }];
33
+ readonly outputs: readonly [{
34
+ readonly name: "";
35
+ readonly type: "uint256";
36
+ readonly internalType: "uint256";
37
+ }];
38
+ readonly stateMutability: "view";
39
+ }, {
40
+ readonly type: "function";
41
+ readonly name: "approve";
42
+ readonly inputs: readonly [{
43
+ readonly name: "guy";
44
+ readonly type: "address";
45
+ readonly internalType: "address";
46
+ }, {
47
+ readonly name: "wad";
48
+ readonly type: "uint256";
49
+ readonly internalType: "uint256";
50
+ }];
51
+ readonly outputs: readonly [{
52
+ readonly name: "";
53
+ readonly type: "bool";
54
+ readonly internalType: "bool";
55
+ }];
56
+ readonly stateMutability: "nonpayable";
57
+ }, {
58
+ readonly type: "function";
59
+ readonly name: "balanceOf";
60
+ readonly inputs: readonly [{
61
+ readonly name: "";
62
+ readonly type: "address";
63
+ readonly internalType: "address";
64
+ }];
65
+ readonly outputs: readonly [{
66
+ readonly name: "";
67
+ readonly type: "uint256";
68
+ readonly internalType: "uint256";
69
+ }];
70
+ readonly stateMutability: "view";
71
+ }, {
72
+ readonly type: "function";
73
+ readonly name: "decimals";
74
+ readonly inputs: readonly [];
75
+ readonly outputs: readonly [{
76
+ readonly name: "";
77
+ readonly type: "uint8";
78
+ readonly internalType: "uint8";
79
+ }];
80
+ readonly stateMutability: "view";
81
+ }, {
82
+ readonly type: "function";
83
+ readonly name: "deposit";
84
+ readonly inputs: readonly [];
85
+ readonly outputs: readonly [];
86
+ readonly stateMutability: "payable";
87
+ }, {
88
+ readonly type: "function";
89
+ readonly name: "name";
90
+ readonly inputs: readonly [];
91
+ readonly outputs: readonly [{
92
+ readonly name: "";
93
+ readonly type: "string";
94
+ readonly internalType: "string";
95
+ }];
96
+ readonly stateMutability: "view";
97
+ }, {
98
+ readonly type: "function";
99
+ readonly name: "symbol";
100
+ readonly inputs: readonly [];
101
+ readonly outputs: readonly [{
102
+ readonly name: "";
103
+ readonly type: "string";
104
+ readonly internalType: "string";
105
+ }];
106
+ readonly stateMutability: "view";
107
+ }, {
108
+ readonly type: "function";
109
+ readonly name: "totalSupply";
110
+ readonly inputs: readonly [];
111
+ readonly outputs: readonly [{
112
+ readonly name: "";
113
+ readonly type: "uint256";
114
+ readonly internalType: "uint256";
115
+ }];
116
+ readonly stateMutability: "view";
117
+ }, {
118
+ readonly type: "function";
119
+ readonly name: "transfer";
120
+ readonly inputs: readonly [{
121
+ readonly name: "dst";
122
+ readonly type: "address";
123
+ readonly internalType: "address";
124
+ }, {
125
+ readonly name: "wad";
126
+ readonly type: "uint256";
127
+ readonly internalType: "uint256";
128
+ }];
129
+ readonly outputs: readonly [{
130
+ readonly name: "";
131
+ readonly type: "bool";
132
+ readonly internalType: "bool";
133
+ }];
134
+ readonly stateMutability: "nonpayable";
135
+ }, {
136
+ readonly type: "function";
137
+ readonly name: "transferFrom";
138
+ readonly inputs: readonly [{
139
+ readonly name: "src";
140
+ readonly type: "address";
141
+ readonly internalType: "address";
142
+ }, {
143
+ readonly name: "dst";
144
+ readonly type: "address";
145
+ readonly internalType: "address";
146
+ }, {
147
+ readonly name: "wad";
148
+ readonly type: "uint256";
149
+ readonly internalType: "uint256";
150
+ }];
151
+ readonly outputs: readonly [{
152
+ readonly name: "";
153
+ readonly type: "bool";
154
+ readonly internalType: "bool";
155
+ }];
156
+ readonly stateMutability: "nonpayable";
157
+ }, {
158
+ readonly type: "function";
159
+ readonly name: "withdraw";
160
+ readonly inputs: readonly [{
161
+ readonly name: "wad";
162
+ readonly type: "uint256";
163
+ readonly internalType: "uint256";
164
+ }];
165
+ readonly outputs: readonly [];
166
+ readonly stateMutability: "nonpayable";
167
+ }, {
168
+ readonly type: "event";
169
+ readonly name: "Approval";
170
+ readonly inputs: readonly [{
171
+ readonly name: "src";
172
+ readonly type: "address";
173
+ readonly indexed: true;
174
+ readonly internalType: "address";
175
+ }, {
176
+ readonly name: "guy";
177
+ readonly type: "address";
178
+ readonly indexed: true;
179
+ readonly internalType: "address";
180
+ }, {
181
+ readonly name: "wad";
182
+ readonly type: "uint256";
183
+ readonly indexed: false;
184
+ readonly internalType: "uint256";
185
+ }];
186
+ readonly anonymous: false;
187
+ }, {
188
+ readonly type: "event";
189
+ readonly name: "Deposit";
190
+ readonly inputs: readonly [{
191
+ readonly name: "dst";
192
+ readonly type: "address";
193
+ readonly indexed: true;
194
+ readonly internalType: "address";
195
+ }, {
196
+ readonly name: "wad";
197
+ readonly type: "uint256";
198
+ readonly indexed: false;
199
+ readonly internalType: "uint256";
200
+ }];
201
+ readonly anonymous: false;
202
+ }, {
203
+ readonly type: "event";
204
+ readonly name: "Transfer";
205
+ readonly inputs: readonly [{
206
+ readonly name: "src";
207
+ readonly type: "address";
208
+ readonly indexed: true;
209
+ readonly internalType: "address";
210
+ }, {
211
+ readonly name: "dst";
212
+ readonly type: "address";
213
+ readonly indexed: true;
214
+ readonly internalType: "address";
215
+ }, {
216
+ readonly name: "wad";
217
+ readonly type: "uint256";
218
+ readonly indexed: false;
219
+ readonly internalType: "uint256";
220
+ }];
221
+ readonly anonymous: false;
222
+ }, {
223
+ readonly type: "event";
224
+ readonly name: "Withdrawal";
225
+ readonly inputs: readonly [{
226
+ readonly name: "src";
227
+ readonly type: "address";
228
+ readonly indexed: true;
229
+ readonly internalType: "address";
230
+ }, {
231
+ readonly name: "wad";
232
+ readonly type: "uint256";
233
+ readonly indexed: false;
234
+ readonly internalType: "uint256";
235
+ }];
236
+ readonly anonymous: false;
237
+ }];
238
+ static createInterface(): WETH9Interface;
239
+ static connect(address: string, runner?: ContractRunner | null): WETH9;
240
+ }
241
+ export {};
242
+ //# sourceMappingURL=WETH9__factory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WETH9__factory.d.ts","sourceRoot":"","sources":["../../src/factories/WETH9__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,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAoStD,KAAK,sBAAsB,GACvB,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,GACjB,qBAAqB,CAAC,OAAO,eAAe,CAAC,CAAC;AAMlD,qBAAa,cAAe,SAAQ,eAAe;gBACrC,GAAG,IAAI,EAAE,sBAAsB;IAQlC,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;iCAGpC,2BAA2B;;IAIjD,OAAO,CAAC,MAAM,EAAE,cAAc,GAAG,IAAI,GAAG,cAAc;IAI/D,MAAM,CAAC,QAAQ,CAAC,QAAQ,88JAAa;IACrC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,cAAc;IAGxC,MAAM,CAAC,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,cAAc,GAAG,IAAI,GAAG,KAAK;CAGvE"}