When you see the fields used in a transaction in the Elrond blockchain, there is one called "version" and it's usually set to "1":
POST https://gateway.elrond.com/transaction/send HTTP/1.1
Content-Type: application/json
{
"version": 1,
"chainId": "v1.0.141",
"nonce": 42,
"value": "100000000000000000",
"receiver": "erd1...",
"sender": "erd1...",
"gasPrice": 1000000000,
"gasLimit": 70000,
"data": "food for cats",
"signature": "..."
}
What's its meaning?
Thanks!