@o2exchange/contracts 0.3.10 → 0.3.11-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contracts/PriceFeed.d.ts +347 -0
- package/dist/contracts/PriceFeed.d.ts.map +1 -0
- package/dist/contracts/PriceFeed.js +2207 -0
- package/dist/contracts/PriceFeed.js.map +1 -0
- package/dist/contracts/PriceFeedFactory.d.ts +9 -0
- package/dist/contracts/PriceFeedFactory.d.ts.map +1 -0
- package/dist/contracts/PriceFeedFactory.js +23 -0
- package/dist/contracts/PriceFeedFactory.js.map +1 -0
- package/dist/contracts/PriceFeedProxy.d.ts +192 -0
- package/dist/contracts/PriceFeedProxy.d.ts.map +1 -0
- package/dist/contracts/PriceFeedProxy.js +852 -0
- package/dist/contracts/PriceFeedProxy.js.map +1 -0
- package/dist/contracts/PriceFeedProxyFactory.d.ts +9 -0
- package/dist/contracts/PriceFeedProxyFactory.d.ts.map +1 -0
- package/dist/contracts/PriceFeedProxyFactory.js +23 -0
- package/dist/contracts/PriceFeedProxyFactory.js.map +1 -0
- package/dist/contracts/index.d.ts +4 -0
- package/dist/contracts/index.d.ts.map +1 -1
- package/dist/contracts/index.js +4 -0
- package/dist/contracts/index.js.map +1 -1
- package/package.json +9 -1
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
import { Contract as __Contract, Interface } from "fuels";
|
|
2
|
+
import type { Provider, Account, StorageSlot, Address, BigNumberish, BN, FunctionFragment, InvokeFunction } from 'fuels';
|
|
3
|
+
import type { Option, Enum, Vec } from "./common";
|
|
4
|
+
export type AccessControlErrorInput = Enum<{
|
|
5
|
+
AccessControlNotAuthorized: BigNumberish;
|
|
6
|
+
AccessControlNoMsgSender: undefined;
|
|
7
|
+
AccessControlRoleOutOfBounds: undefined;
|
|
8
|
+
}>;
|
|
9
|
+
export type AccessControlErrorOutput = Enum<{
|
|
10
|
+
AccessControlNotAuthorized: BN;
|
|
11
|
+
AccessControlNoMsgSender: void;
|
|
12
|
+
AccessControlRoleOutOfBounds: void;
|
|
13
|
+
}>;
|
|
14
|
+
export declare enum AccessErrorInput {
|
|
15
|
+
NotOwner = "NotOwner"
|
|
16
|
+
}
|
|
17
|
+
export declare enum AccessErrorOutput {
|
|
18
|
+
NotOwner = "NotOwner"
|
|
19
|
+
}
|
|
20
|
+
export type IdentityInput = Enum<{
|
|
21
|
+
Address: AddressInput;
|
|
22
|
+
ContractId: ContractIdInput;
|
|
23
|
+
}>;
|
|
24
|
+
export type IdentityOutput = Enum<{
|
|
25
|
+
Address: AddressOutput;
|
|
26
|
+
ContractId: ContractIdOutput;
|
|
27
|
+
}>;
|
|
28
|
+
export declare enum InitializationErrorInput {
|
|
29
|
+
CannotReinitialized = "CannotReinitialized"
|
|
30
|
+
}
|
|
31
|
+
export declare enum InitializationErrorOutput {
|
|
32
|
+
CannotReinitialized = "CannotReinitialized"
|
|
33
|
+
}
|
|
34
|
+
export declare enum OffchainPriceErrorInput {
|
|
35
|
+
TimestampInFuture = "TimestampInFuture",
|
|
36
|
+
TimestampTooOld = "TimestampTooOld",
|
|
37
|
+
TimestampRegressed = "TimestampRegressed"
|
|
38
|
+
}
|
|
39
|
+
export declare enum OffchainPriceErrorOutput {
|
|
40
|
+
TimestampInFuture = "TimestampInFuture",
|
|
41
|
+
TimestampTooOld = "TimestampTooOld",
|
|
42
|
+
TimestampRegressed = "TimestampRegressed"
|
|
43
|
+
}
|
|
44
|
+
export declare enum PauseErrorInput {
|
|
45
|
+
Paused = "Paused",
|
|
46
|
+
NotPaused = "NotPaused"
|
|
47
|
+
}
|
|
48
|
+
export declare enum PauseErrorOutput {
|
|
49
|
+
Paused = "Paused",
|
|
50
|
+
NotPaused = "NotPaused"
|
|
51
|
+
}
|
|
52
|
+
export declare enum PriceFeedErrorInput {
|
|
53
|
+
OwnerNotSet = "OwnerNotSet",
|
|
54
|
+
PriceInvalid = "PriceInvalid",
|
|
55
|
+
DecimalsNotConfigured = "DecimalsNotConfigured"
|
|
56
|
+
}
|
|
57
|
+
export declare enum PriceFeedErrorOutput {
|
|
58
|
+
OwnerNotSet = "OwnerNotSet",
|
|
59
|
+
PriceInvalid = "PriceInvalid",
|
|
60
|
+
DecimalsNotConfigured = "DecimalsNotConfigured"
|
|
61
|
+
}
|
|
62
|
+
export type StateInput = Enum<{
|
|
63
|
+
Uninitialized: undefined;
|
|
64
|
+
Initialized: IdentityInput;
|
|
65
|
+
Revoked: undefined;
|
|
66
|
+
}>;
|
|
67
|
+
export type StateOutput = Enum<{
|
|
68
|
+
Uninitialized: void;
|
|
69
|
+
Initialized: IdentityOutput;
|
|
70
|
+
Revoked: void;
|
|
71
|
+
}>;
|
|
72
|
+
export type AddressInput = {
|
|
73
|
+
bits: string;
|
|
74
|
+
};
|
|
75
|
+
export type AddressOutput = AddressInput;
|
|
76
|
+
export type AssetDecimalsSetEventInput = {
|
|
77
|
+
asset: AssetIdInput;
|
|
78
|
+
decimals: BigNumberish;
|
|
79
|
+
};
|
|
80
|
+
export type AssetDecimalsSetEventOutput = {
|
|
81
|
+
asset: AssetIdOutput;
|
|
82
|
+
decimals: number;
|
|
83
|
+
};
|
|
84
|
+
export type AssetIdInput = {
|
|
85
|
+
bits: string;
|
|
86
|
+
};
|
|
87
|
+
export type AssetIdOutput = AssetIdInput;
|
|
88
|
+
export type ContractIdInput = {
|
|
89
|
+
bits: string;
|
|
90
|
+
};
|
|
91
|
+
export type ContractIdOutput = ContractIdInput;
|
|
92
|
+
export type MaxOffchainAgeUpdatedEventInput = {
|
|
93
|
+
seconds: BigNumberish;
|
|
94
|
+
};
|
|
95
|
+
export type MaxOffchainAgeUpdatedEventOutput = {
|
|
96
|
+
seconds: BN;
|
|
97
|
+
};
|
|
98
|
+
export type OffchainPriceInvalidatedEventInput = {
|
|
99
|
+
asset: AssetIdInput;
|
|
100
|
+
};
|
|
101
|
+
export type OffchainPriceInvalidatedEventOutput = {
|
|
102
|
+
asset: AssetIdOutput;
|
|
103
|
+
};
|
|
104
|
+
export type OwnershipSetInput = {
|
|
105
|
+
new_owner: IdentityInput;
|
|
106
|
+
};
|
|
107
|
+
export type OwnershipSetOutput = {
|
|
108
|
+
new_owner: IdentityOutput;
|
|
109
|
+
};
|
|
110
|
+
export type OwnershipTransferredInput = {
|
|
111
|
+
new_owner: IdentityInput;
|
|
112
|
+
previous_owner: IdentityInput;
|
|
113
|
+
};
|
|
114
|
+
export type OwnershipTransferredOutput = {
|
|
115
|
+
new_owner: IdentityOutput;
|
|
116
|
+
previous_owner: IdentityOutput;
|
|
117
|
+
};
|
|
118
|
+
export type PauseEventInput = {
|
|
119
|
+
caller: IdentityInput;
|
|
120
|
+
};
|
|
121
|
+
export type PauseEventOutput = {
|
|
122
|
+
caller: IdentityOutput;
|
|
123
|
+
};
|
|
124
|
+
export type PriceInputInput = {
|
|
125
|
+
asset: AssetIdInput;
|
|
126
|
+
bid: U128Input;
|
|
127
|
+
ask: U128Input;
|
|
128
|
+
timestamp: BigNumberish;
|
|
129
|
+
};
|
|
130
|
+
export type PriceInputOutput = {
|
|
131
|
+
asset: AssetIdOutput;
|
|
132
|
+
bid: U128Output;
|
|
133
|
+
ask: U128Output;
|
|
134
|
+
timestamp: BN;
|
|
135
|
+
};
|
|
136
|
+
export type PriceRecordInput = {
|
|
137
|
+
bid: U128Input;
|
|
138
|
+
ask: U128Input;
|
|
139
|
+
asset_decimals: BigNumberish;
|
|
140
|
+
timestamp: BigNumberish;
|
|
141
|
+
};
|
|
142
|
+
export type PriceRecordOutput = {
|
|
143
|
+
bid: U128Output;
|
|
144
|
+
ask: U128Output;
|
|
145
|
+
asset_decimals: number;
|
|
146
|
+
timestamp: BN;
|
|
147
|
+
};
|
|
148
|
+
export type PriceUpdatedInput = {
|
|
149
|
+
asset_id: AssetIdInput;
|
|
150
|
+
bid: U128Input;
|
|
151
|
+
ask: U128Input;
|
|
152
|
+
asset_decimals: BigNumberish;
|
|
153
|
+
timestamp: BigNumberish;
|
|
154
|
+
};
|
|
155
|
+
export type PriceUpdatedOutput = {
|
|
156
|
+
asset_id: AssetIdOutput;
|
|
157
|
+
bid: U128Output;
|
|
158
|
+
ask: U128Output;
|
|
159
|
+
asset_decimals: number;
|
|
160
|
+
timestamp: BN;
|
|
161
|
+
};
|
|
162
|
+
export type RoleGrantedEventInput = {
|
|
163
|
+
role: BigNumberish;
|
|
164
|
+
account: IdentityInput;
|
|
165
|
+
};
|
|
166
|
+
export type RoleGrantedEventOutput = {
|
|
167
|
+
role: BN;
|
|
168
|
+
account: IdentityOutput;
|
|
169
|
+
};
|
|
170
|
+
export type RoleRevokedEventInput = {
|
|
171
|
+
role: BigNumberish;
|
|
172
|
+
account: IdentityInput;
|
|
173
|
+
};
|
|
174
|
+
export type RoleRevokedEventOutput = {
|
|
175
|
+
role: BN;
|
|
176
|
+
account: IdentityOutput;
|
|
177
|
+
};
|
|
178
|
+
export type U128Input = {
|
|
179
|
+
upper: BigNumberish;
|
|
180
|
+
lower: BigNumberish;
|
|
181
|
+
};
|
|
182
|
+
export type U128Output = {
|
|
183
|
+
upper: BN;
|
|
184
|
+
lower: BN;
|
|
185
|
+
};
|
|
186
|
+
export type UnpauseEventInput = {
|
|
187
|
+
caller: IdentityInput;
|
|
188
|
+
};
|
|
189
|
+
export type UnpauseEventOutput = {
|
|
190
|
+
caller: IdentityOutput;
|
|
191
|
+
};
|
|
192
|
+
export type PriceFeedConfigurables = Partial<{
|
|
193
|
+
INITIAL_OWNER: StateInput;
|
|
194
|
+
}>;
|
|
195
|
+
export declare class PriceFeedInterface extends Interface {
|
|
196
|
+
constructor();
|
|
197
|
+
functions: {
|
|
198
|
+
add_publisher: FunctionFragment;
|
|
199
|
+
get_asset_decimals: FunctionFragment;
|
|
200
|
+
get_last_publish_time: FunctionFragment;
|
|
201
|
+
get_max_offchain_age: FunctionFragment;
|
|
202
|
+
has_price: FunctionFragment;
|
|
203
|
+
initialize: FunctionFragment;
|
|
204
|
+
invalidate_offchain_price: FunctionFragment;
|
|
205
|
+
owner_grant_role: FunctionFragment;
|
|
206
|
+
owner_revoke_role: FunctionFragment;
|
|
207
|
+
price: FunctionFragment;
|
|
208
|
+
prices: FunctionFragment;
|
|
209
|
+
publish_price: FunctionFragment;
|
|
210
|
+
publish_prices: FunctionFragment;
|
|
211
|
+
remove_publisher: FunctionFragment;
|
|
212
|
+
set_asset_decimals: FunctionFragment;
|
|
213
|
+
set_max_offchain_age: FunctionFragment;
|
|
214
|
+
transfer_ownership: FunctionFragment;
|
|
215
|
+
get_roles: FunctionFragment;
|
|
216
|
+
grant_role: FunctionFragment;
|
|
217
|
+
has_role: FunctionFragment;
|
|
218
|
+
revoke_role: FunctionFragment;
|
|
219
|
+
owner: FunctionFragment;
|
|
220
|
+
is_paused: FunctionFragment;
|
|
221
|
+
pause: FunctionFragment;
|
|
222
|
+
unpause: FunctionFragment;
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
export declare class PriceFeed extends __Contract {
|
|
226
|
+
static readonly abi: {
|
|
227
|
+
programType: string;
|
|
228
|
+
specVersion: string;
|
|
229
|
+
encodingVersion: string;
|
|
230
|
+
concreteTypes: ({
|
|
231
|
+
type: string;
|
|
232
|
+
concreteTypeId: string;
|
|
233
|
+
metadataTypeId?: undefined;
|
|
234
|
+
typeArguments?: undefined;
|
|
235
|
+
} | {
|
|
236
|
+
type: string;
|
|
237
|
+
concreteTypeId: string;
|
|
238
|
+
metadataTypeId: number;
|
|
239
|
+
typeArguments?: undefined;
|
|
240
|
+
} | {
|
|
241
|
+
type: string;
|
|
242
|
+
concreteTypeId: string;
|
|
243
|
+
metadataTypeId: number;
|
|
244
|
+
typeArguments: string[];
|
|
245
|
+
})[];
|
|
246
|
+
metadataTypes: ({
|
|
247
|
+
type: string;
|
|
248
|
+
metadataTypeId: number;
|
|
249
|
+
components?: undefined;
|
|
250
|
+
typeParameters?: undefined;
|
|
251
|
+
} | {
|
|
252
|
+
type: string;
|
|
253
|
+
metadataTypeId: number;
|
|
254
|
+
components: ({
|
|
255
|
+
name: string;
|
|
256
|
+
typeId: string;
|
|
257
|
+
} | {
|
|
258
|
+
name: string;
|
|
259
|
+
typeId: number;
|
|
260
|
+
})[];
|
|
261
|
+
typeParameters?: undefined;
|
|
262
|
+
} | {
|
|
263
|
+
type: string;
|
|
264
|
+
metadataTypeId: number;
|
|
265
|
+
components: ({
|
|
266
|
+
name: string;
|
|
267
|
+
typeId: string;
|
|
268
|
+
} | {
|
|
269
|
+
name: string;
|
|
270
|
+
typeId: number;
|
|
271
|
+
})[];
|
|
272
|
+
typeParameters: number[];
|
|
273
|
+
} | {
|
|
274
|
+
type: string;
|
|
275
|
+
metadataTypeId: number;
|
|
276
|
+
components: ({
|
|
277
|
+
name: string;
|
|
278
|
+
typeId: number;
|
|
279
|
+
typeArguments: {
|
|
280
|
+
name: string;
|
|
281
|
+
typeId: number;
|
|
282
|
+
}[];
|
|
283
|
+
} | {
|
|
284
|
+
name: string;
|
|
285
|
+
typeId: string;
|
|
286
|
+
typeArguments?: undefined;
|
|
287
|
+
})[];
|
|
288
|
+
typeParameters: number[];
|
|
289
|
+
})[];
|
|
290
|
+
functions: {
|
|
291
|
+
name: string;
|
|
292
|
+
inputs: {
|
|
293
|
+
name: string;
|
|
294
|
+
concreteTypeId: string;
|
|
295
|
+
}[];
|
|
296
|
+
output: string;
|
|
297
|
+
attributes: {
|
|
298
|
+
name: string;
|
|
299
|
+
arguments: string[];
|
|
300
|
+
}[];
|
|
301
|
+
}[];
|
|
302
|
+
loggedTypes: {
|
|
303
|
+
logId: string;
|
|
304
|
+
concreteTypeId: string;
|
|
305
|
+
}[];
|
|
306
|
+
messagesTypes: never[];
|
|
307
|
+
configurables: {
|
|
308
|
+
name: string;
|
|
309
|
+
concreteTypeId: string;
|
|
310
|
+
offset: number;
|
|
311
|
+
indirect: boolean;
|
|
312
|
+
}[];
|
|
313
|
+
errorCodes: {};
|
|
314
|
+
panickingCalls: {};
|
|
315
|
+
};
|
|
316
|
+
static readonly storageSlots: StorageSlot[];
|
|
317
|
+
interface: PriceFeedInterface;
|
|
318
|
+
functions: {
|
|
319
|
+
add_publisher: InvokeFunction<[who: IdentityInput], void>;
|
|
320
|
+
get_asset_decimals: InvokeFunction<[asset: AssetIdInput], Option<number>>;
|
|
321
|
+
get_last_publish_time: InvokeFunction<[asset: AssetIdInput], Option<BN>>;
|
|
322
|
+
get_max_offchain_age: InvokeFunction<[], BN>;
|
|
323
|
+
has_price: InvokeFunction<[asset: AssetIdInput], boolean>;
|
|
324
|
+
initialize: InvokeFunction<[], void>;
|
|
325
|
+
invalidate_offchain_price: InvokeFunction<[asset: AssetIdInput], void>;
|
|
326
|
+
owner_grant_role: InvokeFunction<[role: BigNumberish, account: IdentityInput], void>;
|
|
327
|
+
owner_revoke_role: InvokeFunction<[role: BigNumberish, account: IdentityInput], void>;
|
|
328
|
+
price: InvokeFunction<[asset: AssetIdInput], Option<PriceRecordOutput>>;
|
|
329
|
+
prices: InvokeFunction<[assets: Vec<AssetIdInput>], Vec<Option<PriceRecordOutput>>>;
|
|
330
|
+
publish_price: InvokeFunction<[asset: AssetIdInput, bid: U128Input, ask: U128Input, publish_time: BigNumberish], void>;
|
|
331
|
+
publish_prices: InvokeFunction<[inputs: Vec<PriceInputInput>], void>;
|
|
332
|
+
remove_publisher: InvokeFunction<[who: IdentityInput], void>;
|
|
333
|
+
set_asset_decimals: InvokeFunction<[asset: AssetIdInput, decimals: BigNumberish], void>;
|
|
334
|
+
set_max_offchain_age: InvokeFunction<[seconds: BigNumberish], void>;
|
|
335
|
+
transfer_ownership: InvokeFunction<[new_owner: IdentityInput], void>;
|
|
336
|
+
get_roles: InvokeFunction<[account: IdentityInput], BN>;
|
|
337
|
+
grant_role: InvokeFunction<[role: BigNumberish, account: IdentityInput], void>;
|
|
338
|
+
has_role: InvokeFunction<[role: BigNumberish, account: IdentityInput], boolean>;
|
|
339
|
+
revoke_role: InvokeFunction<[role: BigNumberish, account: IdentityInput], void>;
|
|
340
|
+
owner: InvokeFunction<[], StateOutput>;
|
|
341
|
+
is_paused: InvokeFunction<[], boolean>;
|
|
342
|
+
pause: InvokeFunction<[], void>;
|
|
343
|
+
unpause: InvokeFunction<[], void>;
|
|
344
|
+
};
|
|
345
|
+
constructor(id: string | Address, accountOrProvider: Account | Provider);
|
|
346
|
+
}
|
|
347
|
+
//# sourceMappingURL=PriceFeed.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PriceFeed.d.ts","sourceRoot":"","sources":["../../src/contracts/PriceFeed.ts"],"names":[],"mappings":"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"}
|