Transfer an Inscription
Transfer an Inscription with an amount, ticker, and from/to addresses.
Transfer HCS-20 Structure
This is the stucture that is used to send to the topic, this payload has been humanised to be more understandable.
Overview
There are 2 required fields needed to deploy an inscription:
to
from
amount
These are the optional fields you can use:
topic_id (your private application for controlling all points or inscriptions)
memo (an additional memo at the deployment level)
POST
https://hedera-serverless-consensus.vercel.app/api/inscription/{ticker}/transfer
Mint an Inscription
Query Parameters
Name | Type | Description |
---|---|---|
ticker* | String | Unique ticker of the inscription |
Headers
Name | Type | Description |
---|---|---|
x-api-key* | String | The API_SECRET_KEY from the client's environment variables. |
Request Body
Name | Type | Description |
---|---|---|
amount* | Int | amount to mint in one transaction |
topic_id | String | your private topic for limiting access |
memo | String | |
to | String | receiver address |
from | String | origination address |
Last updated