Delete token contract
How to delete an ERC20 token contract.
Deleting an ERC20 token contract will remove it from all API responses, making it inaccessible through any API calls. Additionally, you can no longer mint tokens under a deleted token contract.
Request Endpoint: reference
DELETE /api/v3/erc20/contracts/{chain}/{contractAddress}
Parameter | Param Type | Description | Data Type | Mandatory |
---|---|---|---|---|
{chain} | Path | The blockchain of the token contract | String | ✅ |
{contractAddress} | Path | The token contract address you want to delete | String | ✅ |
Example Request:
DELETE /api/v3/erc20/contracts/MATIC/0x022a39f06413e249b3739c573bdb28b98eac051b
Response
You will get a 200 OK response indicating the token contract has been deleted successfully.
Updated 3 months ago