@firefly-exchange/library-sui
Version:
Sui library housing helper methods, classes to interact with Bluefin protocol(s) deployed on Sui
17 lines (16 loc) • 545 B
TypeScript
import { wallet } from "./interfaces";
import { Keypair } from "./types";
export declare const TEST_WALLETS: wallet[];
export interface Account {
signer: Keypair;
keyPair: Keypair;
address: string;
bankAccountId?: string;
}
export interface MakerTakerAccounts {
maker: Account;
taker: Account;
}
export declare function getTestAccounts(create?: boolean): Account[];
export declare function createAccount(): Account;
export declare function processTradingStartTime(tradingStartTime: number | string, env: string): number;