UNPKG

@nexex/api

Version:
8 lines (7 loc) 370 B
import { Signer } from 'ethers'; import { TransactionRequest, TransactionResponse } from 'ethers/providers'; import { BaseContract } from './BaseContract'; export declare abstract class OwnableContract extends BaseContract { owner(): Promise<string>; transferOwnership(signer: Signer, newOwner: string, opt?: TransactionRequest): Promise<TransactionResponse>; }