@katanaperps/katana-perps-sdk 2.1.0-beta.8 → 2.1.0-beta.9

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,339 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ {
5
+ "internalType": "address",
6
+ "name": "exchange_",
7
+ "type": "address"
8
+ }
9
+ ],
10
+ "stateMutability": "nonpayable",
11
+ "type": "constructor"
12
+ },
13
+ {
14
+ "inputs": [
15
+ {
16
+ "internalType": "address",
17
+ "name": "owner",
18
+ "type": "address"
19
+ }
20
+ ],
21
+ "name": "OwnableInvalidOwner",
22
+ "type": "error"
23
+ },
24
+ {
25
+ "inputs": [
26
+ {
27
+ "internalType": "address",
28
+ "name": "account",
29
+ "type": "address"
30
+ }
31
+ ],
32
+ "name": "OwnableUnauthorizedAccount",
33
+ "type": "error"
34
+ },
35
+ {
36
+ "inputs": [],
37
+ "name": "ReentrancyGuardReentrantCall",
38
+ "type": "error"
39
+ },
40
+ {
41
+ "inputs": [
42
+ {
43
+ "internalType": "address",
44
+ "name": "token",
45
+ "type": "address"
46
+ }
47
+ ],
48
+ "name": "SafeERC20FailedOperation",
49
+ "type": "error"
50
+ },
51
+ {
52
+ "anonymous": false,
53
+ "inputs": [
54
+ {
55
+ "indexed": true,
56
+ "internalType": "address",
57
+ "name": "wallet",
58
+ "type": "address"
59
+ },
60
+ {
61
+ "indexed": false,
62
+ "internalType": "uint256",
63
+ "name": "quantity",
64
+ "type": "uint256"
65
+ },
66
+ {
67
+ "indexed": false,
68
+ "internalType": "uint256",
69
+ "name": "newTotalOwedQuantity",
70
+ "type": "uint256"
71
+ }
72
+ ],
73
+ "name": "AssetsDistributed",
74
+ "type": "event"
75
+ },
76
+ {
77
+ "anonymous": false,
78
+ "inputs": [
79
+ {
80
+ "indexed": false,
81
+ "internalType": "address",
82
+ "name": "ownerWallet",
83
+ "type": "address"
84
+ },
85
+ {
86
+ "indexed": false,
87
+ "internalType": "uint256",
88
+ "name": "quantity",
89
+ "type": "uint256"
90
+ },
91
+ {
92
+ "indexed": false,
93
+ "internalType": "uint256",
94
+ "name": "newEscrowBalance",
95
+ "type": "uint256"
96
+ }
97
+ ],
98
+ "name": "EscrowWithdrawn",
99
+ "type": "event"
100
+ },
101
+ {
102
+ "anonymous": false,
103
+ "inputs": [
104
+ {
105
+ "indexed": true,
106
+ "internalType": "address",
107
+ "name": "previousOwner",
108
+ "type": "address"
109
+ },
110
+ {
111
+ "indexed": true,
112
+ "internalType": "address",
113
+ "name": "newOwner",
114
+ "type": "address"
115
+ }
116
+ ],
117
+ "name": "OwnershipTransferStarted",
118
+ "type": "event"
119
+ },
120
+ {
121
+ "anonymous": false,
122
+ "inputs": [
123
+ {
124
+ "indexed": true,
125
+ "internalType": "address",
126
+ "name": "previousOwner",
127
+ "type": "address"
128
+ },
129
+ {
130
+ "indexed": true,
131
+ "internalType": "address",
132
+ "name": "newOwner",
133
+ "type": "address"
134
+ }
135
+ ],
136
+ "name": "OwnershipTransferred",
137
+ "type": "event"
138
+ },
139
+ {
140
+ "inputs": [],
141
+ "name": "acceptOwnership",
142
+ "outputs": [],
143
+ "stateMutability": "nonpayable",
144
+ "type": "function"
145
+ },
146
+ {
147
+ "inputs": [
148
+ {
149
+ "internalType": "address[]",
150
+ "name": "wallets",
151
+ "type": "address[]"
152
+ },
153
+ {
154
+ "internalType": "uint256[]",
155
+ "name": "newOwedQuantities",
156
+ "type": "uint256[]"
157
+ }
158
+ ],
159
+ "name": "bulkAssignOwedQuantities",
160
+ "outputs": [],
161
+ "stateMutability": "nonpayable",
162
+ "type": "function"
163
+ },
164
+ {
165
+ "inputs": [
166
+ {
167
+ "internalType": "address",
168
+ "name": "walletAddress",
169
+ "type": "address"
170
+ }
171
+ ],
172
+ "name": "distribute",
173
+ "outputs": [],
174
+ "stateMutability": "nonpayable",
175
+ "type": "function"
176
+ },
177
+ {
178
+ "inputs": [
179
+ {
180
+ "internalType": "address",
181
+ "name": "",
182
+ "type": "address"
183
+ }
184
+ ],
185
+ "name": "distributedQuantityByWallet",
186
+ "outputs": [
187
+ {
188
+ "internalType": "uint256",
189
+ "name": "",
190
+ "type": "uint256"
191
+ }
192
+ ],
193
+ "stateMutability": "view",
194
+ "type": "function"
195
+ },
196
+ {
197
+ "inputs": [],
198
+ "name": "exchange",
199
+ "outputs": [
200
+ {
201
+ "internalType": "contract IExchange",
202
+ "name": "",
203
+ "type": "address"
204
+ }
205
+ ],
206
+ "stateMutability": "view",
207
+ "type": "function"
208
+ },
209
+ {
210
+ "inputs": [],
211
+ "name": "isDistributeEnabled",
212
+ "outputs": [
213
+ {
214
+ "internalType": "bool",
215
+ "name": "",
216
+ "type": "bool"
217
+ }
218
+ ],
219
+ "stateMutability": "view",
220
+ "type": "function"
221
+ },
222
+ {
223
+ "inputs": [
224
+ {
225
+ "internalType": "address",
226
+ "name": "",
227
+ "type": "address"
228
+ }
229
+ ],
230
+ "name": "owedQuantityByWallet",
231
+ "outputs": [
232
+ {
233
+ "internalType": "uint256",
234
+ "name": "",
235
+ "type": "uint256"
236
+ }
237
+ ],
238
+ "stateMutability": "view",
239
+ "type": "function"
240
+ },
241
+ {
242
+ "inputs": [],
243
+ "name": "owner",
244
+ "outputs": [
245
+ {
246
+ "internalType": "address",
247
+ "name": "",
248
+ "type": "address"
249
+ }
250
+ ],
251
+ "stateMutability": "view",
252
+ "type": "function"
253
+ },
254
+ {
255
+ "inputs": [],
256
+ "name": "pendingOwner",
257
+ "outputs": [
258
+ {
259
+ "internalType": "address",
260
+ "name": "",
261
+ "type": "address"
262
+ }
263
+ ],
264
+ "stateMutability": "view",
265
+ "type": "function"
266
+ },
267
+ {
268
+ "inputs": [],
269
+ "name": "quoteAsset",
270
+ "outputs": [
271
+ {
272
+ "internalType": "contract IERC20",
273
+ "name": "",
274
+ "type": "address"
275
+ }
276
+ ],
277
+ "stateMutability": "view",
278
+ "type": "function"
279
+ },
280
+ {
281
+ "inputs": [],
282
+ "name": "renounceOwnership",
283
+ "outputs": [],
284
+ "stateMutability": "nonpayable",
285
+ "type": "function"
286
+ },
287
+ {
288
+ "inputs": [
289
+ {
290
+ "internalType": "bool",
291
+ "name": "isEnabled",
292
+ "type": "bool"
293
+ }
294
+ ],
295
+ "name": "setDistributeEnabled",
296
+ "outputs": [],
297
+ "stateMutability": "nonpayable",
298
+ "type": "function"
299
+ },
300
+ {
301
+ "inputs": [],
302
+ "name": "totalOwedQuantity",
303
+ "outputs": [
304
+ {
305
+ "internalType": "uint256",
306
+ "name": "",
307
+ "type": "uint256"
308
+ }
309
+ ],
310
+ "stateMutability": "view",
311
+ "type": "function"
312
+ },
313
+ {
314
+ "inputs": [
315
+ {
316
+ "internalType": "address",
317
+ "name": "newOwner",
318
+ "type": "address"
319
+ }
320
+ ],
321
+ "name": "transferOwnership",
322
+ "outputs": [],
323
+ "stateMutability": "nonpayable",
324
+ "type": "function"
325
+ },
326
+ {
327
+ "inputs": [
328
+ {
329
+ "internalType": "uint256",
330
+ "name": "quantity",
331
+ "type": "uint256"
332
+ }
333
+ ],
334
+ "name": "withdrawEscrow",
335
+ "outputs": [],
336
+ "stateMutability": "nonpayable",
337
+ "type": "function"
338
+ }
339
+ ]
@@ -0,0 +1,196 @@
1
+ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from 'ethers';
2
+ import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from './common';
3
+ export interface EarningsEscrow_v2Interface extends Interface {
4
+ getFunction(nameOrSignature: 'acceptOwnership' | 'bulkAssignOwedQuantities' | 'distribute' | 'distributedQuantityByWallet' | 'exchange' | 'isDistributeEnabled' | 'owedQuantityByWallet' | 'owner' | 'pendingOwner' | 'quoteAsset' | 'renounceOwnership' | 'setDistributeEnabled' | 'totalOwedQuantity' | 'transferOwnership' | 'withdrawEscrow'): FunctionFragment;
5
+ getEvent(nameOrSignatureOrTopic: 'AssetsDistributed' | 'EscrowWithdrawn' | 'OwnershipTransferStarted' | 'OwnershipTransferred'): EventFragment;
6
+ encodeFunctionData(functionFragment: 'acceptOwnership', values?: undefined): string;
7
+ encodeFunctionData(functionFragment: 'bulkAssignOwedQuantities', values: [AddressLike[], BigNumberish[]]): string;
8
+ encodeFunctionData(functionFragment: 'distribute', values: [AddressLike]): string;
9
+ encodeFunctionData(functionFragment: 'distributedQuantityByWallet', values: [AddressLike]): string;
10
+ encodeFunctionData(functionFragment: 'exchange', values?: undefined): string;
11
+ encodeFunctionData(functionFragment: 'isDistributeEnabled', values?: undefined): string;
12
+ encodeFunctionData(functionFragment: 'owedQuantityByWallet', values: [AddressLike]): string;
13
+ encodeFunctionData(functionFragment: 'owner', values?: undefined): string;
14
+ encodeFunctionData(functionFragment: 'pendingOwner', values?: undefined): string;
15
+ encodeFunctionData(functionFragment: 'quoteAsset', values?: undefined): string;
16
+ encodeFunctionData(functionFragment: 'renounceOwnership', values?: undefined): string;
17
+ encodeFunctionData(functionFragment: 'setDistributeEnabled', values: [boolean]): string;
18
+ encodeFunctionData(functionFragment: 'totalOwedQuantity', values?: undefined): string;
19
+ encodeFunctionData(functionFragment: 'transferOwnership', values: [AddressLike]): string;
20
+ encodeFunctionData(functionFragment: 'withdrawEscrow', values: [BigNumberish]): string;
21
+ decodeFunctionResult(functionFragment: 'acceptOwnership', data: BytesLike): Result;
22
+ decodeFunctionResult(functionFragment: 'bulkAssignOwedQuantities', data: BytesLike): Result;
23
+ decodeFunctionResult(functionFragment: 'distribute', data: BytesLike): Result;
24
+ decodeFunctionResult(functionFragment: 'distributedQuantityByWallet', data: BytesLike): Result;
25
+ decodeFunctionResult(functionFragment: 'exchange', data: BytesLike): Result;
26
+ decodeFunctionResult(functionFragment: 'isDistributeEnabled', data: BytesLike): Result;
27
+ decodeFunctionResult(functionFragment: 'owedQuantityByWallet', data: BytesLike): Result;
28
+ decodeFunctionResult(functionFragment: 'owner', data: BytesLike): Result;
29
+ decodeFunctionResult(functionFragment: 'pendingOwner', data: BytesLike): Result;
30
+ decodeFunctionResult(functionFragment: 'quoteAsset', data: BytesLike): Result;
31
+ decodeFunctionResult(functionFragment: 'renounceOwnership', data: BytesLike): Result;
32
+ decodeFunctionResult(functionFragment: 'setDistributeEnabled', data: BytesLike): Result;
33
+ decodeFunctionResult(functionFragment: 'totalOwedQuantity', data: BytesLike): Result;
34
+ decodeFunctionResult(functionFragment: 'transferOwnership', data: BytesLike): Result;
35
+ decodeFunctionResult(functionFragment: 'withdrawEscrow', data: BytesLike): Result;
36
+ }
37
+ export declare namespace AssetsDistributedEvent {
38
+ type InputTuple = [
39
+ wallet: AddressLike,
40
+ quantity: BigNumberish,
41
+ newTotalOwedQuantity: BigNumberish
42
+ ];
43
+ type OutputTuple = [
44
+ wallet: string,
45
+ quantity: bigint,
46
+ newTotalOwedQuantity: bigint
47
+ ];
48
+ interface OutputObject {
49
+ wallet: string;
50
+ quantity: bigint;
51
+ newTotalOwedQuantity: bigint;
52
+ }
53
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
54
+ type Filter = TypedDeferredTopicFilter<Event>;
55
+ type Log = TypedEventLog<Event>;
56
+ type LogDescription = TypedLogDescription<Event>;
57
+ }
58
+ export declare namespace EscrowWithdrawnEvent {
59
+ type InputTuple = [
60
+ ownerWallet: AddressLike,
61
+ quantity: BigNumberish,
62
+ newEscrowBalance: BigNumberish
63
+ ];
64
+ type OutputTuple = [
65
+ ownerWallet: string,
66
+ quantity: bigint,
67
+ newEscrowBalance: bigint
68
+ ];
69
+ interface OutputObject {
70
+ ownerWallet: string;
71
+ quantity: bigint;
72
+ newEscrowBalance: bigint;
73
+ }
74
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
75
+ type Filter = TypedDeferredTopicFilter<Event>;
76
+ type Log = TypedEventLog<Event>;
77
+ type LogDescription = TypedLogDescription<Event>;
78
+ }
79
+ export declare namespace OwnershipTransferStartedEvent {
80
+ type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
81
+ type OutputTuple = [previousOwner: string, newOwner: string];
82
+ interface OutputObject {
83
+ previousOwner: string;
84
+ newOwner: string;
85
+ }
86
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
87
+ type Filter = TypedDeferredTopicFilter<Event>;
88
+ type Log = TypedEventLog<Event>;
89
+ type LogDescription = TypedLogDescription<Event>;
90
+ }
91
+ export declare namespace OwnershipTransferredEvent {
92
+ type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
93
+ type OutputTuple = [previousOwner: string, newOwner: string];
94
+ interface OutputObject {
95
+ previousOwner: string;
96
+ newOwner: string;
97
+ }
98
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
99
+ type Filter = TypedDeferredTopicFilter<Event>;
100
+ type Log = TypedEventLog<Event>;
101
+ type LogDescription = TypedLogDescription<Event>;
102
+ }
103
+ export interface EarningsEscrow_v2 extends BaseContract {
104
+ connect(runner?: ContractRunner | null): EarningsEscrow_v2;
105
+ waitForDeployment(): Promise<this>;
106
+ interface: EarningsEscrow_v2Interface;
107
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
108
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
109
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
110
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
111
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
112
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
113
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
114
+ listeners(eventName?: string): Promise<Array<Listener>>;
115
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
116
+ acceptOwnership: TypedContractMethod<[], [void], 'nonpayable'>;
117
+ bulkAssignOwedQuantities: TypedContractMethod<[
118
+ wallets: AddressLike[],
119
+ newOwedQuantities: BigNumberish[]
120
+ ], [
121
+ void
122
+ ], 'nonpayable'>;
123
+ distribute: TypedContractMethod<[
124
+ walletAddress: AddressLike
125
+ ], [
126
+ void
127
+ ], 'nonpayable'>;
128
+ distributedQuantityByWallet: TypedContractMethod<[
129
+ arg0: AddressLike
130
+ ], [
131
+ bigint
132
+ ], 'view'>;
133
+ exchange: TypedContractMethod<[], [string], 'view'>;
134
+ isDistributeEnabled: TypedContractMethod<[], [boolean], 'view'>;
135
+ owedQuantityByWallet: TypedContractMethod<[
136
+ arg0: AddressLike
137
+ ], [
138
+ bigint
139
+ ], 'view'>;
140
+ owner: TypedContractMethod<[], [string], 'view'>;
141
+ pendingOwner: TypedContractMethod<[], [string], 'view'>;
142
+ quoteAsset: TypedContractMethod<[], [string], 'view'>;
143
+ renounceOwnership: TypedContractMethod<[], [void], 'nonpayable'>;
144
+ setDistributeEnabled: TypedContractMethod<[
145
+ isEnabled: boolean
146
+ ], [
147
+ void
148
+ ], 'nonpayable'>;
149
+ totalOwedQuantity: TypedContractMethod<[], [bigint], 'view'>;
150
+ transferOwnership: TypedContractMethod<[
151
+ newOwner: AddressLike
152
+ ], [
153
+ void
154
+ ], 'nonpayable'>;
155
+ withdrawEscrow: TypedContractMethod<[
156
+ quantity: BigNumberish
157
+ ], [
158
+ void
159
+ ], 'nonpayable'>;
160
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
161
+ getFunction(nameOrSignature: 'acceptOwnership'): TypedContractMethod<[], [void], 'nonpayable'>;
162
+ getFunction(nameOrSignature: 'bulkAssignOwedQuantities'): TypedContractMethod<[
163
+ wallets: AddressLike[],
164
+ newOwedQuantities: BigNumberish[]
165
+ ], [
166
+ void
167
+ ], 'nonpayable'>;
168
+ getFunction(nameOrSignature: 'distribute'): TypedContractMethod<[walletAddress: AddressLike], [void], 'nonpayable'>;
169
+ getFunction(nameOrSignature: 'distributedQuantityByWallet'): TypedContractMethod<[arg0: AddressLike], [bigint], 'view'>;
170
+ getFunction(nameOrSignature: 'exchange'): TypedContractMethod<[], [string], 'view'>;
171
+ getFunction(nameOrSignature: 'isDistributeEnabled'): TypedContractMethod<[], [boolean], 'view'>;
172
+ getFunction(nameOrSignature: 'owedQuantityByWallet'): TypedContractMethod<[arg0: AddressLike], [bigint], 'view'>;
173
+ getFunction(nameOrSignature: 'owner'): TypedContractMethod<[], [string], 'view'>;
174
+ getFunction(nameOrSignature: 'pendingOwner'): TypedContractMethod<[], [string], 'view'>;
175
+ getFunction(nameOrSignature: 'quoteAsset'): TypedContractMethod<[], [string], 'view'>;
176
+ getFunction(nameOrSignature: 'renounceOwnership'): TypedContractMethod<[], [void], 'nonpayable'>;
177
+ getFunction(nameOrSignature: 'setDistributeEnabled'): TypedContractMethod<[isEnabled: boolean], [void], 'nonpayable'>;
178
+ getFunction(nameOrSignature: 'totalOwedQuantity'): TypedContractMethod<[], [bigint], 'view'>;
179
+ getFunction(nameOrSignature: 'transferOwnership'): TypedContractMethod<[newOwner: AddressLike], [void], 'nonpayable'>;
180
+ getFunction(nameOrSignature: 'withdrawEscrow'): TypedContractMethod<[quantity: BigNumberish], [void], 'nonpayable'>;
181
+ getEvent(key: 'AssetsDistributed'): TypedContractEvent<AssetsDistributedEvent.InputTuple, AssetsDistributedEvent.OutputTuple, AssetsDistributedEvent.OutputObject>;
182
+ getEvent(key: 'EscrowWithdrawn'): TypedContractEvent<EscrowWithdrawnEvent.InputTuple, EscrowWithdrawnEvent.OutputTuple, EscrowWithdrawnEvent.OutputObject>;
183
+ getEvent(key: 'OwnershipTransferStarted'): TypedContractEvent<OwnershipTransferStartedEvent.InputTuple, OwnershipTransferStartedEvent.OutputTuple, OwnershipTransferStartedEvent.OutputObject>;
184
+ getEvent(key: 'OwnershipTransferred'): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
185
+ filters: {
186
+ 'AssetsDistributed(address,uint256,uint256)': TypedContractEvent<AssetsDistributedEvent.InputTuple, AssetsDistributedEvent.OutputTuple, AssetsDistributedEvent.OutputObject>;
187
+ AssetsDistributed: TypedContractEvent<AssetsDistributedEvent.InputTuple, AssetsDistributedEvent.OutputTuple, AssetsDistributedEvent.OutputObject>;
188
+ 'EscrowWithdrawn(address,uint256,uint256)': TypedContractEvent<EscrowWithdrawnEvent.InputTuple, EscrowWithdrawnEvent.OutputTuple, EscrowWithdrawnEvent.OutputObject>;
189
+ EscrowWithdrawn: TypedContractEvent<EscrowWithdrawnEvent.InputTuple, EscrowWithdrawnEvent.OutputTuple, EscrowWithdrawnEvent.OutputObject>;
190
+ 'OwnershipTransferStarted(address,address)': TypedContractEvent<OwnershipTransferStartedEvent.InputTuple, OwnershipTransferStartedEvent.OutputTuple, OwnershipTransferStartedEvent.OutputObject>;
191
+ OwnershipTransferStarted: TypedContractEvent<OwnershipTransferStartedEvent.InputTuple, OwnershipTransferStartedEvent.OutputTuple, OwnershipTransferStartedEvent.OutputObject>;
192
+ 'OwnershipTransferred(address,address)': TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
193
+ OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
194
+ };
195
+ }
196
+ //# sourceMappingURL=EarningsEscrow_v2.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EarningsEscrow_v2.d.ts","sourceRoot":"","sources":["../../src/typechain-types/EarningsEscrow_v2.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,268 @@
1
+ import { type ContractRunner } from 'ethers';
2
+ import type { EarningsEscrow_v2, EarningsEscrow_v2Interface } from '../EarningsEscrow_v2';
3
+ export declare class EarningsEscrow_v2__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [{
6
+ readonly internalType: "address";
7
+ readonly name: "exchange_";
8
+ readonly type: "address";
9
+ }];
10
+ readonly stateMutability: "nonpayable";
11
+ readonly type: "constructor";
12
+ }, {
13
+ readonly inputs: readonly [{
14
+ readonly internalType: "address";
15
+ readonly name: "owner";
16
+ readonly type: "address";
17
+ }];
18
+ readonly name: "OwnableInvalidOwner";
19
+ readonly type: "error";
20
+ }, {
21
+ readonly inputs: readonly [{
22
+ readonly internalType: "address";
23
+ readonly name: "account";
24
+ readonly type: "address";
25
+ }];
26
+ readonly name: "OwnableUnauthorizedAccount";
27
+ readonly type: "error";
28
+ }, {
29
+ readonly inputs: readonly [];
30
+ readonly name: "ReentrancyGuardReentrantCall";
31
+ readonly type: "error";
32
+ }, {
33
+ readonly inputs: readonly [{
34
+ readonly internalType: "address";
35
+ readonly name: "token";
36
+ readonly type: "address";
37
+ }];
38
+ readonly name: "SafeERC20FailedOperation";
39
+ readonly type: "error";
40
+ }, {
41
+ readonly anonymous: false;
42
+ readonly inputs: readonly [{
43
+ readonly indexed: true;
44
+ readonly internalType: "address";
45
+ readonly name: "wallet";
46
+ readonly type: "address";
47
+ }, {
48
+ readonly indexed: false;
49
+ readonly internalType: "uint256";
50
+ readonly name: "quantity";
51
+ readonly type: "uint256";
52
+ }, {
53
+ readonly indexed: false;
54
+ readonly internalType: "uint256";
55
+ readonly name: "newTotalOwedQuantity";
56
+ readonly type: "uint256";
57
+ }];
58
+ readonly name: "AssetsDistributed";
59
+ readonly type: "event";
60
+ }, {
61
+ readonly anonymous: false;
62
+ readonly inputs: readonly [{
63
+ readonly indexed: false;
64
+ readonly internalType: "address";
65
+ readonly name: "ownerWallet";
66
+ readonly type: "address";
67
+ }, {
68
+ readonly indexed: false;
69
+ readonly internalType: "uint256";
70
+ readonly name: "quantity";
71
+ readonly type: "uint256";
72
+ }, {
73
+ readonly indexed: false;
74
+ readonly internalType: "uint256";
75
+ readonly name: "newEscrowBalance";
76
+ readonly type: "uint256";
77
+ }];
78
+ readonly name: "EscrowWithdrawn";
79
+ readonly type: "event";
80
+ }, {
81
+ readonly anonymous: false;
82
+ readonly inputs: readonly [{
83
+ readonly indexed: true;
84
+ readonly internalType: "address";
85
+ readonly name: "previousOwner";
86
+ readonly type: "address";
87
+ }, {
88
+ readonly indexed: true;
89
+ readonly internalType: "address";
90
+ readonly name: "newOwner";
91
+ readonly type: "address";
92
+ }];
93
+ readonly name: "OwnershipTransferStarted";
94
+ readonly type: "event";
95
+ }, {
96
+ readonly anonymous: false;
97
+ readonly inputs: readonly [{
98
+ readonly indexed: true;
99
+ readonly internalType: "address";
100
+ readonly name: "previousOwner";
101
+ readonly type: "address";
102
+ }, {
103
+ readonly indexed: true;
104
+ readonly internalType: "address";
105
+ readonly name: "newOwner";
106
+ readonly type: "address";
107
+ }];
108
+ readonly name: "OwnershipTransferred";
109
+ readonly type: "event";
110
+ }, {
111
+ readonly inputs: readonly [];
112
+ readonly name: "acceptOwnership";
113
+ readonly outputs: readonly [];
114
+ readonly stateMutability: "nonpayable";
115
+ readonly type: "function";
116
+ }, {
117
+ readonly inputs: readonly [{
118
+ readonly internalType: "address[]";
119
+ readonly name: "wallets";
120
+ readonly type: "address[]";
121
+ }, {
122
+ readonly internalType: "uint256[]";
123
+ readonly name: "newOwedQuantities";
124
+ readonly type: "uint256[]";
125
+ }];
126
+ readonly name: "bulkAssignOwedQuantities";
127
+ readonly outputs: readonly [];
128
+ readonly stateMutability: "nonpayable";
129
+ readonly type: "function";
130
+ }, {
131
+ readonly inputs: readonly [{
132
+ readonly internalType: "address";
133
+ readonly name: "walletAddress";
134
+ readonly type: "address";
135
+ }];
136
+ readonly name: "distribute";
137
+ readonly outputs: readonly [];
138
+ readonly stateMutability: "nonpayable";
139
+ readonly type: "function";
140
+ }, {
141
+ readonly inputs: readonly [{
142
+ readonly internalType: "address";
143
+ readonly name: "";
144
+ readonly type: "address";
145
+ }];
146
+ readonly name: "distributedQuantityByWallet";
147
+ readonly outputs: readonly [{
148
+ readonly internalType: "uint256";
149
+ readonly name: "";
150
+ readonly type: "uint256";
151
+ }];
152
+ readonly stateMutability: "view";
153
+ readonly type: "function";
154
+ }, {
155
+ readonly inputs: readonly [];
156
+ readonly name: "exchange";
157
+ readonly outputs: readonly [{
158
+ readonly internalType: "contract IExchange";
159
+ readonly name: "";
160
+ readonly type: "address";
161
+ }];
162
+ readonly stateMutability: "view";
163
+ readonly type: "function";
164
+ }, {
165
+ readonly inputs: readonly [];
166
+ readonly name: "isDistributeEnabled";
167
+ readonly outputs: readonly [{
168
+ readonly internalType: "bool";
169
+ readonly name: "";
170
+ readonly type: "bool";
171
+ }];
172
+ readonly stateMutability: "view";
173
+ readonly type: "function";
174
+ }, {
175
+ readonly inputs: readonly [{
176
+ readonly internalType: "address";
177
+ readonly name: "";
178
+ readonly type: "address";
179
+ }];
180
+ readonly name: "owedQuantityByWallet";
181
+ readonly outputs: readonly [{
182
+ readonly internalType: "uint256";
183
+ readonly name: "";
184
+ readonly type: "uint256";
185
+ }];
186
+ readonly stateMutability: "view";
187
+ readonly type: "function";
188
+ }, {
189
+ readonly inputs: readonly [];
190
+ readonly name: "owner";
191
+ readonly outputs: readonly [{
192
+ readonly internalType: "address";
193
+ readonly name: "";
194
+ readonly type: "address";
195
+ }];
196
+ readonly stateMutability: "view";
197
+ readonly type: "function";
198
+ }, {
199
+ readonly inputs: readonly [];
200
+ readonly name: "pendingOwner";
201
+ readonly outputs: readonly [{
202
+ readonly internalType: "address";
203
+ readonly name: "";
204
+ readonly type: "address";
205
+ }];
206
+ readonly stateMutability: "view";
207
+ readonly type: "function";
208
+ }, {
209
+ readonly inputs: readonly [];
210
+ readonly name: "quoteAsset";
211
+ readonly outputs: readonly [{
212
+ readonly internalType: "contract IERC20";
213
+ readonly name: "";
214
+ readonly type: "address";
215
+ }];
216
+ readonly stateMutability: "view";
217
+ readonly type: "function";
218
+ }, {
219
+ readonly inputs: readonly [];
220
+ readonly name: "renounceOwnership";
221
+ readonly outputs: readonly [];
222
+ readonly stateMutability: "nonpayable";
223
+ readonly type: "function";
224
+ }, {
225
+ readonly inputs: readonly [{
226
+ readonly internalType: "bool";
227
+ readonly name: "isEnabled";
228
+ readonly type: "bool";
229
+ }];
230
+ readonly name: "setDistributeEnabled";
231
+ readonly outputs: readonly [];
232
+ readonly stateMutability: "nonpayable";
233
+ readonly type: "function";
234
+ }, {
235
+ readonly inputs: readonly [];
236
+ readonly name: "totalOwedQuantity";
237
+ readonly outputs: readonly [{
238
+ readonly internalType: "uint256";
239
+ readonly name: "";
240
+ readonly type: "uint256";
241
+ }];
242
+ readonly stateMutability: "view";
243
+ readonly type: "function";
244
+ }, {
245
+ readonly inputs: readonly [{
246
+ readonly internalType: "address";
247
+ readonly name: "newOwner";
248
+ readonly type: "address";
249
+ }];
250
+ readonly name: "transferOwnership";
251
+ readonly outputs: readonly [];
252
+ readonly stateMutability: "nonpayable";
253
+ readonly type: "function";
254
+ }, {
255
+ readonly inputs: readonly [{
256
+ readonly internalType: "uint256";
257
+ readonly name: "quantity";
258
+ readonly type: "uint256";
259
+ }];
260
+ readonly name: "withdrawEscrow";
261
+ readonly outputs: readonly [];
262
+ readonly stateMutability: "nonpayable";
263
+ readonly type: "function";
264
+ }];
265
+ static createInterface(): EarningsEscrow_v2Interface;
266
+ static connect(address: string, runner?: ContractRunner | null): EarningsEscrow_v2;
267
+ }
268
+ //# sourceMappingURL=EarningsEscrow_v2__factory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EarningsEscrow_v2__factory.d.ts","sourceRoot":"","sources":["../../../src/typechain-types/factories/EarningsEscrow_v2__factory.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuB,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAClE,OAAO,KAAK,EACV,iBAAiB,EACjB,0BAA0B,EAC3B,MAAM,sBAAsB,CAAC;AAsV9B,qBAAa,0BAA0B;IACrC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,0BAA0B;IAGpD,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,MAAM,CAAC,EAAE,cAAc,GAAG,IAAI,GAC7B,iBAAiB;CAGrB"}
@@ -0,0 +1,356 @@
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.EarningsEscrow_v2__factory = void 0;
7
+ const ethers_1 = require("ethers");
8
+ const _abi = [
9
+ {
10
+ inputs: [
11
+ {
12
+ internalType: 'address',
13
+ name: 'exchange_',
14
+ type: 'address',
15
+ },
16
+ ],
17
+ stateMutability: 'nonpayable',
18
+ type: 'constructor',
19
+ },
20
+ {
21
+ inputs: [
22
+ {
23
+ internalType: 'address',
24
+ name: 'owner',
25
+ type: 'address',
26
+ },
27
+ ],
28
+ name: 'OwnableInvalidOwner',
29
+ type: 'error',
30
+ },
31
+ {
32
+ inputs: [
33
+ {
34
+ internalType: 'address',
35
+ name: 'account',
36
+ type: 'address',
37
+ },
38
+ ],
39
+ name: 'OwnableUnauthorizedAccount',
40
+ type: 'error',
41
+ },
42
+ {
43
+ inputs: [],
44
+ name: 'ReentrancyGuardReentrantCall',
45
+ type: 'error',
46
+ },
47
+ {
48
+ inputs: [
49
+ {
50
+ internalType: 'address',
51
+ name: 'token',
52
+ type: 'address',
53
+ },
54
+ ],
55
+ name: 'SafeERC20FailedOperation',
56
+ type: 'error',
57
+ },
58
+ {
59
+ anonymous: false,
60
+ inputs: [
61
+ {
62
+ indexed: true,
63
+ internalType: 'address',
64
+ name: 'wallet',
65
+ type: 'address',
66
+ },
67
+ {
68
+ indexed: false,
69
+ internalType: 'uint256',
70
+ name: 'quantity',
71
+ type: 'uint256',
72
+ },
73
+ {
74
+ indexed: false,
75
+ internalType: 'uint256',
76
+ name: 'newTotalOwedQuantity',
77
+ type: 'uint256',
78
+ },
79
+ ],
80
+ name: 'AssetsDistributed',
81
+ type: 'event',
82
+ },
83
+ {
84
+ anonymous: false,
85
+ inputs: [
86
+ {
87
+ indexed: false,
88
+ internalType: 'address',
89
+ name: 'ownerWallet',
90
+ type: 'address',
91
+ },
92
+ {
93
+ indexed: false,
94
+ internalType: 'uint256',
95
+ name: 'quantity',
96
+ type: 'uint256',
97
+ },
98
+ {
99
+ indexed: false,
100
+ internalType: 'uint256',
101
+ name: 'newEscrowBalance',
102
+ type: 'uint256',
103
+ },
104
+ ],
105
+ name: 'EscrowWithdrawn',
106
+ type: 'event',
107
+ },
108
+ {
109
+ anonymous: false,
110
+ inputs: [
111
+ {
112
+ indexed: true,
113
+ internalType: 'address',
114
+ name: 'previousOwner',
115
+ type: 'address',
116
+ },
117
+ {
118
+ indexed: true,
119
+ internalType: 'address',
120
+ name: 'newOwner',
121
+ type: 'address',
122
+ },
123
+ ],
124
+ name: 'OwnershipTransferStarted',
125
+ type: 'event',
126
+ },
127
+ {
128
+ anonymous: false,
129
+ inputs: [
130
+ {
131
+ indexed: true,
132
+ internalType: 'address',
133
+ name: 'previousOwner',
134
+ type: 'address',
135
+ },
136
+ {
137
+ indexed: true,
138
+ internalType: 'address',
139
+ name: 'newOwner',
140
+ type: 'address',
141
+ },
142
+ ],
143
+ name: 'OwnershipTransferred',
144
+ type: 'event',
145
+ },
146
+ {
147
+ inputs: [],
148
+ name: 'acceptOwnership',
149
+ outputs: [],
150
+ stateMutability: 'nonpayable',
151
+ type: 'function',
152
+ },
153
+ {
154
+ inputs: [
155
+ {
156
+ internalType: 'address[]',
157
+ name: 'wallets',
158
+ type: 'address[]',
159
+ },
160
+ {
161
+ internalType: 'uint256[]',
162
+ name: 'newOwedQuantities',
163
+ type: 'uint256[]',
164
+ },
165
+ ],
166
+ name: 'bulkAssignOwedQuantities',
167
+ outputs: [],
168
+ stateMutability: 'nonpayable',
169
+ type: 'function',
170
+ },
171
+ {
172
+ inputs: [
173
+ {
174
+ internalType: 'address',
175
+ name: 'walletAddress',
176
+ type: 'address',
177
+ },
178
+ ],
179
+ name: 'distribute',
180
+ outputs: [],
181
+ stateMutability: 'nonpayable',
182
+ type: 'function',
183
+ },
184
+ {
185
+ inputs: [
186
+ {
187
+ internalType: 'address',
188
+ name: '',
189
+ type: 'address',
190
+ },
191
+ ],
192
+ name: 'distributedQuantityByWallet',
193
+ outputs: [
194
+ {
195
+ internalType: 'uint256',
196
+ name: '',
197
+ type: 'uint256',
198
+ },
199
+ ],
200
+ stateMutability: 'view',
201
+ type: 'function',
202
+ },
203
+ {
204
+ inputs: [],
205
+ name: 'exchange',
206
+ outputs: [
207
+ {
208
+ internalType: 'contract IExchange',
209
+ name: '',
210
+ type: 'address',
211
+ },
212
+ ],
213
+ stateMutability: 'view',
214
+ type: 'function',
215
+ },
216
+ {
217
+ inputs: [],
218
+ name: 'isDistributeEnabled',
219
+ outputs: [
220
+ {
221
+ internalType: 'bool',
222
+ name: '',
223
+ type: 'bool',
224
+ },
225
+ ],
226
+ stateMutability: 'view',
227
+ type: 'function',
228
+ },
229
+ {
230
+ inputs: [
231
+ {
232
+ internalType: 'address',
233
+ name: '',
234
+ type: 'address',
235
+ },
236
+ ],
237
+ name: 'owedQuantityByWallet',
238
+ outputs: [
239
+ {
240
+ internalType: 'uint256',
241
+ name: '',
242
+ type: 'uint256',
243
+ },
244
+ ],
245
+ stateMutability: 'view',
246
+ type: 'function',
247
+ },
248
+ {
249
+ inputs: [],
250
+ name: 'owner',
251
+ outputs: [
252
+ {
253
+ internalType: 'address',
254
+ name: '',
255
+ type: 'address',
256
+ },
257
+ ],
258
+ stateMutability: 'view',
259
+ type: 'function',
260
+ },
261
+ {
262
+ inputs: [],
263
+ name: 'pendingOwner',
264
+ outputs: [
265
+ {
266
+ internalType: 'address',
267
+ name: '',
268
+ type: 'address',
269
+ },
270
+ ],
271
+ stateMutability: 'view',
272
+ type: 'function',
273
+ },
274
+ {
275
+ inputs: [],
276
+ name: 'quoteAsset',
277
+ outputs: [
278
+ {
279
+ internalType: 'contract IERC20',
280
+ name: '',
281
+ type: 'address',
282
+ },
283
+ ],
284
+ stateMutability: 'view',
285
+ type: 'function',
286
+ },
287
+ {
288
+ inputs: [],
289
+ name: 'renounceOwnership',
290
+ outputs: [],
291
+ stateMutability: 'nonpayable',
292
+ type: 'function',
293
+ },
294
+ {
295
+ inputs: [
296
+ {
297
+ internalType: 'bool',
298
+ name: 'isEnabled',
299
+ type: 'bool',
300
+ },
301
+ ],
302
+ name: 'setDistributeEnabled',
303
+ outputs: [],
304
+ stateMutability: 'nonpayable',
305
+ type: 'function',
306
+ },
307
+ {
308
+ inputs: [],
309
+ name: 'totalOwedQuantity',
310
+ outputs: [
311
+ {
312
+ internalType: 'uint256',
313
+ name: '',
314
+ type: 'uint256',
315
+ },
316
+ ],
317
+ stateMutability: 'view',
318
+ type: 'function',
319
+ },
320
+ {
321
+ inputs: [
322
+ {
323
+ internalType: 'address',
324
+ name: 'newOwner',
325
+ type: 'address',
326
+ },
327
+ ],
328
+ name: 'transferOwnership',
329
+ outputs: [],
330
+ stateMutability: 'nonpayable',
331
+ type: 'function',
332
+ },
333
+ {
334
+ inputs: [
335
+ {
336
+ internalType: 'uint256',
337
+ name: 'quantity',
338
+ type: 'uint256',
339
+ },
340
+ ],
341
+ name: 'withdrawEscrow',
342
+ outputs: [],
343
+ stateMutability: 'nonpayable',
344
+ type: 'function',
345
+ },
346
+ ];
347
+ class EarningsEscrow_v2__factory {
348
+ static abi = _abi;
349
+ static createInterface() {
350
+ return new ethers_1.Interface(_abi);
351
+ }
352
+ static connect(address, runner) {
353
+ return new ethers_1.Contract(address, _abi, runner);
354
+ }
355
+ }
356
+ exports.EarningsEscrow_v2__factory = EarningsEscrow_v2__factory;
@@ -1,5 +1,6 @@
1
1
  export { ERC20__factory } from './ERC20__factory';
2
2
  export { EarningsEscrow__factory } from './EarningsEscrow__factory';
3
+ export { EarningsEscrow_v2__factory } from './EarningsEscrow_v2__factory';
3
4
  export { ExchangeLayerZeroAdapter_v1__factory } from './ExchangeLayerZeroAdapter_v1__factory';
4
5
  export { Exchange_v2__factory } from './Exchange_v2__factory';
5
6
  export { IOFT__factory } from './IOFT__factory';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/typechain-types/factories/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAC;AAC9F,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AAC5E,OAAO,EAAE,wCAAwC,EAAE,MAAM,4CAA4C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/typechain-types/factories/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAC;AAC9F,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AAC5E,OAAO,EAAE,wCAAwC,EAAE,MAAM,4CAA4C,CAAC"}
@@ -2,11 +2,13 @@
2
2
  /* Autogenerated file. Do not edit manually. */
3
3
  /* tslint:disable */
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.KatanaPerpsStargateForwarder_v1__factory = exports.IVaultComposerSync__factory = exports.IOFT__factory = exports.Exchange_v2__factory = exports.ExchangeLayerZeroAdapter_v1__factory = exports.EarningsEscrow__factory = exports.ERC20__factory = void 0;
5
+ exports.KatanaPerpsStargateForwarder_v1__factory = exports.IVaultComposerSync__factory = exports.IOFT__factory = exports.Exchange_v2__factory = exports.ExchangeLayerZeroAdapter_v1__factory = exports.EarningsEscrow_v2__factory = exports.EarningsEscrow__factory = exports.ERC20__factory = void 0;
6
6
  var ERC20__factory_1 = require("./ERC20__factory");
7
7
  Object.defineProperty(exports, "ERC20__factory", { enumerable: true, get: function () { return ERC20__factory_1.ERC20__factory; } });
8
8
  var EarningsEscrow__factory_1 = require("./EarningsEscrow__factory");
9
9
  Object.defineProperty(exports, "EarningsEscrow__factory", { enumerable: true, get: function () { return EarningsEscrow__factory_1.EarningsEscrow__factory; } });
10
+ var EarningsEscrow_v2__factory_1 = require("./EarningsEscrow_v2__factory");
11
+ Object.defineProperty(exports, "EarningsEscrow_v2__factory", { enumerable: true, get: function () { return EarningsEscrow_v2__factory_1.EarningsEscrow_v2__factory; } });
10
12
  var ExchangeLayerZeroAdapter_v1__factory_1 = require("./ExchangeLayerZeroAdapter_v1__factory");
11
13
  Object.defineProperty(exports, "ExchangeLayerZeroAdapter_v1__factory", { enumerable: true, get: function () { return ExchangeLayerZeroAdapter_v1__factory_1.ExchangeLayerZeroAdapter_v1__factory; } });
12
14
  var Exchange_v2__factory_1 = require("./Exchange_v2__factory");
@@ -1,11 +1,13 @@
1
1
  export type { ERC20 } from './ERC20';
2
2
  export type { EarningsEscrow } from './EarningsEscrow';
3
+ export type { EarningsEscrow_v2 } from './EarningsEscrow_v2';
3
4
  export type { ExchangeLayerZeroAdapter_v1 } from './ExchangeLayerZeroAdapter_v1';
4
5
  export type { Exchange_v2 } from './Exchange_v2';
5
6
  export type { IOFT } from './IOFT';
6
7
  export type { IVaultComposerSync } from './IVaultComposerSync';
7
8
  export type { KatanaPerpsStargateForwarder_v1 } from './KatanaPerpsStargateForwarder_v1';
8
9
  export * as factories from './factories';
10
+ export { EarningsEscrow_v2__factory } from './factories/EarningsEscrow_v2__factory';
9
11
  export { EarningsEscrow__factory } from './factories/EarningsEscrow__factory';
10
12
  export { ERC20__factory } from './factories/ERC20__factory';
11
13
  export { Exchange_v2__factory } from './factories/Exchange_v2__factory';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/typechain-types/index.ts"],"names":[],"mappings":"AAGA,YAAY,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AACrC,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,YAAY,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AACjF,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AACnC,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AACzF,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AACzC,OAAO,EAAE,uBAAuB,EAAE,MAAM,qCAAqC,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AACxE,OAAO,EAAE,oCAAoC,EAAE,MAAM,kDAAkD,CAAC;AACxG,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,yCAAyC,CAAC;AACtF,OAAO,EAAE,wCAAwC,EAAE,MAAM,sDAAsD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/typechain-types/index.ts"],"names":[],"mappings":"AAGA,YAAY,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AACrC,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,YAAY,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,YAAY,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AACjF,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AACnC,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AACzF,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AACzC,OAAO,EAAE,0BAA0B,EAAE,MAAM,wCAAwC,CAAC;AACpF,OAAO,EAAE,uBAAuB,EAAE,MAAM,qCAAqC,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AACxE,OAAO,EAAE,oCAAoC,EAAE,MAAM,kDAAkD,CAAC;AACxG,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,yCAAyC,CAAC;AACtF,OAAO,EAAE,wCAAwC,EAAE,MAAM,sDAAsD,CAAC"}
@@ -2,9 +2,11 @@
2
2
  /* Autogenerated file. Do not edit manually. */
3
3
  /* tslint:disable */
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.KatanaPerpsStargateForwarder_v1__factory = exports.IVaultComposerSync__factory = exports.IOFT__factory = exports.ExchangeLayerZeroAdapter_v1__factory = exports.Exchange_v2__factory = exports.ERC20__factory = exports.EarningsEscrow__factory = exports.factories = void 0;
5
+ exports.KatanaPerpsStargateForwarder_v1__factory = exports.IVaultComposerSync__factory = exports.IOFT__factory = exports.ExchangeLayerZeroAdapter_v1__factory = exports.Exchange_v2__factory = exports.ERC20__factory = exports.EarningsEscrow__factory = exports.EarningsEscrow_v2__factory = exports.factories = void 0;
6
6
  const tslib_1 = require("tslib");
7
7
  exports.factories = tslib_1.__importStar(require("./factories"));
8
+ var EarningsEscrow_v2__factory_1 = require("./factories/EarningsEscrow_v2__factory");
9
+ Object.defineProperty(exports, "EarningsEscrow_v2__factory", { enumerable: true, get: function () { return EarningsEscrow_v2__factory_1.EarningsEscrow_v2__factory; } });
8
10
  var EarningsEscrow__factory_1 = require("./factories/EarningsEscrow__factory");
9
11
  Object.defineProperty(exports, "EarningsEscrow__factory", { enumerable: true, get: function () { return EarningsEscrow__factory_1.EarningsEscrow__factory; } });
10
12
  var ERC20__factory_1 = require("./factories/ERC20__factory");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@katanaperps/katana-perps-sdk",
3
- "version": "2.1.0-beta.8",
3
+ "version": "2.1.0-beta.9",
4
4
  "description": "Katana Perps SDK for Javascript in the browser and Node.js",
5
5
  "repository": "git@github.com:katanaperps/katana-perps-sdk-js.git",
6
6
  "license": "MIT",