UNPKG

@aut-labs/sdk

Version:

The TS/JS SDK package aims to make it easy for frontends/backends to integrate with Aut Smart Contracts

7 lines (6 loc) 409 B
import { AllowlistContractFunctions, AllowlistContractEventType } from "@aut-labs/abi-types"; import { SDKContractGenericResponse } from "../models/response"; import SDKBaseContract from "./base.contract"; export declare class AllowlistContract extends SDKBaseContract<AllowlistContractFunctions, AllowlistContractEventType> { addToAllowlist(address: string): Promise<SDKContractGenericResponse<void>>; }