UNPKG

@aut-labs/sdk

Version:

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

11 lines (10 loc) 377 B
import { JsonFragment } from "@aut-labs/abi-types"; import { EtherSigner } from "../models/models"; export interface DeployContractParams { address?: string; signer?: EtherSigner; args?: any[]; abi: JsonFragment[]; bytecode: string; } export declare const deployContract: ({ address, abi, signer, bytecode, args }: DeployContractParams) => Promise<string>;