Skip to content

Commit

Permalink
test(publicApi) : get_operations
Browse files Browse the repository at this point in the history
  • Loading branch information
modship committed Apr 10, 2024
1 parent 435e5a8 commit d13c021
Show file tree
Hide file tree
Showing 5 changed files with 160 additions and 143 deletions.
34 changes: 25 additions & 9 deletions packages/massa-web3/open_rpc/massa.api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2799,7 +2799,7 @@
"id",
"in_blocks",
"in_pool",
"is_final",
"is_operation_final",
"thread",
"operation"
],
Expand All @@ -2813,16 +2813,23 @@
"description": "Block ids\nThe operation appears in `in_blocks`\nIf it appears in multiple blocks, these blocks are in different cliques",
"type": "array",
"items": {
"type": "string"
"$ref": "#/components/schemas/BlockId"
}
},
"in_pool": {
"description": "True if operation is still in pool",
"type": "boolean"
},
"is_final": {
"is_operation_final": {
"description": "True if the operation is final (for example in a final block)",
"type": "boolean"
"oneOf": [
{
"type": "null"
},
{
"type": "boolean"
}
]
},
"thread": {
"description": "Thread in which the operation can be included",
Expand All @@ -2834,7 +2841,14 @@
},
"op_exec_status": {
"description": "true if the operation execution succeeded, false if failed, None means unknown",
"type": "boolean"
"oneOf": [
{
"type": "null"
},
{
"type": "boolean"
}
]
}
},
"additionalProperties": false
Expand Down Expand Up @@ -3418,20 +3432,22 @@
"type": "object",
"properties": {
"content": {
"$ref": "#/components/schemas/OperationType",
"description": "operation type"
"$ref": "#/components/schemas/Operation"
},
"signature": {
"$ref": "#/components/schemas/Signature",
"description": "signature"
},
"creator_public_key": {
"content_creator_pub_key": {
"$ref": "#/components/schemas/PublicKey",
"description": "the content creator public key"
},
"creator_address": {
"content_creator_address": {
"$ref": "#/components/schemas/Address",
"description": "the content creator address"
},
"id": {
"$ref": "#/components/schemas/OperationId"
}
},
"additionalProperties": false
Expand Down
67 changes: 34 additions & 33 deletions packages/massa-web3/src/experimental/generated/client-ti.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,14 +445,18 @@ export const GraphInterval = t.iface([], {

export const StringYTemzr68 = t.name("string");

export const UnorderedSetOfStringDoaGddGA7McUED3J = t.array("StringDoaGddGA");
export const UnorderedSetOfBlockIdyEy9Dvpn = t.array("BlockId");

export const BooleanSJ3TNusg = t.name("boolean");

export const BooleanYASxmBDO = t.name("boolean");
export const OneOfBooleanVyG3AEThNullQu0Arl1FCuqCzoUJ = t.union("NullQu0Arl1F", "BooleanVyG3AETh");

export const NumberZoWtBk8U = t.name("number");

export const StringV3754ZDT = t.name("string");

export const NumberSbfeGjn7 = t.name("number");

export const StringNIrlyE1J = t.name("string");

export const Transaction = t.iface([], {
Expand Down Expand Up @@ -512,23 +516,30 @@ export const OperationType = t.iface([], {
"RollSell": t.opt("RollSell"),
});

export const Operation = t.iface([], {
"fee": "StringV3754ZDT",
"expire_period": "NumberSbfeGjn7",
"op": "OperationType",
});

export const WrappedOperation = t.iface([], {
"content": "OperationType",
"content": "Operation",
"signature": "Signature",
"creator_public_key": "PublicKey",
"creator_address": "Address",
"content_creator_pub_key": t.opt("PublicKey"),
"content_creator_address": t.opt("Address"),
"id": t.opt("OperationId"),
});

export const BooleanVpZ59Kok = t.name("boolean");
export const OneOfBooleanVyG3AEThNullQu0Arl1FE3Qax0Os = t.union("NullQu0Arl1F", "BooleanVyG3AETh");

export const OperationInfo = t.iface([], {
"id": "StringYTemzr68",
"in_blocks": "UnorderedSetOfStringDoaGddGA7McUED3J",
"in_blocks": "UnorderedSetOfBlockIdyEy9Dvpn",
"in_pool": "BooleanSJ3TNusg",
"is_final": "BooleanYASxmBDO",
"is_operation_final": "OneOfBooleanVyG3AEThNullQu0Arl1FCuqCzoUJ",
"thread": "NumberZoWtBk8U",
"operation": "WrappedOperation",
"op_exec_status": t.opt("BooleanVpZ59Kok"),
"op_exec_status": t.opt("OneOfBooleanVyG3AEThNullQu0Arl1FE3Qax0Os"),
});

export const ObjectOfAddressNumberHo1ClIqDFbgdJFtJ = t.iface([], {
Expand Down Expand Up @@ -665,11 +676,11 @@ export const BlockParent = t.iface([], {

export const Boolean4XbLtRCK = t.name("boolean");

export const UnorderedSetOfOperationInfoI8K4BbWp = t.array("OperationInfo");
export const UnorderedSetOfOperationInfoUJLiVJVG = t.array("OperationInfo");

export const FilledBlock = t.iface([], {
"header": "WrappedHeader",
"operations": "UnorderedSetOfOperationInfoI8K4BbWp",
"operations": "UnorderedSetOfOperationInfoUJLiVJVG",
});

export const FilledBlockInfoContent = t.iface([], {
Expand All @@ -679,10 +690,6 @@ export const FilledBlockInfoContent = t.iface([], {
"block": "FilledBlock",
});

export const StringV3754ZDT = t.name("string");

export const NumberSbfeGjn7 = t.name("number");

export const UnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLt = t.array("ReadOnlyBytecodeExecution");

export const UnorderedSetOfReadOnlyCall8MpJcLXe = t.array("ReadOnlyCall");
Expand Down Expand Up @@ -742,7 +749,7 @@ export const UnorderedSetOfEndorsementInfoeYLhCU05 = t.array("EndorsementInfo");

export const UnorderedSetOfGraphIntervalnrFPkOrt = t.array("GraphInterval");

export const UnorderedSetOfOperationInfoHgvcOYQI = t.array("OperationInfo");
export const UnorderedSetOfOperationInfoMdPofISE = t.array("OperationInfo");

export const NodeStatus = t.iface([], {
"config": "Config",
Expand Down Expand Up @@ -784,13 +791,7 @@ export const FilledBlockInfo = t.iface([], {
"content": t.opt("FilledBlockInfoContent"),
});

export const Operation = t.iface([], {
"fee": "StringV3754ZDT",
"expire_period": "NumberSbfeGjn7",
"op": "OperationType",
});

export const AnyOfUnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLtUnorderedSetOfReadOnlyCall8MpJcLXeUnorderedSetOfAddressjJsnATCOUnorderedSetOfAddressFilteraFrapw7XUnorderedSetOfBlockIdZXK9XY8ASlotUnorderedSetOfDatastoreEntryInputBdlngHsZUnorderedSetOfSlotn0BdrHhhUnorderedSetOfStringDoaGddGADvj0XlFaEventFilterObjectOfNumberHo1ClIqDNumberHo1ClIqDTmeT75FqUnorderedSetOfStringDoaGddGADvj0XlFaPaginationUnorderedSetOfPrivateKeyG69QLiLPUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringDoaGddGADvj0XlFaUnorderedSetOfStringDoaGddGADvj0XlFaUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfAddressjJsnATCOStringUJarsTOsUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringOGpKXaCP4RgV7KAwUnorderedSetOfOperationInput9XcIbRG1ApiRequestInteger2AHOqbcQInteger2AHOqbcQInteger2AHOqbcQInteger2AHOqbcQUnorderedSetOfExecuteReadOnlyResponseig1SWJu1UnorderedSetOfExecuteReadOnlyResponseig1SWJu1UnorderedSetOfAddressInfoCm3Tm6FQUnorderedSetOfStringUJarsTOsGY6FcFnUUnorderedSetOfBlockInfoYE0DVFoIBlockUnorderedSetOfCliqueeS9LyMHxUnorderedSetOfDatastoreEntryOutputgFkmXHTzUnorderedSetOfUnorderedSetOfTransferQEyQHpyLoFgVJgXUUnorderedSetOfEndorsementInfoeYLhCU05UnorderedSetOfSCOutputEventHwhiOmzEUnorderedSetOfGraphIntervalnrFPkOrtUnorderedSetOfOperationInfoHgvcOYQIUnorderedSetOfStakerX7P278VSNodeStatusAlwaysFalseUnorderedSetOfAddressjJsnATCOAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseUnorderedSetOfIpAddressWpGgzO6MUnorderedSetOfIpAddressWpGgzO6MAlwaysFalseUnorderedSetOfIpAddressWpGgzO6MAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalsePubkeySigAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseUnorderedSetOfOperationId5TxbV4NZPagedVecStakerUnorderedSetOfBlockParentxrssVm84VersionBlockInfoWrappedHeaderFilledBlockInfoOperationBooleanVyG3AEThBooleanVyG3AEThBooleanVyG3AEThBooleanVyG3AETh = t.union("UnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLt", "UnorderedSetOfReadOnlyCall8MpJcLXe", "UnorderedSetOfAddressjJsnATCO", "UnorderedSetOfAddressFilteraFrapw7X", "UnorderedSetOfBlockIdZXK9XY8A", "Slot", "UnorderedSetOfDatastoreEntryInputBdlngHsZ", "UnorderedSetOfSlotn0BdrHhh", "UnorderedSetOfStringDoaGddGADvj0XlFa", "EventFilter", "ObjectOfNumberHo1ClIqDNumberHo1ClIqDTmeT75Fq", "Pagination", "UnorderedSetOfPrivateKeyG69QLiLP", "UnorderedSetOfStringBBdNk2Kup3WUWKiM", "StringUJarsTOs", "UnorderedSetOfStringOGpKXaCP4RgV7KAw", "UnorderedSetOfOperationInput9XcIbRG1", "ApiRequest", "Integer2AHOqbcQ", "UnorderedSetOfExecuteReadOnlyResponseig1SWJu1", "UnorderedSetOfAddressInfoCm3Tm6FQ", "UnorderedSetOfStringUJarsTOsGY6FcFnU", "UnorderedSetOfBlockInfoYE0DVFoI", "Block", "UnorderedSetOfCliqueeS9LyMHx", "UnorderedSetOfDatastoreEntryOutputgFkmXHTz", "UnorderedSetOfUnorderedSetOfTransferQEyQHpyLoFgVJgXU", "UnorderedSetOfEndorsementInfoeYLhCU05", "UnorderedSetOfSCOutputEventHwhiOmzE", "UnorderedSetOfGraphIntervalnrFPkOrt", "UnorderedSetOfOperationInfoHgvcOYQI", "UnorderedSetOfStakerX7P278VS", "NodeStatus", "AlwaysFalse", "UnorderedSetOfIpAddressWpGgzO6M", "PubkeySig", "UnorderedSetOfOperationId5TxbV4NZ", "PagedVecStaker", "UnorderedSetOfBlockParentxrssVm84", "Version", "BlockInfo", "WrappedHeader", "FilledBlockInfo", "Operation", "BooleanVyG3AETh");
export const AnyOfUnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLtUnorderedSetOfReadOnlyCall8MpJcLXeUnorderedSetOfAddressjJsnATCOUnorderedSetOfAddressFilteraFrapw7XUnorderedSetOfBlockIdZXK9XY8ASlotUnorderedSetOfDatastoreEntryInputBdlngHsZUnorderedSetOfSlotn0BdrHhhUnorderedSetOfStringDoaGddGADvj0XlFaEventFilterObjectOfNumberHo1ClIqDNumberHo1ClIqDTmeT75FqUnorderedSetOfStringDoaGddGADvj0XlFaPaginationUnorderedSetOfPrivateKeyG69QLiLPUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringDoaGddGADvj0XlFaUnorderedSetOfStringDoaGddGADvj0XlFaUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfAddressjJsnATCOStringUJarsTOsUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringOGpKXaCP4RgV7KAwUnorderedSetOfOperationInput9XcIbRG1ApiRequestInteger2AHOqbcQInteger2AHOqbcQInteger2AHOqbcQInteger2AHOqbcQUnorderedSetOfExecuteReadOnlyResponseig1SWJu1UnorderedSetOfExecuteReadOnlyResponseig1SWJu1UnorderedSetOfAddressInfoCm3Tm6FQUnorderedSetOfStringUJarsTOsGY6FcFnUUnorderedSetOfBlockInfoYE0DVFoIBlockUnorderedSetOfCliqueeS9LyMHxUnorderedSetOfDatastoreEntryOutputgFkmXHTzUnorderedSetOfUnorderedSetOfTransferQEyQHpyLoFgVJgXUUnorderedSetOfEndorsementInfoeYLhCU05UnorderedSetOfSCOutputEventHwhiOmzEUnorderedSetOfGraphIntervalnrFPkOrtUnorderedSetOfOperationInfoMdPofISEUnorderedSetOfStakerX7P278VSNodeStatusAlwaysFalseUnorderedSetOfAddressjJsnATCOAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseUnorderedSetOfIpAddressWpGgzO6MUnorderedSetOfIpAddressWpGgzO6MAlwaysFalseUnorderedSetOfIpAddressWpGgzO6MAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalsePubkeySigAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseUnorderedSetOfOperationId5TxbV4NZPagedVecStakerUnorderedSetOfBlockParentxrssVm84VersionBlockInfoWrappedHeaderFilledBlockInfoOperationBooleanVyG3AEThBooleanVyG3AEThBooleanVyG3AEThBooleanVyG3AETh = t.union("UnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLt", "UnorderedSetOfReadOnlyCall8MpJcLXe", "UnorderedSetOfAddressjJsnATCO", "UnorderedSetOfAddressFilteraFrapw7X", "UnorderedSetOfBlockIdZXK9XY8A", "Slot", "UnorderedSetOfDatastoreEntryInputBdlngHsZ", "UnorderedSetOfSlotn0BdrHhh", "UnorderedSetOfStringDoaGddGADvj0XlFa", "EventFilter", "ObjectOfNumberHo1ClIqDNumberHo1ClIqDTmeT75Fq", "Pagination", "UnorderedSetOfPrivateKeyG69QLiLP", "UnorderedSetOfStringBBdNk2Kup3WUWKiM", "StringUJarsTOs", "UnorderedSetOfStringOGpKXaCP4RgV7KAw", "UnorderedSetOfOperationInput9XcIbRG1", "ApiRequest", "Integer2AHOqbcQ", "UnorderedSetOfExecuteReadOnlyResponseig1SWJu1", "UnorderedSetOfAddressInfoCm3Tm6FQ", "UnorderedSetOfStringUJarsTOsGY6FcFnU", "UnorderedSetOfBlockInfoYE0DVFoI", "Block", "UnorderedSetOfCliqueeS9LyMHx", "UnorderedSetOfDatastoreEntryOutputgFkmXHTz", "UnorderedSetOfUnorderedSetOfTransferQEyQHpyLoFgVJgXU", "UnorderedSetOfEndorsementInfoeYLhCU05", "UnorderedSetOfSCOutputEventHwhiOmzE", "UnorderedSetOfGraphIntervalnrFPkOrt", "UnorderedSetOfOperationInfoMdPofISE", "UnorderedSetOfStakerX7P278VS", "NodeStatus", "AlwaysFalse", "UnorderedSetOfIpAddressWpGgzO6M", "PubkeySig", "UnorderedSetOfOperationId5TxbV4NZ", "PagedVecStaker", "UnorderedSetOfBlockParentxrssVm84", "Version", "BlockInfo", "WrappedHeader", "FilledBlockInfo", "Operation", "BooleanVyG3AETh");

export const ExecuteReadOnlyBytecode = t.func("UnorderedSetOfExecuteReadOnlyResponseig1SWJu1", t.param("ReadOnlyBytecodeExecution", "UnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLt"));

Expand All @@ -816,7 +817,7 @@ export const GetFilteredScOutputEvent = t.func("UnorderedSetOfSCOutputEventHwhiO

export const GetGraphInterval = t.func("UnorderedSetOfGraphIntervalnrFPkOrt", t.param("TimeInterval", "ObjectOfNumberHo1ClIqDNumberHo1ClIqDTmeT75Fq"));

export const GetOperations = t.func("UnorderedSetOfOperationInfoHgvcOYQI", t.param("operationId", "UnorderedSetOfStringDoaGddGADvj0XlFa"));
export const GetOperations = t.func("UnorderedSetOfOperationInfoMdPofISE", t.param("operationId", "UnorderedSetOfStringDoaGddGADvj0XlFa"));

export const GetStakers = t.func("UnorderedSetOfStakerX7P278VS", t.param("PageRequest", "Pagination"));

Expand Down Expand Up @@ -1024,10 +1025,12 @@ const exportedTypeSuite: t.ITypeSuite = {
UnorderedSetOfStringDoaGddGAMZnHm9WS,
GraphInterval,
StringYTemzr68,
UnorderedSetOfStringDoaGddGA7McUED3J,
UnorderedSetOfBlockIdyEy9Dvpn,
BooleanSJ3TNusg,
BooleanYASxmBDO,
OneOfBooleanVyG3AEThNullQu0Arl1FCuqCzoUJ,
NumberZoWtBk8U,
StringV3754ZDT,
NumberSbfeGjn7,
StringNIrlyE1J,
Transaction,
UnorderedSetOfNumberHo1ClIqDd5W02PgX,
Expand All @@ -1043,8 +1046,9 @@ const exportedTypeSuite: t.ITypeSuite = {
RollBuy,
RollSell,
OperationType,
Operation,
WrappedOperation,
BooleanVpZ59Kok,
OneOfBooleanVyG3AEThNullQu0Arl1FE3Qax0Os,
OperationInfo,
ObjectOfAddressNumberHo1ClIqDFbgdJFtJ,
Staker,
Expand Down Expand Up @@ -1089,11 +1093,9 @@ const exportedTypeSuite: t.ITypeSuite = {
ObjectOfNumberHo1ClIqDBlockIdHCnqqlza,
BlockParent,
Boolean4XbLtRCK,
UnorderedSetOfOperationInfoI8K4BbWp,
UnorderedSetOfOperationInfoUJLiVJVG,
FilledBlock,
FilledBlockInfoContent,
StringV3754ZDT,
NumberSbfeGjn7,
UnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLt,
UnorderedSetOfReadOnlyCall8MpJcLXe,
UnorderedSetOfAddressjJsnATCO,
Expand All @@ -1117,16 +1119,15 @@ const exportedTypeSuite: t.ITypeSuite = {
UnorderedSetOfUnorderedSetOfTransferQEyQHpyLoFgVJgXU,
UnorderedSetOfEndorsementInfoeYLhCU05,
UnorderedSetOfGraphIntervalnrFPkOrt,
UnorderedSetOfOperationInfoHgvcOYQI,
UnorderedSetOfOperationInfoMdPofISE,
NodeStatus,
UnorderedSetOfIpAddressWpGgzO6M,
PubkeySig,
UnorderedSetOfOperationId5TxbV4NZ,
PagedVecStaker,
UnorderedSetOfBlockParentxrssVm84,
FilledBlockInfo,
Operation,
AnyOfUnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLtUnorderedSetOfReadOnlyCall8MpJcLXeUnorderedSetOfAddressjJsnATCOUnorderedSetOfAddressFilteraFrapw7XUnorderedSetOfBlockIdZXK9XY8ASlotUnorderedSetOfDatastoreEntryInputBdlngHsZUnorderedSetOfSlotn0BdrHhhUnorderedSetOfStringDoaGddGADvj0XlFaEventFilterObjectOfNumberHo1ClIqDNumberHo1ClIqDTmeT75FqUnorderedSetOfStringDoaGddGADvj0XlFaPaginationUnorderedSetOfPrivateKeyG69QLiLPUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringDoaGddGADvj0XlFaUnorderedSetOfStringDoaGddGADvj0XlFaUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfAddressjJsnATCOStringUJarsTOsUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringOGpKXaCP4RgV7KAwUnorderedSetOfOperationInput9XcIbRG1ApiRequestInteger2AHOqbcQInteger2AHOqbcQInteger2AHOqbcQInteger2AHOqbcQUnorderedSetOfExecuteReadOnlyResponseig1SWJu1UnorderedSetOfExecuteReadOnlyResponseig1SWJu1UnorderedSetOfAddressInfoCm3Tm6FQUnorderedSetOfStringUJarsTOsGY6FcFnUUnorderedSetOfBlockInfoYE0DVFoIBlockUnorderedSetOfCliqueeS9LyMHxUnorderedSetOfDatastoreEntryOutputgFkmXHTzUnorderedSetOfUnorderedSetOfTransferQEyQHpyLoFgVJgXUUnorderedSetOfEndorsementInfoeYLhCU05UnorderedSetOfSCOutputEventHwhiOmzEUnorderedSetOfGraphIntervalnrFPkOrtUnorderedSetOfOperationInfoHgvcOYQIUnorderedSetOfStakerX7P278VSNodeStatusAlwaysFalseUnorderedSetOfAddressjJsnATCOAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseUnorderedSetOfIpAddressWpGgzO6MUnorderedSetOfIpAddressWpGgzO6MAlwaysFalseUnorderedSetOfIpAddressWpGgzO6MAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalsePubkeySigAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseUnorderedSetOfOperationId5TxbV4NZPagedVecStakerUnorderedSetOfBlockParentxrssVm84VersionBlockInfoWrappedHeaderFilledBlockInfoOperationBooleanVyG3AEThBooleanVyG3AEThBooleanVyG3AEThBooleanVyG3AETh,
AnyOfUnorderedSetOfReadOnlyBytecodeExecutionRdoqZmLtUnorderedSetOfReadOnlyCall8MpJcLXeUnorderedSetOfAddressjJsnATCOUnorderedSetOfAddressFilteraFrapw7XUnorderedSetOfBlockIdZXK9XY8ASlotUnorderedSetOfDatastoreEntryInputBdlngHsZUnorderedSetOfSlotn0BdrHhhUnorderedSetOfStringDoaGddGADvj0XlFaEventFilterObjectOfNumberHo1ClIqDNumberHo1ClIqDTmeT75FqUnorderedSetOfStringDoaGddGADvj0XlFaPaginationUnorderedSetOfPrivateKeyG69QLiLPUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringDoaGddGADvj0XlFaUnorderedSetOfStringDoaGddGADvj0XlFaUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfAddressjJsnATCOStringUJarsTOsUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringBBdNk2Kup3WUWKiMUnorderedSetOfStringOGpKXaCP4RgV7KAwUnorderedSetOfOperationInput9XcIbRG1ApiRequestInteger2AHOqbcQInteger2AHOqbcQInteger2AHOqbcQInteger2AHOqbcQUnorderedSetOfExecuteReadOnlyResponseig1SWJu1UnorderedSetOfExecuteReadOnlyResponseig1SWJu1UnorderedSetOfAddressInfoCm3Tm6FQUnorderedSetOfStringUJarsTOsGY6FcFnUUnorderedSetOfBlockInfoYE0DVFoIBlockUnorderedSetOfCliqueeS9LyMHxUnorderedSetOfDatastoreEntryOutputgFkmXHTzUnorderedSetOfUnorderedSetOfTransferQEyQHpyLoFgVJgXUUnorderedSetOfEndorsementInfoeYLhCU05UnorderedSetOfSCOutputEventHwhiOmzEUnorderedSetOfGraphIntervalnrFPkOrtUnorderedSetOfOperationInfoMdPofISEUnorderedSetOfStakerX7P278VSNodeStatusAlwaysFalseUnorderedSetOfAddressjJsnATCOAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseUnorderedSetOfIpAddressWpGgzO6MUnorderedSetOfIpAddressWpGgzO6MAlwaysFalseUnorderedSetOfIpAddressWpGgzO6MAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalsePubkeySigAlwaysFalseAlwaysFalseAlwaysFalseAlwaysFalseUnorderedSetOfOperationId5TxbV4NZPagedVecStakerUnorderedSetOfBlockParentxrssVm84VersionBlockInfoWrappedHeaderFilledBlockInfoOperationBooleanVyG3AEThBooleanVyG3AEThBooleanVyG3AEThBooleanVyG3AETh,
ExecuteReadOnlyBytecode,
ExecuteReadOnlyCall,
GetAddresses,
Expand Down
Loading

0 comments on commit d13c021

Please sign in to comment.