Share your feedback on Twitter and claim 5M Free GetBlock Requests

banner image

Last updated on January 1, 1970

1 min read

Method sendmany NEO (NEO)
connect with JSON-RPC protocol

sendmany

info-circle-fill

Method not allowed

info-circle-fill

Bulk transfer order, and you can specify a change address.Before you can invoke this method you must call the RPC methodopenwallet to open the wallet first.

Parameters

from - string

Optional. The address from which you transfer the asset.

outputs_array - array

Array, the data structure of each element in the array is as follows:

{"asset": asset,"value": value,"address": address, "signers": signers}

- asset : Asset ID (asset identifier), the NEP-17 contract scripthash

- value : Transfer amount

- address : Destination address

- signers : The signature account of transaction

Request

curl --location --request POST 'https://neo.getblock.io' 
--header 'x-api-key: YOUR-API-KEY' 
--header 'Content-Type: application/json' 
--data-raw '{"jsonrpc": "2.0",
"method": "sendmany",
"params": [null, null],
"id": "getblock.io"}'

Response

{
    "result": "null",
    "id": "getblock.io",
    "status_code": 405,
    "message": "Method not allowed"
}
banner icon

Start Building with GetBlock RPCs for Free