Deploy Ethereum ERC721 Smart Contract.
POST {{baseUrl}}/v3/ethereum/erc721/deploy
Deploy Ethereum ERC721 Smart Contract. This method creates new ERC721 Smart Contract (Non-Fungible Tokens) on the blockchain. Smart contract is standardized and audited.
It is possible to mint, burn and transfer tokens. It is also possible to mint multiple tokens at once.
It is possible to see the code of the deployed contract here.
This operation needs the private key of the blockchain address. Every time the funds are transferred, the transaction must be signed with the corresponding private key.
No one should ever send it's own private keys to the internet because there is a strong possibility of stealing keys and loss of funds. In this method, it is possible to enter privateKey
or signatureId. PrivateKey should be used only for quick development on testnet versions of blockchain when there is no risk of losing funds. In production,
Tatum KMS should be used for the highest security standards, and signatureId should be present in the request.
Alternatively, using the Tatum client library for supported languages.
Request Body
{"name"=>"My ERC721", "symbol"=>"ERC_SYMBOL", "fromPrivateKey"=>"0x05e150c73f1920ec14caa1e0b6aa09940899678051a78542840c2668ce5080c2", "nonce"=>29249141.28093905, "fee"=>{"gasLimit"=>"40000", "gasPrice"=>"20"}}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string |
RESPONSES
status: OK
{"txId":"c83f8818db43d9ba4accfe454aa44fc33123d47a4f89d47b314d6748eb0e9bc9","failed":false}