zklighter-perps 1.0.148 → 1.0.149
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 -1
- package/apis/ReferralApi.ts +8 -8
- package/models/Account.ts +0 -9
- package/models/DetailedAccount.ts +0 -9
- package/models/HasRefereeCode.ts +78 -0
- package/models/PublicPool.ts +0 -9
- package/models/ReqHasRefereeByL1Address.ts +61 -0
- package/models/index.ts +2 -1
- package/openapi.json +27 -20
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -50,6 +50,7 @@ models/Funding.ts
|
|
|
50
50
|
models/FundingRate.ts
|
|
51
51
|
models/FundingRates.ts
|
|
52
52
|
models/Fundings.ts
|
|
53
|
+
models/HasRefereeCode.ts
|
|
53
54
|
models/IsWhitelisted.ts
|
|
54
55
|
models/L1Metadata.ts
|
|
55
56
|
models/L1ProviderInfo.ts
|
|
@@ -123,7 +124,7 @@ models/ReqGetTransferFeeInfo.ts
|
|
|
123
124
|
models/ReqGetTransferHistory.ts
|
|
124
125
|
models/ReqGetTx.ts
|
|
125
126
|
models/ReqGetWithdrawHistory.ts
|
|
126
|
-
models/
|
|
127
|
+
models/ReqHasRefereeByL1Address.ts
|
|
127
128
|
models/ReqIsWhitelisted.ts
|
|
128
129
|
models/RespChangeAccountTier.ts
|
|
129
130
|
models/RespGetFastBridgeInfo.ts
|
package/apis/ReferralApi.ts
CHANGED
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
17
|
import type {
|
|
18
|
-
|
|
18
|
+
HasRefereeCode,
|
|
19
19
|
ReferralCode,
|
|
20
20
|
ReferralPoints,
|
|
21
21
|
ResultCode,
|
|
22
22
|
} from '../models/index';
|
|
23
23
|
import {
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
HasRefereeCodeFromJSON,
|
|
25
|
+
HasRefereeCodeToJSON,
|
|
26
26
|
ReferralCodeFromJSON,
|
|
27
27
|
ReferralCodeToJSON,
|
|
28
28
|
ReferralPointsFromJSON,
|
|
@@ -176,10 +176,10 @@ export class ReferralApi extends runtime.BaseAPI {
|
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
/**
|
|
179
|
-
* Does L1 address have
|
|
179
|
+
* Does L1 address have referee code?
|
|
180
180
|
* referral_hasCodeByAddress
|
|
181
181
|
*/
|
|
182
|
-
async referralHasCodeByAddressRaw(requestParameters: ReferralHasCodeByAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
182
|
+
async referralHasCodeByAddressRaw(requestParameters: ReferralHasCodeByAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<HasRefereeCode>> {
|
|
183
183
|
if (requestParameters['l1_address'] == null) {
|
|
184
184
|
throw new runtime.RequiredError(
|
|
185
185
|
'l1_address',
|
|
@@ -202,14 +202,14 @@ export class ReferralApi extends runtime.BaseAPI {
|
|
|
202
202
|
query: queryParameters,
|
|
203
203
|
}, initOverrides);
|
|
204
204
|
|
|
205
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
205
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => HasRefereeCodeFromJSON(jsonValue));
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
/**
|
|
209
|
-
* Does L1 address have
|
|
209
|
+
* Does L1 address have referee code?
|
|
210
210
|
* referral_hasCodeByAddress
|
|
211
211
|
*/
|
|
212
|
-
async referralHasCodeByAddress(requestParameters: ReferralHasCodeByAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
212
|
+
async referralHasCodeByAddress(requestParameters: ReferralHasCodeByAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<HasRefereeCode> {
|
|
213
213
|
const response = await this.referralHasCodeByAddressRaw(requestParameters, initOverrides);
|
|
214
214
|
return await response.value();
|
|
215
215
|
}
|
package/models/Account.ts
CHANGED
|
@@ -85,12 +85,6 @@ export interface Account {
|
|
|
85
85
|
* @memberof Account
|
|
86
86
|
*/
|
|
87
87
|
collateral: string;
|
|
88
|
-
/**
|
|
89
|
-
*
|
|
90
|
-
* @type {string}
|
|
91
|
-
* @memberof Account
|
|
92
|
-
*/
|
|
93
|
-
referral_code: string;
|
|
94
88
|
}
|
|
95
89
|
|
|
96
90
|
/**
|
|
@@ -107,7 +101,6 @@ export function instanceOfAccount(value: object): value is Account {
|
|
|
107
101
|
if (!('pending_order_count' in value) || value['pending_order_count'] === undefined) return false;
|
|
108
102
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
109
103
|
if (!('collateral' in value) || value['collateral'] === undefined) return false;
|
|
110
|
-
if (!('referral_code' in value) || value['referral_code'] === undefined) return false;
|
|
111
104
|
return true;
|
|
112
105
|
}
|
|
113
106
|
|
|
@@ -132,7 +125,6 @@ export function AccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): A
|
|
|
132
125
|
'pending_order_count': json['pending_order_count'],
|
|
133
126
|
'status': json['status'],
|
|
134
127
|
'collateral': json['collateral'],
|
|
135
|
-
'referral_code': json['referral_code'],
|
|
136
128
|
};
|
|
137
129
|
}
|
|
138
130
|
|
|
@@ -153,7 +145,6 @@ export function AccountToJSON(value?: Account | null): any {
|
|
|
153
145
|
'pending_order_count': value['pending_order_count'],
|
|
154
146
|
'status': value['status'],
|
|
155
147
|
'collateral': value['collateral'],
|
|
156
|
-
'referral_code': value['referral_code'],
|
|
157
148
|
};
|
|
158
149
|
}
|
|
159
150
|
|
|
@@ -104,12 +104,6 @@ export interface DetailedAccount {
|
|
|
104
104
|
* @memberof DetailedAccount
|
|
105
105
|
*/
|
|
106
106
|
collateral: string;
|
|
107
|
-
/**
|
|
108
|
-
*
|
|
109
|
-
* @type {string}
|
|
110
|
-
* @memberof DetailedAccount
|
|
111
|
-
*/
|
|
112
|
-
referral_code: string;
|
|
113
107
|
/**
|
|
114
108
|
*
|
|
115
109
|
* @type {number}
|
|
@@ -186,7 +180,6 @@ export function instanceOfDetailedAccount(value: object): value is DetailedAccou
|
|
|
186
180
|
if (!('pending_order_count' in value) || value['pending_order_count'] === undefined) return false;
|
|
187
181
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
188
182
|
if (!('collateral' in value) || value['collateral'] === undefined) return false;
|
|
189
|
-
if (!('referral_code' in value) || value['referral_code'] === undefined) return false;
|
|
190
183
|
if (!('account_index' in value) || value['account_index'] === undefined) return false;
|
|
191
184
|
if (!('name' in value) || value['name'] === undefined) return false;
|
|
192
185
|
if (!('description' in value) || value['description'] === undefined) return false;
|
|
@@ -221,7 +214,6 @@ export function DetailedAccountFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
221
214
|
'pending_order_count': json['pending_order_count'],
|
|
222
215
|
'status': json['status'],
|
|
223
216
|
'collateral': json['collateral'],
|
|
224
|
-
'referral_code': json['referral_code'],
|
|
225
217
|
'account_index': json['account_index'],
|
|
226
218
|
'name': json['name'],
|
|
227
219
|
'description': json['description'],
|
|
@@ -252,7 +244,6 @@ export function DetailedAccountToJSON(value?: DetailedAccount | null): any {
|
|
|
252
244
|
'pending_order_count': value['pending_order_count'],
|
|
253
245
|
'status': value['status'],
|
|
254
246
|
'collateral': value['collateral'],
|
|
255
|
-
'referral_code': value['referral_code'],
|
|
256
247
|
'account_index': value['account_index'],
|
|
257
248
|
'name': value['name'],
|
|
258
249
|
'description': value['description'],
|
|
@@ -0,0 +1,78 @@
|
|
|
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 HasRefereeCode
|
|
20
|
+
*/
|
|
21
|
+
export interface HasRefereeCode {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof HasRefereeCode
|
|
26
|
+
*/
|
|
27
|
+
code: number;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof HasRefereeCode
|
|
32
|
+
*/
|
|
33
|
+
message?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {boolean}
|
|
37
|
+
* @memberof HasRefereeCode
|
|
38
|
+
*/
|
|
39
|
+
has_code: boolean;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Check if a given object implements the HasRefereeCode interface.
|
|
44
|
+
*/
|
|
45
|
+
export function instanceOfHasRefereeCode(value: object): value is HasRefereeCode {
|
|
46
|
+
if (!('code' in value) || value['code'] === undefined) return false;
|
|
47
|
+
if (!('has_code' in value) || value['has_code'] === undefined) return false;
|
|
48
|
+
return true;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function HasRefereeCodeFromJSON(json: any): HasRefereeCode {
|
|
52
|
+
return HasRefereeCodeFromJSONTyped(json, false);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export function HasRefereeCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): HasRefereeCode {
|
|
56
|
+
if (json == null) {
|
|
57
|
+
return json;
|
|
58
|
+
}
|
|
59
|
+
return {
|
|
60
|
+
|
|
61
|
+
'code': json['code'],
|
|
62
|
+
'message': json['message'] == null ? undefined : json['message'],
|
|
63
|
+
'has_code': json['has_code'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export function HasRefereeCodeToJSON(value?: HasRefereeCode | null): any {
|
|
68
|
+
if (value == null) {
|
|
69
|
+
return value;
|
|
70
|
+
}
|
|
71
|
+
return {
|
|
72
|
+
|
|
73
|
+
'code': value['code'],
|
|
74
|
+
'message': value['message'],
|
|
75
|
+
'has_code': value['has_code'],
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
|
package/models/PublicPool.ts
CHANGED
|
@@ -98,12 +98,6 @@ export interface PublicPool {
|
|
|
98
98
|
* @memberof PublicPool
|
|
99
99
|
*/
|
|
100
100
|
collateral: string;
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @type {string}
|
|
104
|
-
* @memberof PublicPool
|
|
105
|
-
*/
|
|
106
|
-
referral_code: string;
|
|
107
101
|
/**
|
|
108
102
|
*
|
|
109
103
|
* @type {number}
|
|
@@ -174,7 +168,6 @@ export function instanceOfPublicPool(value: object): value is PublicPool {
|
|
|
174
168
|
if (!('pending_order_count' in value) || value['pending_order_count'] === undefined) return false;
|
|
175
169
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
176
170
|
if (!('collateral' in value) || value['collateral'] === undefined) return false;
|
|
177
|
-
if (!('referral_code' in value) || value['referral_code'] === undefined) return false;
|
|
178
171
|
if (!('account_index' in value) || value['account_index'] === undefined) return false;
|
|
179
172
|
if (!('name' in value) || value['name'] === undefined) return false;
|
|
180
173
|
if (!('description' in value) || value['description'] === undefined) return false;
|
|
@@ -207,7 +200,6 @@ export function PublicPoolFromJSONTyped(json: any, ignoreDiscriminator: boolean)
|
|
|
207
200
|
'pending_order_count': json['pending_order_count'],
|
|
208
201
|
'status': json['status'],
|
|
209
202
|
'collateral': json['collateral'],
|
|
210
|
-
'referral_code': json['referral_code'],
|
|
211
203
|
'account_index': json['account_index'],
|
|
212
204
|
'name': json['name'],
|
|
213
205
|
'description': json['description'],
|
|
@@ -237,7 +229,6 @@ export function PublicPoolToJSON(value?: PublicPool | null): any {
|
|
|
237
229
|
'pending_order_count': value['pending_order_count'],
|
|
238
230
|
'status': value['status'],
|
|
239
231
|
'collateral': value['collateral'],
|
|
240
|
-
'referral_code': value['referral_code'],
|
|
241
232
|
'account_index': value['account_index'],
|
|
242
233
|
'name': value['name'],
|
|
243
234
|
'description': value['description'],
|
|
@@ -0,0 +1,61 @@
|
|
|
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 ReqHasRefereeByL1Address
|
|
20
|
+
*/
|
|
21
|
+
export interface ReqHasRefereeByL1Address {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof ReqHasRefereeByL1Address
|
|
26
|
+
*/
|
|
27
|
+
l1_address: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the ReqHasRefereeByL1Address interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfReqHasRefereeByL1Address(value: object): value is ReqHasRefereeByL1Address {
|
|
34
|
+
if (!('l1_address' in value) || value['l1_address'] === undefined) return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function ReqHasRefereeByL1AddressFromJSON(json: any): ReqHasRefereeByL1Address {
|
|
39
|
+
return ReqHasRefereeByL1AddressFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function ReqHasRefereeByL1AddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqHasRefereeByL1Address {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
|
|
48
|
+
'l1_address': json['l1_address'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function ReqHasRefereeByL1AddressToJSON(value?: ReqHasRefereeByL1Address | null): any {
|
|
53
|
+
if (value == null) {
|
|
54
|
+
return value;
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
|
|
58
|
+
'l1_address': value['l1_address'],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
package/models/index.ts
CHANGED
|
@@ -38,6 +38,7 @@ export * from './Funding';
|
|
|
38
38
|
export * from './FundingRate';
|
|
39
39
|
export * from './FundingRates';
|
|
40
40
|
export * from './Fundings';
|
|
41
|
+
export * from './HasRefereeCode';
|
|
41
42
|
export * from './IsWhitelisted';
|
|
42
43
|
export * from './L1Metadata';
|
|
43
44
|
export * from './L1ProviderInfo';
|
|
@@ -111,7 +112,7 @@ export * from './ReqGetTransferFeeInfo';
|
|
|
111
112
|
export * from './ReqGetTransferHistory';
|
|
112
113
|
export * from './ReqGetTx';
|
|
113
114
|
export * from './ReqGetWithdrawHistory';
|
|
114
|
-
export * from './
|
|
115
|
+
export * from './ReqHasRefereeByL1Address';
|
|
115
116
|
export * from './ReqIsWhitelisted';
|
|
116
117
|
export * from './RespChangeAccountTier';
|
|
117
118
|
export * from './RespGetFastBridgeInfo';
|
package/openapi.json
CHANGED
|
@@ -2309,7 +2309,7 @@
|
|
|
2309
2309
|
"200": {
|
|
2310
2310
|
"description": "A successful response.",
|
|
2311
2311
|
"schema": {
|
|
2312
|
-
"$ref": "#/definitions/
|
|
2312
|
+
"$ref": "#/definitions/HasRefereeCode"
|
|
2313
2313
|
}
|
|
2314
2314
|
},
|
|
2315
2315
|
"400": {
|
|
@@ -2333,7 +2333,7 @@
|
|
|
2333
2333
|
"consumes": [
|
|
2334
2334
|
"multipart/form-data"
|
|
2335
2335
|
],
|
|
2336
|
-
"description": "Does L1 address have
|
|
2336
|
+
"description": "Does L1 address have referee code?"
|
|
2337
2337
|
}
|
|
2338
2338
|
},
|
|
2339
2339
|
"/api/v1/referral/points": {
|
|
@@ -3064,10 +3064,6 @@
|
|
|
3064
3064
|
"collateral": {
|
|
3065
3065
|
"type": "string",
|
|
3066
3066
|
"example": "46342"
|
|
3067
|
-
},
|
|
3068
|
-
"referral_code": {
|
|
3069
|
-
"type": "string",
|
|
3070
|
-
"example": "ABC123"
|
|
3071
3067
|
}
|
|
3072
3068
|
},
|
|
3073
3069
|
"title": "Account",
|
|
@@ -3081,8 +3077,7 @@
|
|
|
3081
3077
|
"total_isolated_order_count",
|
|
3082
3078
|
"pending_order_count",
|
|
3083
3079
|
"status",
|
|
3084
|
-
"collateral"
|
|
3085
|
-
"referral_code"
|
|
3080
|
+
"collateral"
|
|
3086
3081
|
]
|
|
3087
3082
|
},
|
|
3088
3083
|
"AccountApiKeys": {
|
|
@@ -4134,10 +4129,6 @@
|
|
|
4134
4129
|
"type": "string",
|
|
4135
4130
|
"example": "46342"
|
|
4136
4131
|
},
|
|
4137
|
-
"referral_code": {
|
|
4138
|
-
"type": "string",
|
|
4139
|
-
"example": "ABC123"
|
|
4140
|
-
},
|
|
4141
4132
|
"account_index": {
|
|
4142
4133
|
"type": "integer",
|
|
4143
4134
|
"format": "int64"
|
|
@@ -4193,7 +4184,6 @@
|
|
|
4193
4184
|
"pending_order_count",
|
|
4194
4185
|
"status",
|
|
4195
4186
|
"collateral",
|
|
4196
|
-
"referral_code",
|
|
4197
4187
|
"account_index",
|
|
4198
4188
|
"name",
|
|
4199
4189
|
"description",
|
|
@@ -4592,6 +4582,28 @@
|
|
|
4592
4582
|
"fundings"
|
|
4593
4583
|
]
|
|
4594
4584
|
},
|
|
4585
|
+
"HasRefereeCode": {
|
|
4586
|
+
"type": "object",
|
|
4587
|
+
"properties": {
|
|
4588
|
+
"code": {
|
|
4589
|
+
"type": "integer",
|
|
4590
|
+
"format": "int32",
|
|
4591
|
+
"example": "200"
|
|
4592
|
+
},
|
|
4593
|
+
"message": {
|
|
4594
|
+
"type": "string"
|
|
4595
|
+
},
|
|
4596
|
+
"has_code": {
|
|
4597
|
+
"type": "boolean",
|
|
4598
|
+
"format": "boolean"
|
|
4599
|
+
}
|
|
4600
|
+
},
|
|
4601
|
+
"title": "HasRefereeCode",
|
|
4602
|
+
"required": [
|
|
4603
|
+
"code",
|
|
4604
|
+
"has_code"
|
|
4605
|
+
]
|
|
4606
|
+
},
|
|
4595
4607
|
"IsWhitelisted": {
|
|
4596
4608
|
"type": "object",
|
|
4597
4609
|
"properties": {
|
|
@@ -5859,10 +5871,6 @@
|
|
|
5859
5871
|
"type": "string",
|
|
5860
5872
|
"example": "46342"
|
|
5861
5873
|
},
|
|
5862
|
-
"referral_code": {
|
|
5863
|
-
"type": "string",
|
|
5864
|
-
"example": "ABC123"
|
|
5865
|
-
},
|
|
5866
5874
|
"account_index": {
|
|
5867
5875
|
"type": "integer",
|
|
5868
5876
|
"format": "int64"
|
|
@@ -5909,7 +5917,6 @@
|
|
|
5909
5917
|
"pending_order_count",
|
|
5910
5918
|
"status",
|
|
5911
5919
|
"collateral",
|
|
5912
|
-
"referral_code",
|
|
5913
5920
|
"account_index",
|
|
5914
5921
|
"name",
|
|
5915
5922
|
"description",
|
|
@@ -7273,14 +7280,14 @@
|
|
|
7273
7280
|
"account_index"
|
|
7274
7281
|
]
|
|
7275
7282
|
},
|
|
7276
|
-
"
|
|
7283
|
+
"ReqHasRefereeByL1Address": {
|
|
7277
7284
|
"type": "object",
|
|
7278
7285
|
"properties": {
|
|
7279
7286
|
"l1_address": {
|
|
7280
7287
|
"type": "string"
|
|
7281
7288
|
}
|
|
7282
7289
|
},
|
|
7283
|
-
"title": "
|
|
7290
|
+
"title": "ReqHasRefereeByL1Address",
|
|
7284
7291
|
"required": [
|
|
7285
7292
|
"l1_address"
|
|
7286
7293
|
]
|