Updated JSON RPC object to the correct sturcture

The JSON object proposed for submitting had the incorrect structure for the JSON-RPC endpoint
This commit is contained in:
Niko
2022-12-30 01:51:51 +01:00
committed by GitHub
parent cadd245f42
commit b4de01f896

View File

@@ -34,7 +34,11 @@ An example of the request format:
```json
{
"method": "nft_sell_offers",
"tokenid": "00090000D0B007439B080E9B05BF62403911301A7B1F0CFAA048C0A200000007"
"params": [
{
"nft_id": "00090000D0B007439B080E9B05BF62403911301A7B1F0CFAA048C0A200000007"
}
]
}
```