Type alias ExecuteMsg

ExecuteMsg: {
    update_bitcoin_config: {
        config: BitcoinConfig;
    };
} | {
    update_checkpoint_config: {
        config: CheckpointConfig;
    };
} | {
    update_header_config: {
        config: Binary;
    };
} | {
    add_work_header: {
        header: Binary;
    };
} | {
    relay_deposit: {
        btc_height: number;
        btc_proof: Binary;
        btc_tx: Binary;
        btc_vout: number;
        dest: Dest;
        sigset_index: number;
    };
}

Type declaration

Type declaration

Type declaration

  • update_header_config: {
        config: Binary;
    }

Type declaration

  • add_work_header: {
        header: Binary;
    }

Type declaration

  • relay_deposit: {
        btc_height: number;
        btc_proof: Binary;
        btc_tx: Binary;
        btc_vout: number;
        dest: Dest;
        sigset_index: number;
    }
    • btc_height: number
    • btc_proof: Binary
    • btc_tx: Binary
    • btc_vout: number
    • dest: Dest
    • sigset_index: number

©2020 - 2024 Oraichain Foundation