chia-agent
Version:
chia rpc/websocket client library
29 lines (28 loc) • 750 B
TypeScript
import { uint32, uint8 } from "../../../chia_rs/wheel/python/sized_ints";
export declare const WalletType: {
readonly STANDARD_WALLET: 0;
readonly ATOMIC_SWAP: 2;
readonly AUTHORIZED_PAYEE: 3;
readonly MULTI_SIG: 4;
readonly CUSTODY: 5;
readonly CAT: 6;
readonly RECOVERABLE: 7;
readonly DECENTRALIZED_ID: 8;
readonly POOLING_WALLET: 9;
readonly NFT: 10;
readonly DATA_LAYER: 11;
readonly DATA_LAYER_OFFER: 12;
readonly VC: 13;
readonly CRCAT: 57;
readonly RCAT: 132;
};
export declare const CoinType: {
readonly NORMAL: 0;
readonly CLAWBACK: 1;
readonly CRCAT_PENDING: 2;
readonly CRCAT: 3;
};
export type StreamableWalletIdentifier = {
id: uint32;
type: uint8;
};