We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deploy a Move contract to a Bitcoin address on Rooch and make it programmable with BTC.
OP_RETURN rooch $version action args
module my_addr::btc_hook{ fun on_receive_btc(utxo: &mut Object<UTXO>, action: String, args: vector<u8>){ } fun on_tx_conform(txid: address){ } }
module bitcoin_move::transaction_queue{ #[private_generics(W)] public fun submit_tx(_witness: W, psbt: PSBT); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Deploy a Move contract to a Bitcoin address on Rooch and make it programmable with BTC.
BTC hook contract
BTC transaction queue
The text was updated successfully, but these errors were encountered: