UNPKG

cactus-agent

Version:
24 lines (21 loc) 537 B
import {bytes32} from "../types/blockchain_format/sized_bytes"; import {bool, str, uint32, uint64} from "../types/_python_types_"; import {LineageProof} from "../wallet/lineage_proof"; export type SingletonRecord = { coin_id: bytes32 launcher_id: bytes32 root: bytes32 inner_puzzle_hash: bytes32 confirmed: bool confirmed_at_height: uint32 lineage_proof: LineageProof generation: uint32 timestamp: uint64 }; export type Mirror = { coin_id: str; launcher_id: str; amount: uint64; urls: str[]; ours: bool; };