Creator

ContractsByCreator gets the contracts by creator

GEThttps://lunc.nownodes.io/cosmwasm/wasm/v1/contracts/creator/{creator_address}
Path parameters
creator_address*string

CreatorAddress is the address of contract creator

Query parameters
Response

A successful response.

Body
contract_addressesContractAddresses result set
paginationobject

Pagination defines the pagination in the response.

Request
const response = await fetch('https://lunc.nownodes.io/cosmwasm/wasm/v1/contracts/creator/{creator_address}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "contract_addresses": [
    "text"
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}