@btc-vision/bsi-common
Version:
Common library for OP_NET.
12 lines (10 loc) • 396 B
text/typescript
import { Decimal128 } from 'mongodb';
import { IBaseDocumentWithId } from '../../../../src/db/documents/interfaces/IBaseDocumentWithId.js';
export interface ITestDocumentWithId extends IBaseDocumentWithId {
readonly account: string;
readonly ticker: string;
readonly amount: Decimal128;
readonly lock: Decimal128;
readonly mint: Decimal128;
readonly stake: Decimal128;
}