Interface IPaymentOutput

Defines a single payment output.

interface IPaymentOutput {
    address: string | Address;
    amount: bigint;
}

Properties

Properties

address: string | Address

Destination address. The address prefix must match the network you are transacting on (e.g. kaspa: for mainnet, kaspatest: for testnet, etc).

amount: bigint

Output amount in SOMPI.

Generated using TypeDoc