UNPKG

@minima-global/mds

Version:

Official MDS Typescript Library for Minima. Used for creating minidapps that interact with the Minima Blockchain.

366 lines 7.33 kB
import type { MDSResponse } from '../../types.js'; export type BalanceReturnType<S> = S extends { params: any; } ? S['params'] extends { tokendetails: string; } ? MDSResponse<BalanceWithTokenDetails[]> : MDSResponse<Balance[]> : MDSResponse<Balance[]>; export type Balance = { token: string | { name: string; url: string; description: string; ticker: string; webvalidate: string; }; tokenid: string; confirmed: string; unconfirmed: string; sendable: string; coins: string; total: string; }; export type BalanceWithTokenDetails = Balance & { details: { decimals?: string; script?: string; totalamount?: string; scale?: string; created?: string; }; }; export type Block = { block: string; date: string; hash: string; timemilli: string; }; export type CheckAddress = { '0x': string; Mx: string; original: string; relevant: boolean; simple: boolean; }; export type HashTest = { hashes: string; millitime: string; speed: string; }; export type CoinCheck = { proofblock: number; coin: Coin; valid: boolean; }; export type CoinExportResponse = { coinproof: { coin: Coin; proof: { blocktime: string; proof: Proof[]; prooflenght: string; }; }; data: string; }; export type CoinImport = {}; export type Trace = { enabled: boolean; filter: string; shownetwork: boolean; }; export type Coin = { coinid: string; amount: string; address: string; miniaddress: string; tokenid: string; token: Token | null; storestate: boolean; state: StateArray[] | StateObject; spent: boolean; mmrentry: string; created: string; age: string; tokenamount: string; }; export type StateArray = { port: number; type: number; data: string; }; export type StateObject = { [key: `${number}`]: string; }; export type SimpleCoinResponse = MDSResponse<string>; export type TokenCreate = { inputs: Coin[]; outputs: Coin[]; state: any[]; linkhash: string; transactionid: string; }; export type GetAddress = { script: string; address: string; miniaddress: string; simple: boolean; default: boolean; publickey: string; track: boolean; }; export type PrintMmrResponse = { block: string; entrynumber: number; size: number; entries: { row: number; entry: string; data: { data: string; value: string; }; }[]; root: { data: string; value: string; }; }; export type PrintTree = { chain: string; }; export type NewAddress = { script: string; address: string; miniaddress: string; simple: boolean; default: boolean; publickey: string; track: boolean; }; export type TokenValidate = { signature: { signed: boolean; }; web: { webvalidate: boolean; url: string; valid: boolean; reason: string; }; }; export type SeedRandom = { modifier: string; seedrandom: string; }; export type Quit = { command: string; pending: boolean; status: boolean; message: string; }; export type Colnsolidate = MDSResponse<{ txpowid: string; isblock: boolean; istransaction: boolean; superblock: number; size: number; burn: number; header: Header; hasbody: boolean; body: Body; }>; type Header = { chainid: string; block: string; blockdiff: string; cascadelevels: number; superparents: { difficulty: string; count: number; parent: string; }[]; magic: { currentmaxtxpowsize: string; currentmaxkissvmops: string; currentmaxtxn: string; currentmintxpowwork: string; desiredmaxtxpowsize: string; desiredmaxkissvmops: string; desiredmaxtxn: string; desiredmintxpowwork: string; }; mmr: string; total: string; customhash: string; txnbodyhash: string; nonce: string; timemilli: string; date: string; }; type Body = { prng: string; txndiff: string; txn: { inputs: Inputs[]; outputs: Inputs[]; state: string[]; linkhash: string; transactionid: string; }; witness: { signatures: { signatures: Signiture[]; }[]; mmrproofs: { coin: Coin; }[]; }; burntxn: null; burnwitness: null; txnlist: null; }; type Signiture = { publicKey: string; rootkey: string; proof: { blocktime: string; proof: Proof[]; prooflenght: string; }; signature: string; }; type Proof = { left: boolean; data: { data: string; value: string; }; }; type Inputs = { coinid: string; amount: string; address: string; miniaddress: string; tokenid: string; token: Token | null; storestate: boolean; state: string[]; spent: boolean; mmrentry: string; created: string; }; export type Token = { name: string | { name: string; url: string; description: string; ticker: string; webvalidate: string; }; coinid: string; total: string; decimals: number; script: string; totalamount: string; scale: string; created: string; tokenid: string; }; export type Status = { version: string; uptime: string; locked: boolean; length: number; weight: string; minima: string; coins: string; data: string; memory: Memory; chain: Chain; txpow: StatusTxPow; network: Network; }; type Memory = { ram: string; disk: string; files: Files; }; type Files = { txpowdb: string; archivedb: string; cascade: string; chaintree: string; wallet: string; userdb: string; p2pdb: string; }; type Chain = { block: string; time: string; hash: string; speed: string; difficulty: string; size: number; length: number; branches: number; weight: string; cascade: Cascade; }; type Cascade = { start: string; length: number; weight: string; }; type StatusTxPow = { mempool: number; ramdb: number; txpowdb: number; archivedb: number; }; type Network = { host: string; hostset: string; port: number; connecting: number; connected: number; rpc: Rpc; p2p: string; traffic: Traffic; }; type Rpc = { enabled: boolean; port: number; }; type Traffic = { from: string; totalread: string; totalwrite: string; read: string; write: string; }; export type HistoryResponse = { txpows: HistoryTxpow[]; details: Details; size: number; }; type HistoryTxpow = { txpowid: string; isblock: boolean; istransaction: boolean; superblock: number; size: number; burn: number; header: Header; hasbody: boolean; body: Body; }; type Details = { inputs: Record<string, any>; outputs: Record<string, any>; difference: Record<string, any>; }; export type Convert = { conversion: string; }; export {}; //# sourceMappingURL=response.d.ts.map