@sentio/protos 2.63.0-rc2.1 → 2.63.0-rc2.3
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/package.json
CHANGED
|
@@ -1230,6 +1230,7 @@ export interface Data_EthLog {
|
|
|
1230
1230
|
|
|
1231
1231
|
export interface Data_EthBlock {
|
|
1232
1232
|
block: { [key: string]: any } | undefined;
|
|
1233
|
+
rawBlock: string;
|
|
1233
1234
|
}
|
|
1234
1235
|
|
|
1235
1236
|
export interface Data_EthTransaction {
|
|
@@ -1250,6 +1251,10 @@ export interface Data_EthTrace {
|
|
|
1250
1251
|
transaction?: { [key: string]: any } | undefined;
|
|
1251
1252
|
transactionReceipt?: { [key: string]: any } | undefined;
|
|
1252
1253
|
block?: { [key: string]: any } | undefined;
|
|
1254
|
+
rawTrace: string;
|
|
1255
|
+
rawTransaction?: string | undefined;
|
|
1256
|
+
rawTransactionReceipt?: string | undefined;
|
|
1257
|
+
rawBlock?: string | undefined;
|
|
1253
1258
|
}
|
|
1254
1259
|
|
|
1255
1260
|
export interface Data_SolInstruction {
|
|
@@ -1258,6 +1263,7 @@ export interface Data_SolInstruction {
|
|
|
1258
1263
|
programAccountId: string;
|
|
1259
1264
|
accounts: string[];
|
|
1260
1265
|
parsed?: { [key: string]: any } | undefined;
|
|
1266
|
+
rawParsed?: string | undefined;
|
|
1261
1267
|
}
|
|
1262
1268
|
|
|
1263
1269
|
export interface Data_AptEvent {
|
|
@@ -10004,7 +10010,7 @@ export const Data_EthLog = {
|
|
|
10004
10010
|
};
|
|
10005
10011
|
|
|
10006
10012
|
function createBaseData_EthBlock(): Data_EthBlock {
|
|
10007
|
-
return { block: undefined };
|
|
10013
|
+
return { block: undefined, rawBlock: "" };
|
|
10008
10014
|
}
|
|
10009
10015
|
|
|
10010
10016
|
export const Data_EthBlock = {
|
|
@@ -10012,6 +10018,9 @@ export const Data_EthBlock = {
|
|
|
10012
10018
|
if (message.block !== undefined) {
|
|
10013
10019
|
Struct.encode(Struct.wrap(message.block), writer.uint32(18).fork()).ldelim();
|
|
10014
10020
|
}
|
|
10021
|
+
if (message.rawBlock !== "") {
|
|
10022
|
+
writer.uint32(10).string(message.rawBlock);
|
|
10023
|
+
}
|
|
10015
10024
|
return writer;
|
|
10016
10025
|
},
|
|
10017
10026
|
|
|
@@ -10029,6 +10038,13 @@ export const Data_EthBlock = {
|
|
|
10029
10038
|
|
|
10030
10039
|
message.block = Struct.unwrap(Struct.decode(reader, reader.uint32()));
|
|
10031
10040
|
continue;
|
|
10041
|
+
case 1:
|
|
10042
|
+
if (tag !== 10) {
|
|
10043
|
+
break;
|
|
10044
|
+
}
|
|
10045
|
+
|
|
10046
|
+
message.rawBlock = reader.string();
|
|
10047
|
+
continue;
|
|
10032
10048
|
}
|
|
10033
10049
|
if ((tag & 7) === 4 || tag === 0) {
|
|
10034
10050
|
break;
|
|
@@ -10039,7 +10055,10 @@ export const Data_EthBlock = {
|
|
|
10039
10055
|
},
|
|
10040
10056
|
|
|
10041
10057
|
fromJSON(object: any): Data_EthBlock {
|
|
10042
|
-
return {
|
|
10058
|
+
return {
|
|
10059
|
+
block: isObject(object.block) ? object.block : undefined,
|
|
10060
|
+
rawBlock: isSet(object.rawBlock) ? globalThis.String(object.rawBlock) : "",
|
|
10061
|
+
};
|
|
10043
10062
|
},
|
|
10044
10063
|
|
|
10045
10064
|
toJSON(message: Data_EthBlock): unknown {
|
|
@@ -10047,6 +10066,9 @@ export const Data_EthBlock = {
|
|
|
10047
10066
|
if (message.block !== undefined) {
|
|
10048
10067
|
obj.block = message.block;
|
|
10049
10068
|
}
|
|
10069
|
+
if (message.rawBlock !== "") {
|
|
10070
|
+
obj.rawBlock = message.rawBlock;
|
|
10071
|
+
}
|
|
10050
10072
|
return obj;
|
|
10051
10073
|
},
|
|
10052
10074
|
|
|
@@ -10056,6 +10078,7 @@ export const Data_EthBlock = {
|
|
|
10056
10078
|
fromPartial(object: DeepPartial<Data_EthBlock>): Data_EthBlock {
|
|
10057
10079
|
const message = createBaseData_EthBlock();
|
|
10058
10080
|
message.block = object.block ?? undefined;
|
|
10081
|
+
message.rawBlock = object.rawBlock ?? "";
|
|
10059
10082
|
return message;
|
|
10060
10083
|
},
|
|
10061
10084
|
};
|
|
@@ -10258,6 +10281,10 @@ function createBaseData_EthTrace(): Data_EthTrace {
|
|
|
10258
10281
|
transaction: undefined,
|
|
10259
10282
|
transactionReceipt: undefined,
|
|
10260
10283
|
block: undefined,
|
|
10284
|
+
rawTrace: "",
|
|
10285
|
+
rawTransaction: undefined,
|
|
10286
|
+
rawTransactionReceipt: undefined,
|
|
10287
|
+
rawBlock: undefined,
|
|
10261
10288
|
};
|
|
10262
10289
|
}
|
|
10263
10290
|
|
|
@@ -10278,6 +10305,18 @@ export const Data_EthTrace = {
|
|
|
10278
10305
|
if (message.block !== undefined) {
|
|
10279
10306
|
Struct.encode(Struct.wrap(message.block), writer.uint32(50).fork()).ldelim();
|
|
10280
10307
|
}
|
|
10308
|
+
if (message.rawTrace !== "") {
|
|
10309
|
+
writer.uint32(58).string(message.rawTrace);
|
|
10310
|
+
}
|
|
10311
|
+
if (message.rawTransaction !== undefined) {
|
|
10312
|
+
writer.uint32(66).string(message.rawTransaction);
|
|
10313
|
+
}
|
|
10314
|
+
if (message.rawTransactionReceipt !== undefined) {
|
|
10315
|
+
writer.uint32(74).string(message.rawTransactionReceipt);
|
|
10316
|
+
}
|
|
10317
|
+
if (message.rawBlock !== undefined) {
|
|
10318
|
+
writer.uint32(82).string(message.rawBlock);
|
|
10319
|
+
}
|
|
10281
10320
|
return writer;
|
|
10282
10321
|
},
|
|
10283
10322
|
|
|
@@ -10323,6 +10362,34 @@ export const Data_EthTrace = {
|
|
|
10323
10362
|
|
|
10324
10363
|
message.block = Struct.unwrap(Struct.decode(reader, reader.uint32()));
|
|
10325
10364
|
continue;
|
|
10365
|
+
case 7:
|
|
10366
|
+
if (tag !== 58) {
|
|
10367
|
+
break;
|
|
10368
|
+
}
|
|
10369
|
+
|
|
10370
|
+
message.rawTrace = reader.string();
|
|
10371
|
+
continue;
|
|
10372
|
+
case 8:
|
|
10373
|
+
if (tag !== 66) {
|
|
10374
|
+
break;
|
|
10375
|
+
}
|
|
10376
|
+
|
|
10377
|
+
message.rawTransaction = reader.string();
|
|
10378
|
+
continue;
|
|
10379
|
+
case 9:
|
|
10380
|
+
if (tag !== 74) {
|
|
10381
|
+
break;
|
|
10382
|
+
}
|
|
10383
|
+
|
|
10384
|
+
message.rawTransactionReceipt = reader.string();
|
|
10385
|
+
continue;
|
|
10386
|
+
case 10:
|
|
10387
|
+
if (tag !== 82) {
|
|
10388
|
+
break;
|
|
10389
|
+
}
|
|
10390
|
+
|
|
10391
|
+
message.rawBlock = reader.string();
|
|
10392
|
+
continue;
|
|
10326
10393
|
}
|
|
10327
10394
|
if ((tag & 7) === 4 || tag === 0) {
|
|
10328
10395
|
break;
|
|
@@ -10339,6 +10406,12 @@ export const Data_EthTrace = {
|
|
|
10339
10406
|
transaction: isObject(object.transaction) ? object.transaction : undefined,
|
|
10340
10407
|
transactionReceipt: isObject(object.transactionReceipt) ? object.transactionReceipt : undefined,
|
|
10341
10408
|
block: isObject(object.block) ? object.block : undefined,
|
|
10409
|
+
rawTrace: isSet(object.rawTrace) ? globalThis.String(object.rawTrace) : "",
|
|
10410
|
+
rawTransaction: isSet(object.rawTransaction) ? globalThis.String(object.rawTransaction) : undefined,
|
|
10411
|
+
rawTransactionReceipt: isSet(object.rawTransactionReceipt)
|
|
10412
|
+
? globalThis.String(object.rawTransactionReceipt)
|
|
10413
|
+
: undefined,
|
|
10414
|
+
rawBlock: isSet(object.rawBlock) ? globalThis.String(object.rawBlock) : undefined,
|
|
10342
10415
|
};
|
|
10343
10416
|
},
|
|
10344
10417
|
|
|
@@ -10359,6 +10432,18 @@ export const Data_EthTrace = {
|
|
|
10359
10432
|
if (message.block !== undefined) {
|
|
10360
10433
|
obj.block = message.block;
|
|
10361
10434
|
}
|
|
10435
|
+
if (message.rawTrace !== "") {
|
|
10436
|
+
obj.rawTrace = message.rawTrace;
|
|
10437
|
+
}
|
|
10438
|
+
if (message.rawTransaction !== undefined) {
|
|
10439
|
+
obj.rawTransaction = message.rawTransaction;
|
|
10440
|
+
}
|
|
10441
|
+
if (message.rawTransactionReceipt !== undefined) {
|
|
10442
|
+
obj.rawTransactionReceipt = message.rawTransactionReceipt;
|
|
10443
|
+
}
|
|
10444
|
+
if (message.rawBlock !== undefined) {
|
|
10445
|
+
obj.rawBlock = message.rawBlock;
|
|
10446
|
+
}
|
|
10362
10447
|
return obj;
|
|
10363
10448
|
},
|
|
10364
10449
|
|
|
@@ -10372,12 +10457,23 @@ export const Data_EthTrace = {
|
|
|
10372
10457
|
message.transaction = object.transaction ?? undefined;
|
|
10373
10458
|
message.transactionReceipt = object.transactionReceipt ?? undefined;
|
|
10374
10459
|
message.block = object.block ?? undefined;
|
|
10460
|
+
message.rawTrace = object.rawTrace ?? "";
|
|
10461
|
+
message.rawTransaction = object.rawTransaction ?? undefined;
|
|
10462
|
+
message.rawTransactionReceipt = object.rawTransactionReceipt ?? undefined;
|
|
10463
|
+
message.rawBlock = object.rawBlock ?? undefined;
|
|
10375
10464
|
return message;
|
|
10376
10465
|
},
|
|
10377
10466
|
};
|
|
10378
10467
|
|
|
10379
10468
|
function createBaseData_SolInstruction(): Data_SolInstruction {
|
|
10380
|
-
return {
|
|
10469
|
+
return {
|
|
10470
|
+
instructionData: "",
|
|
10471
|
+
slot: BigInt("0"),
|
|
10472
|
+
programAccountId: "",
|
|
10473
|
+
accounts: [],
|
|
10474
|
+
parsed: undefined,
|
|
10475
|
+
rawParsed: undefined,
|
|
10476
|
+
};
|
|
10381
10477
|
}
|
|
10382
10478
|
|
|
10383
10479
|
export const Data_SolInstruction = {
|
|
@@ -10400,6 +10496,9 @@ export const Data_SolInstruction = {
|
|
|
10400
10496
|
if (message.parsed !== undefined) {
|
|
10401
10497
|
Struct.encode(Struct.wrap(message.parsed), writer.uint32(34).fork()).ldelim();
|
|
10402
10498
|
}
|
|
10499
|
+
if (message.rawParsed !== undefined) {
|
|
10500
|
+
writer.uint32(58).string(message.rawParsed);
|
|
10501
|
+
}
|
|
10403
10502
|
return writer;
|
|
10404
10503
|
},
|
|
10405
10504
|
|
|
@@ -10445,6 +10544,13 @@ export const Data_SolInstruction = {
|
|
|
10445
10544
|
|
|
10446
10545
|
message.parsed = Struct.unwrap(Struct.decode(reader, reader.uint32()));
|
|
10447
10546
|
continue;
|
|
10547
|
+
case 7:
|
|
10548
|
+
if (tag !== 58) {
|
|
10549
|
+
break;
|
|
10550
|
+
}
|
|
10551
|
+
|
|
10552
|
+
message.rawParsed = reader.string();
|
|
10553
|
+
continue;
|
|
10448
10554
|
}
|
|
10449
10555
|
if ((tag & 7) === 4 || tag === 0) {
|
|
10450
10556
|
break;
|
|
@@ -10461,6 +10567,7 @@ export const Data_SolInstruction = {
|
|
|
10461
10567
|
programAccountId: isSet(object.programAccountId) ? globalThis.String(object.programAccountId) : "",
|
|
10462
10568
|
accounts: globalThis.Array.isArray(object?.accounts) ? object.accounts.map((e: any) => globalThis.String(e)) : [],
|
|
10463
10569
|
parsed: isObject(object.parsed) ? object.parsed : undefined,
|
|
10570
|
+
rawParsed: isSet(object.rawParsed) ? globalThis.String(object.rawParsed) : undefined,
|
|
10464
10571
|
};
|
|
10465
10572
|
},
|
|
10466
10573
|
|
|
@@ -10481,6 +10588,9 @@ export const Data_SolInstruction = {
|
|
|
10481
10588
|
if (message.parsed !== undefined) {
|
|
10482
10589
|
obj.parsed = message.parsed;
|
|
10483
10590
|
}
|
|
10591
|
+
if (message.rawParsed !== undefined) {
|
|
10592
|
+
obj.rawParsed = message.rawParsed;
|
|
10593
|
+
}
|
|
10484
10594
|
return obj;
|
|
10485
10595
|
},
|
|
10486
10596
|
|
|
@@ -10494,6 +10604,7 @@ export const Data_SolInstruction = {
|
|
|
10494
10604
|
message.programAccountId = object.programAccountId ?? "";
|
|
10495
10605
|
message.accounts = object.accounts?.map((e) => e) || [];
|
|
10496
10606
|
message.parsed = object.parsed ?? undefined;
|
|
10607
|
+
message.rawParsed = object.rawParsed ?? undefined;
|
|
10497
10608
|
return message;
|
|
10498
10609
|
},
|
|
10499
10610
|
};
|