View
Execute view function of a module
Execute the Move function with the given parameters and return its execution result.
The Lumio nodes prune account state history, via a configurable time window. If the requested ledger version has been pruned, the server responds with a 410.
post/view
Query parameters
ledger_versionstring uint64
A string containing a 64-bit unsigned integer.
We represent u64 values as a string to ensure compatibility with languages such as JavaScript that do not parse u64s in JSON natively.
Example:32425224034
Ledger version to get state of account
If not provided, it will be the latest version
Request body
Example request
{
"function": "0x1::lumio_coin::transfer"
}Response
MoveValue[] required
Example response
[
{
"authentication_key": "0x0000000000000000000000000000000000000000000000000000000000000001",
"coin_register_events": {
"counter": "0",
"guid": {
"id": {
"addr": "0x1",
"creation_num": "0"
}
}
},
"self_address": "0x1",
"sequence_number": "0"
}
]