Inscription Standard
Check the Bitcoin Inscription Standard used by Via Network Protocol.
Introduction
How Inscriptions work?
Using OP_RETURN
OP_RETURNUsing TapScript
let taproot_script = ScriptBuilder::new()
.push_slice(encoded_pubkey.as_push_bytes())
.push_opcode(all::OP_CHECKSIG)
.push_opcode(OP_FALSE)
.push_opcode(all::OP_IF)
.push_slice(encoded_data)
.push_opcode(all::OP_ENDIF)
.into_script();Via Network Inscription Standard
Last updated