Update Contract Metadata

If the user wants to modify some data of a contract such as a contract name, symbol, or description, this endpoint is useful as it enables one to make those changes.

Endpoint: PUT /api/contracts/{contractId}/metadata

Request Body:

json

Copy code

{

"name": "Updated Contract Name",

"symbol": "UCN",

"description": "Updated description of the contract."

}

Last updated