|
3 | 3 | /* eslint-disable */
|
4 | 4 | /* tslint:disable */
|
5 | 5 |
|
6 |
| -import type { Json_t as Js_Json_t } from "../../src/Js.shim"; |
| 6 | +import type {Json_t as Js_Json_t} from '../../src/Js.shim'; |
7 | 7 |
|
8 |
| -import type { t as Address_t } from "../../src/Address.gen"; |
| 8 | +import type {t as Address_t} from '../../src/Address.gen'; |
9 | 9 |
|
10 | 10 | export type EventSyncState_t = {
|
11 |
| - readonly chain_id: number; |
12 |
| - readonly block_number: number; |
13 |
| - readonly log_index: number; |
14 |
| - readonly block_timestamp: number; |
| 11 | + readonly chain_id: number; |
| 12 | + readonly block_number: number; |
| 13 | + readonly log_index: number; |
| 14 | + readonly block_timestamp: number |
15 | 15 | };
|
16 | 16 |
|
17 | 17 | export type RawEvents_t = {
|
18 |
| - readonly chain_id: number; |
19 |
| - readonly event_id: bigint; |
20 |
| - readonly event_name: string; |
21 |
| - readonly contract_name: string; |
22 |
| - readonly block_number: number; |
23 |
| - readonly log_index: number; |
24 |
| - readonly src_address: Address_t; |
25 |
| - readonly block_hash: string; |
26 |
| - readonly block_timestamp: number; |
27 |
| - readonly block_fields: Js_Json_t; |
28 |
| - readonly transaction_fields: Js_Json_t; |
29 |
| - readonly params: Js_Json_t; |
| 18 | + readonly chain_id: number; |
| 19 | + readonly event_id: bigint; |
| 20 | + readonly event_name: string; |
| 21 | + readonly contract_name: string; |
| 22 | + readonly block_number: number; |
| 23 | + readonly log_index: number; |
| 24 | + readonly src_address: Address_t; |
| 25 | + readonly block_hash: string; |
| 26 | + readonly block_timestamp: number; |
| 27 | + readonly block_fields: Js_Json_t; |
| 28 | + readonly transaction_fields: Js_Json_t; |
| 29 | + readonly params: Js_Json_t |
30 | 30 | };
|
31 | 31 |
|
32 | 32 | export type DynamicContractRegistry_t = {
|
33 |
| - readonly id: string; |
34 |
| - readonly chain_id: number; |
35 |
| - readonly registering_event_block_number: number; |
36 |
| - readonly registering_event_log_index: number; |
37 |
| - readonly registering_event_block_timestamp: number; |
38 |
| - readonly registering_event_contract_name: string; |
39 |
| - readonly registering_event_name: string; |
40 |
| - readonly registering_event_src_address: Address_t; |
41 |
| - readonly contract_address: Address_t; |
42 |
| - readonly contract_name: string; |
| 33 | + readonly id: string; |
| 34 | + readonly chain_id: number; |
| 35 | + readonly registering_event_block_number: number; |
| 36 | + readonly registering_event_log_index: number; |
| 37 | + readonly registering_event_block_timestamp: number; |
| 38 | + readonly registering_event_contract_name: string; |
| 39 | + readonly registering_event_name: string; |
| 40 | + readonly registering_event_src_address: Address_t; |
| 41 | + readonly contract_address: Address_t; |
| 42 | + readonly contract_name: string |
43 | 43 | };
|
0 commit comments