Variable BtcP2wpkhAccountStructConst

BtcP2wpkhAccountStruct: Struct<{
    address: string;
    id: string;
    methods: "btc_sendmany"[];
    options: Record<string, Json>;
    type: "bip122:p2wpkh";
}, {
    address: Struct<string, null>;
    id: Struct<string, null>;
    methods: Struct<"btc_sendmany"[], Struct<"btc_sendmany", {
        btc_sendmany: "btc_sendmany";
    }>>;
    options: Struct<Record<string, Json>, null>;
    type: Struct<"bip122:p2wpkh", "bip122:p2wpkh">;
}> = ...

Type declaration

  • address: string

    Account address.

  • id: string

    Account ID (UUIDv4).

  • methods: "btc_sendmany"[]

    Account supported methods.

  • options: Record<string, Json>

    Account options.

  • type: "bip122:p2wpkh"

    Account type.

Type declaration

  • address: Struct<string, null>

    Account address.

  • id: Struct<string, null>

    Account ID (UUIDv4).

  • methods: Struct<"btc_sendmany"[], Struct<"btc_sendmany", {
        btc_sendmany: "btc_sendmany";
    }>>

    Account supported methods.

  • options: Struct<Record<string, Json>, null>

    Account options.

  • type: Struct<"bip122:p2wpkh", "bip122:p2wpkh">

    Account type.