UNPKG

@dolomite-exchange/dolomite-margin

Version:

Ethereum Smart Contracts and TypeScript library used for the DolomiteMargin trading protocol

9 lines (8 loc) 475 B
import { Contracts } from '../lib/Contracts'; import { address, ContractCallOptions, Integer, TxResult } from '../types'; export declare class ExpiryProxy { private contracts; constructor(contracts: Contracts); get address(): address; expire(accountOwner: address, accountNumber: Integer, liquidOwner: address, liquidNumber: Integer, owedMarket: Integer, heldMarket: Integer, expirationTimestamp: Integer, options?: ContractCallOptions): Promise<TxResult>; }