chia-agent
Version:
chia rpc/websocket client library
12 lines (11 loc) • 385 B
TypeScript
import { str } from "../types/_python_types_";
import { G1Element } from "../../chia_rs/chia-bls/lib";
import { bytes32 } from "../../chia_rs/wheel/python/sized_bytes";
export type PoolWalletConfig = {
launcher_id: bytes32;
pool_url: str;
payout_instructions: str;
target_puzzle_hash: bytes32;
p2_singleton_puzzle_hash: bytes32;
owner_public_key: G1Element;
};