Get Deployment Details

Get Deployment Details

Path

  • GET /deployment/:ticker

Description

  • Retrieves deployment details for a given ticker, such as contract address and deployment parameters.

Parameters

  • ticker: The ticker symbol of the token (path parameter).

Request Example

GET /deployment/ETH

Response Example

{
  "deployment": {
    "contractAddress": "0x789ghi...",
    "maxAmount": 1000,
    "mintLimit": 100,
    // ... other deployment details
  }
}

Error Responses

  • 404 Not Found: If the ticker has not been deployed.

  • 500 Internal Server Error: For server-related issues.

Last updated