@nexex/api
Version:
support trade on nexex network
8 lines (7 loc) • 370 B
TypeScript
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>;
}