Interface ContractTypeResponseDto

interface ContractTypeResponseDto {
    chain_id: number;
    is_of_type: boolean;
    network_name: string;
    token_address: string;
    type_checked:
        | "erc20"
        | "erc721"
        | "erc777"
        | "erc1155";
}

Properties

chain_id: number
is_of_type: boolean
network_name: string
token_address: string
type_checked:
    | "erc20"
    | "erc721"
    | "erc777"
    | "erc1155"