zklighter-perps 1.0.139 → 1.0.141
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/.openapi-generator/FILES +2 -0
- package/apis/TransactionApi.ts +12 -12
- package/models/Order.ts +2 -1
- package/models/RespSendTx.ts +87 -0
- package/models/RespSendTxBatch.ts +87 -0
- package/models/TransferHistoryItem.ts +13 -4
- package/models/index.ts +2 -0
- package/openapi.json +69 -5
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -126,6 +126,8 @@ models/ReqIsWhitelisted.ts
|
|
|
126
126
|
models/RespChangeAccountTier.ts
|
|
127
127
|
models/RespGetFastBridgeInfo.ts
|
|
128
128
|
models/RespGetFastwithdrawalInfo.ts
|
|
129
|
+
models/RespSendTx.ts
|
|
130
|
+
models/RespSendTxBatch.ts
|
|
129
131
|
models/RespWithdrawalDelay.ts
|
|
130
132
|
models/ResultCode.ts
|
|
131
133
|
models/RiskInfo.ts
|
package/apis/TransactionApi.ts
CHANGED
|
@@ -18,10 +18,10 @@ import type {
|
|
|
18
18
|
DepositHistory,
|
|
19
19
|
EnrichedTx,
|
|
20
20
|
NextNonce,
|
|
21
|
+
RespSendTx,
|
|
22
|
+
RespSendTxBatch,
|
|
21
23
|
ResultCode,
|
|
22
24
|
TransferHistory,
|
|
23
|
-
TxHash,
|
|
24
|
-
TxHashes,
|
|
25
25
|
Txs,
|
|
26
26
|
WithdrawHistory,
|
|
27
27
|
} from '../models/index';
|
|
@@ -32,14 +32,14 @@ import {
|
|
|
32
32
|
EnrichedTxToJSON,
|
|
33
33
|
NextNonceFromJSON,
|
|
34
34
|
NextNonceToJSON,
|
|
35
|
+
RespSendTxFromJSON,
|
|
36
|
+
RespSendTxToJSON,
|
|
37
|
+
RespSendTxBatchFromJSON,
|
|
38
|
+
RespSendTxBatchToJSON,
|
|
35
39
|
ResultCodeFromJSON,
|
|
36
40
|
ResultCodeToJSON,
|
|
37
41
|
TransferHistoryFromJSON,
|
|
38
42
|
TransferHistoryToJSON,
|
|
39
|
-
TxHashFromJSON,
|
|
40
|
-
TxHashToJSON,
|
|
41
|
-
TxHashesFromJSON,
|
|
42
|
-
TxHashesToJSON,
|
|
43
43
|
TxsFromJSON,
|
|
44
44
|
TxsToJSON,
|
|
45
45
|
WithdrawHistoryFromJSON,
|
|
@@ -474,7 +474,7 @@ export class TransactionApi extends runtime.BaseAPI {
|
|
|
474
474
|
* You need to sign the transaction body before sending it to the server. More details can be found in the Get Started docs: [Get Started For Programmers](https://apidocs.lighter.xyz/docs/get-started-for-programmers)
|
|
475
475
|
* sendTx
|
|
476
476
|
*/
|
|
477
|
-
async sendTxRaw(requestParameters: SendTxRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
477
|
+
async sendTxRaw(requestParameters: SendTxRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RespSendTx>> {
|
|
478
478
|
if (requestParameters['tx_type'] == null) {
|
|
479
479
|
throw new runtime.RequiredError(
|
|
480
480
|
'tx_type',
|
|
@@ -527,14 +527,14 @@ export class TransactionApi extends runtime.BaseAPI {
|
|
|
527
527
|
body: formParams,
|
|
528
528
|
}, initOverrides);
|
|
529
529
|
|
|
530
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
530
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => RespSendTxFromJSON(jsonValue));
|
|
531
531
|
}
|
|
532
532
|
|
|
533
533
|
/**
|
|
534
534
|
* You need to sign the transaction body before sending it to the server. More details can be found in the Get Started docs: [Get Started For Programmers](https://apidocs.lighter.xyz/docs/get-started-for-programmers)
|
|
535
535
|
* sendTx
|
|
536
536
|
*/
|
|
537
|
-
async sendTx(requestParameters: SendTxRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
537
|
+
async sendTx(requestParameters: SendTxRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RespSendTx> {
|
|
538
538
|
const response = await this.sendTxRaw(requestParameters, initOverrides);
|
|
539
539
|
return await response.value();
|
|
540
540
|
}
|
|
@@ -543,7 +543,7 @@ export class TransactionApi extends runtime.BaseAPI {
|
|
|
543
543
|
* You need to sign the transaction body before sending it to the server. More details can be found in the Get Started docs: [Get Started For Programmers](https://apidocs.lighter.xyz/docs/get-started-for-programmers)
|
|
544
544
|
* sendTxBatch
|
|
545
545
|
*/
|
|
546
|
-
async sendTxBatchRaw(requestParameters: SendTxBatchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
546
|
+
async sendTxBatchRaw(requestParameters: SendTxBatchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RespSendTxBatch>> {
|
|
547
547
|
if (requestParameters['tx_types'] == null) {
|
|
548
548
|
throw new runtime.RequiredError(
|
|
549
549
|
'tx_types',
|
|
@@ -592,14 +592,14 @@ export class TransactionApi extends runtime.BaseAPI {
|
|
|
592
592
|
body: formParams,
|
|
593
593
|
}, initOverrides);
|
|
594
594
|
|
|
595
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
595
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => RespSendTxBatchFromJSON(jsonValue));
|
|
596
596
|
}
|
|
597
597
|
|
|
598
598
|
/**
|
|
599
599
|
* You need to sign the transaction body before sending it to the server. More details can be found in the Get Started docs: [Get Started For Programmers](https://apidocs.lighter.xyz/docs/get-started-for-programmers)
|
|
600
600
|
* sendTxBatch
|
|
601
601
|
*/
|
|
602
|
-
async sendTxBatch(requestParameters: SendTxBatchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
602
|
+
async sendTxBatch(requestParameters: SendTxBatchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RespSendTxBatch> {
|
|
603
603
|
const response = await this.sendTxBatchRaw(requestParameters, initOverrides);
|
|
604
604
|
return await response.value();
|
|
605
605
|
}
|
package/models/Order.ts
CHANGED
|
@@ -253,7 +253,8 @@ export const OrderStatusEnum = {
|
|
|
253
253
|
CanceledSelfTrade: 'canceled-self-trade',
|
|
254
254
|
CanceledExpired: 'canceled-expired',
|
|
255
255
|
CanceledOco: 'canceled-oco',
|
|
256
|
-
CanceledChild: 'canceled-child'
|
|
256
|
+
CanceledChild: 'canceled-child',
|
|
257
|
+
CanceledLiquidation: 'canceled-liquidation'
|
|
257
258
|
} as const;
|
|
258
259
|
export type OrderStatusEnum = typeof OrderStatusEnum[keyof typeof OrderStatusEnum];
|
|
259
260
|
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document:
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface RespSendTx
|
|
20
|
+
*/
|
|
21
|
+
export interface RespSendTx {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof RespSendTx
|
|
26
|
+
*/
|
|
27
|
+
code: number;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof RespSendTx
|
|
32
|
+
*/
|
|
33
|
+
message?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof RespSendTx
|
|
38
|
+
*/
|
|
39
|
+
tx_hash: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof RespSendTx
|
|
44
|
+
*/
|
|
45
|
+
predicted_execution_time_ms: number;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Check if a given object implements the RespSendTx interface.
|
|
50
|
+
*/
|
|
51
|
+
export function instanceOfRespSendTx(value: object): value is RespSendTx {
|
|
52
|
+
if (!('code' in value) || value['code'] === undefined) return false;
|
|
53
|
+
if (!('tx_hash' in value) || value['tx_hash'] === undefined) return false;
|
|
54
|
+
if (!('predicted_execution_time_ms' in value) || value['predicted_execution_time_ms'] === undefined) return false;
|
|
55
|
+
return true;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function RespSendTxFromJSON(json: any): RespSendTx {
|
|
59
|
+
return RespSendTxFromJSONTyped(json, false);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function RespSendTxFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespSendTx {
|
|
63
|
+
if (json == null) {
|
|
64
|
+
return json;
|
|
65
|
+
}
|
|
66
|
+
return {
|
|
67
|
+
|
|
68
|
+
'code': json['code'],
|
|
69
|
+
'message': json['message'] == null ? undefined : json['message'],
|
|
70
|
+
'tx_hash': json['tx_hash'],
|
|
71
|
+
'predicted_execution_time_ms': json['predicted_execution_time_ms'],
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function RespSendTxToJSON(value?: RespSendTx | null): any {
|
|
76
|
+
if (value == null) {
|
|
77
|
+
return value;
|
|
78
|
+
}
|
|
79
|
+
return {
|
|
80
|
+
|
|
81
|
+
'code': value['code'],
|
|
82
|
+
'message': value['message'],
|
|
83
|
+
'tx_hash': value['tx_hash'],
|
|
84
|
+
'predicted_execution_time_ms': value['predicted_execution_time_ms'],
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document:
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface RespSendTxBatch
|
|
20
|
+
*/
|
|
21
|
+
export interface RespSendTxBatch {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof RespSendTxBatch
|
|
26
|
+
*/
|
|
27
|
+
code: number;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof RespSendTxBatch
|
|
32
|
+
*/
|
|
33
|
+
message?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {Array<string>}
|
|
37
|
+
* @memberof RespSendTxBatch
|
|
38
|
+
*/
|
|
39
|
+
tx_hash: Array<string>;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof RespSendTxBatch
|
|
44
|
+
*/
|
|
45
|
+
predicted_execution_time_ms: number;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Check if a given object implements the RespSendTxBatch interface.
|
|
50
|
+
*/
|
|
51
|
+
export function instanceOfRespSendTxBatch(value: object): value is RespSendTxBatch {
|
|
52
|
+
if (!('code' in value) || value['code'] === undefined) return false;
|
|
53
|
+
if (!('tx_hash' in value) || value['tx_hash'] === undefined) return false;
|
|
54
|
+
if (!('predicted_execution_time_ms' in value) || value['predicted_execution_time_ms'] === undefined) return false;
|
|
55
|
+
return true;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function RespSendTxBatchFromJSON(json: any): RespSendTxBatch {
|
|
59
|
+
return RespSendTxBatchFromJSONTyped(json, false);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function RespSendTxBatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespSendTxBatch {
|
|
63
|
+
if (json == null) {
|
|
64
|
+
return json;
|
|
65
|
+
}
|
|
66
|
+
return {
|
|
67
|
+
|
|
68
|
+
'code': json['code'],
|
|
69
|
+
'message': json['message'] == null ? undefined : json['message'],
|
|
70
|
+
'tx_hash': json['tx_hash'],
|
|
71
|
+
'predicted_execution_time_ms': json['predicted_execution_time_ms'],
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function RespSendTxBatchToJSON(value?: RespSendTxBatch | null): any {
|
|
76
|
+
if (value == null) {
|
|
77
|
+
return value;
|
|
78
|
+
}
|
|
79
|
+
return {
|
|
80
|
+
|
|
81
|
+
'code': value['code'],
|
|
82
|
+
'message': value['message'],
|
|
83
|
+
'tx_hash': value['tx_hash'],
|
|
84
|
+
'predicted_execution_time_ms': value['predicted_execution_time_ms'],
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -48,7 +48,13 @@ export interface TransferHistoryItem {
|
|
|
48
48
|
* @type {string}
|
|
49
49
|
* @memberof TransferHistoryItem
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
from_l1_address: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof TransferHistoryItem
|
|
56
|
+
*/
|
|
57
|
+
to_l1_address: string;
|
|
52
58
|
/**
|
|
53
59
|
*
|
|
54
60
|
* @type {number}
|
|
@@ -88,7 +94,8 @@ export function instanceOfTransferHistoryItem(value: object): value is TransferH
|
|
|
88
94
|
if (!('amount' in value) || value['amount'] === undefined) return false;
|
|
89
95
|
if (!('timestamp' in value) || value['timestamp'] === undefined) return false;
|
|
90
96
|
if (!('type' in value) || value['type'] === undefined) return false;
|
|
91
|
-
if (!('
|
|
97
|
+
if (!('from_l1_address' in value) || value['from_l1_address'] === undefined) return false;
|
|
98
|
+
if (!('to_l1_address' in value) || value['to_l1_address'] === undefined) return false;
|
|
92
99
|
if (!('from_account_index' in value) || value['from_account_index'] === undefined) return false;
|
|
93
100
|
if (!('to_account_index' in value) || value['to_account_index'] === undefined) return false;
|
|
94
101
|
if (!('tx_hash' in value) || value['tx_hash'] === undefined) return false;
|
|
@@ -109,7 +116,8 @@ export function TransferHistoryItemFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
109
116
|
'amount': json['amount'],
|
|
110
117
|
'timestamp': json['timestamp'],
|
|
111
118
|
'type': json['type'],
|
|
112
|
-
'
|
|
119
|
+
'from_l1_address': json['from_l1_address'],
|
|
120
|
+
'to_l1_address': json['to_l1_address'],
|
|
113
121
|
'from_account_index': json['from_account_index'],
|
|
114
122
|
'to_account_index': json['to_account_index'],
|
|
115
123
|
'tx_hash': json['tx_hash'],
|
|
@@ -126,7 +134,8 @@ export function TransferHistoryItemToJSON(value?: TransferHistoryItem | null): a
|
|
|
126
134
|
'amount': value['amount'],
|
|
127
135
|
'timestamp': value['timestamp'],
|
|
128
136
|
'type': value['type'],
|
|
129
|
-
'
|
|
137
|
+
'from_l1_address': value['from_l1_address'],
|
|
138
|
+
'to_l1_address': value['to_l1_address'],
|
|
130
139
|
'from_account_index': value['from_account_index'],
|
|
131
140
|
'to_account_index': value['to_account_index'],
|
|
132
141
|
'tx_hash': value['tx_hash'],
|
package/models/index.ts
CHANGED
|
@@ -114,6 +114,8 @@ export * from './ReqIsWhitelisted';
|
|
|
114
114
|
export * from './RespChangeAccountTier';
|
|
115
115
|
export * from './RespGetFastBridgeInfo';
|
|
116
116
|
export * from './RespGetFastwithdrawalInfo';
|
|
117
|
+
export * from './RespSendTx';
|
|
118
|
+
export * from './RespSendTxBatch';
|
|
117
119
|
export * from './RespWithdrawalDelay';
|
|
118
120
|
export * from './ResultCode';
|
|
119
121
|
export * from './RiskInfo';
|
package/openapi.json
CHANGED
|
@@ -2395,7 +2395,7 @@
|
|
|
2395
2395
|
"200": {
|
|
2396
2396
|
"description": "A successful response.",
|
|
2397
2397
|
"schema": {
|
|
2398
|
-
"$ref": "#/definitions/
|
|
2398
|
+
"$ref": "#/definitions/RespSendTx"
|
|
2399
2399
|
}
|
|
2400
2400
|
},
|
|
2401
2401
|
"400": {
|
|
@@ -2432,7 +2432,7 @@
|
|
|
2432
2432
|
"200": {
|
|
2433
2433
|
"description": "A successful response.",
|
|
2434
2434
|
"schema": {
|
|
2435
|
-
"$ref": "#/definitions/
|
|
2435
|
+
"$ref": "#/definitions/RespSendTxBatch"
|
|
2436
2436
|
}
|
|
2437
2437
|
},
|
|
2438
2438
|
"400": {
|
|
@@ -5032,7 +5032,8 @@
|
|
|
5032
5032
|
"canceled-self-trade",
|
|
5033
5033
|
"canceled-expired",
|
|
5034
5034
|
"canceled-oco",
|
|
5035
|
-
"canceled-child"
|
|
5035
|
+
"canceled-child",
|
|
5036
|
+
"canceled-liquidation"
|
|
5036
5037
|
]
|
|
5037
5038
|
},
|
|
5038
5039
|
"trigger_status": {
|
|
@@ -7317,6 +7318,64 @@
|
|
|
7317
7318
|
"max_withdrawal_amount"
|
|
7318
7319
|
]
|
|
7319
7320
|
},
|
|
7321
|
+
"RespSendTx": {
|
|
7322
|
+
"type": "object",
|
|
7323
|
+
"properties": {
|
|
7324
|
+
"code": {
|
|
7325
|
+
"type": "integer",
|
|
7326
|
+
"format": "int32",
|
|
7327
|
+
"example": "200"
|
|
7328
|
+
},
|
|
7329
|
+
"message": {
|
|
7330
|
+
"type": "string"
|
|
7331
|
+
},
|
|
7332
|
+
"tx_hash": {
|
|
7333
|
+
"type": "string",
|
|
7334
|
+
"example": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8"
|
|
7335
|
+
},
|
|
7336
|
+
"predicted_execution_time_ms": {
|
|
7337
|
+
"type": "integer",
|
|
7338
|
+
"format": "int64",
|
|
7339
|
+
"example": "1751465474"
|
|
7340
|
+
}
|
|
7341
|
+
},
|
|
7342
|
+
"title": "RespSendTx",
|
|
7343
|
+
"required": [
|
|
7344
|
+
"code",
|
|
7345
|
+
"tx_hash",
|
|
7346
|
+
"predicted_execution_time_ms"
|
|
7347
|
+
]
|
|
7348
|
+
},
|
|
7349
|
+
"RespSendTxBatch": {
|
|
7350
|
+
"type": "object",
|
|
7351
|
+
"properties": {
|
|
7352
|
+
"code": {
|
|
7353
|
+
"type": "integer",
|
|
7354
|
+
"format": "int32",
|
|
7355
|
+
"example": "200"
|
|
7356
|
+
},
|
|
7357
|
+
"message": {
|
|
7358
|
+
"type": "string"
|
|
7359
|
+
},
|
|
7360
|
+
"tx_hash": {
|
|
7361
|
+
"type": "array",
|
|
7362
|
+
"items": {
|
|
7363
|
+
"type": "string"
|
|
7364
|
+
}
|
|
7365
|
+
},
|
|
7366
|
+
"predicted_execution_time_ms": {
|
|
7367
|
+
"type": "integer",
|
|
7368
|
+
"format": "int64",
|
|
7369
|
+
"example": "1751465474"
|
|
7370
|
+
}
|
|
7371
|
+
},
|
|
7372
|
+
"title": "RespSendTxBatch",
|
|
7373
|
+
"required": [
|
|
7374
|
+
"code",
|
|
7375
|
+
"tx_hash",
|
|
7376
|
+
"predicted_execution_time_ms"
|
|
7377
|
+
]
|
|
7378
|
+
},
|
|
7320
7379
|
"RespWithdrawalDelay": {
|
|
7321
7380
|
"type": "object",
|
|
7322
7381
|
"properties": {
|
|
@@ -7748,7 +7807,11 @@
|
|
|
7748
7807
|
"L2TransferOutflow"
|
|
7749
7808
|
]
|
|
7750
7809
|
},
|
|
7751
|
-
"
|
|
7810
|
+
"from_l1_address": {
|
|
7811
|
+
"type": "string",
|
|
7812
|
+
"example": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8"
|
|
7813
|
+
},
|
|
7814
|
+
"to_l1_address": {
|
|
7752
7815
|
"type": "string",
|
|
7753
7816
|
"example": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8"
|
|
7754
7817
|
},
|
|
@@ -7773,7 +7836,8 @@
|
|
|
7773
7836
|
"amount",
|
|
7774
7837
|
"timestamp",
|
|
7775
7838
|
"type",
|
|
7776
|
-
"
|
|
7839
|
+
"from_l1_address",
|
|
7840
|
+
"to_l1_address",
|
|
7777
7841
|
"from_account_index",
|
|
7778
7842
|
"to_account_index",
|
|
7779
7843
|
"tx_hash"
|