The same arguments as for contract calls have been added. The args are --abi and --arguments-file. Keep in mind the args should be placed inside a list like such:
[
5,
{
{ "bech32": "erd1..." }
}
]
When performing queries without the abi file the response looks like this:
[
"0e"
]
But when using the abi file the response is parsed, and it looks like this:
[
14
]
There are small differences in how values are returned. For example, if an endpoint returns variadic<Address>, when querying without abi, the response looks like this:
The same arguments as for contract calls have been added. The args are
--abi
and--arguments-file
. Keep in mind the args should be placed inside alist
like such:When performing queries without the abi file the response looks like this:
But when using the abi file the response is parsed, and it looks like this:
There are small differences in how values are returned. For example, if an endpoint returns
variadic<Address>
, when querying without abi, the response looks like this:But when the abi is used, the response looks like this: