Send message

Use mutation postRequests for this.

You can send a batch of messages with this API.

Use encode_message function to generate a message.

Use get_boc_hash function to calculate message hash.

mutation{
  postRequests(requests:[
    {
      id: "tvm-hash-of-message-boc-in-base64"
      body: "message-body-in-base64"
    }
  ])
}

Last updated