@dojima-wallet/connection
Version:
Initialise and connection for layer 1&2 blockchain
24 lines (23 loc) • 462 B
TypeScript
export type GasfeeResult = {
slow: number;
average: number;
fast: number;
};
export type DojTxData = {
transaction_hash: string;
from: string;
to: string;
amount: number;
gasFee: number;
block_number: number;
block_hash: string;
gasPrice: string;
transaction_status: number;
nonce: number;
};
export type DojTransferParams = {
recipient: string;
amount: number;
fee?: number;
memo?: string;
};