v1

latestOpenAPI 3.1.02026-07-1288262495.0 KB
EVM Transactions

List deployed contracts

Lists all contracts deployed by the given address.

get/v1/chains/{chainId}/contracts/{address}/deployments

Path parameters

chainIdstring required

A supported evm chain id or blockchain id. Use the /chains endpoint to get a list of supported chain ids.

addressstring required

A wallet address.

Query parameters

pageTokenstring

A page token, received from a previous list call. Provide this to retrieve the subsequent page.

pageSizeinteger

The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.

Response

Successful response

nextPageTokenstring

A token, which can be sent as pageToken to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.

Example response

{
  "contracts": [
    {
      "name": "Wrapped AVAX",
      "address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F",
      "symbol": "WAVAX"
    }
  ]
}