Deployed Contracts
Get Deployed Contracts
Get list of deployed contracts with pagination
get/api/v1/deployed-contracts
Query parameters
contractAddressstring
Contract address filter
network'tBTC' | 'tETH' | 'AVAX' | 'FUJI' | 'SANDBOX'
Network filter
contractTemplateIdstring
Contract template ID filter
skipinteger
Number of records to skip
takeinteger
Number of records to take
Headers
x-sdk-versionstring
SDK version header
Response
Successfully retrieved deployed contracts
Example response
{
"deployedContracts": {
"contracts": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"contractAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"network": "ETH",
"contractTemplateId": "123e4567-e89b-12d3-a456-426614174000"
}
],
"total": 50,
"take": 10
}
}