SHOWING: First 60
#69,457,456textDear Luke Dashjr, here’s why I want to join the @TaprootWizards:
"Never gonna give you up"
Thanks for storing our wizard JPEGs on your node forever! 🧙♂️
@bitprince_
P.S. Please stop eating cats#46,609,099textDear Luke Dashjr, here’s why I want to join the @TaprootWizards:
"Never gonna say goodbye"
Thanks for storing our wizard JPEGs on your node forever! 🧙♂️
@bitprince_
P.S. Please stop eating cats#46,609,098textDear Luke Dashjr, here’s why I want to join the @TaprootWizards:
"Never gonna let you down"
Thanks for storing our wizard JPEGs on your node forever! 🧙♂️
@bitprince_
P.S. Please stop eating cats#46,609,097textDear Luke Dashjr, here’s why I want to join the @TaprootWizards:
"Never gonna tell a lie and hurt you"
Thanks for storing our wizard JPEGs on your node forever! 🧙♂️
@bitprince_
P.S. Please stop eating cats#46,609,096textDear Luke Dashjr, here’s why I want to join the @TaprootWizards:
"Never gonna make you cry"
Thanks for storing our wizard JPEGs on your node forever! 🧙♂️
@bitprince_
P.S. Please stop eating cats#46,609,095textDear Luke Dashjr, here’s why I want to join the @TaprootWizards:
"Never gonna run around and desert you"
Thanks for storing our wizard JPEGs on your node forever! 🧙♂️
@bitprince_
P.S. Please stop eating cats#46,609,094textbitprince.ord#45,923,847dre.ord#45,923,756regbitprince.gm#45,923,626snsregdre.gm#45,923,625snstransfer50..com#45,213,843brc-20
rpc_server.mine_blocks(1);
assert_eq!(rpc_server.descriptors().len(), 3);
let parent_id = parent_output.inscriptions[0].id;
let output = CommandBuilder::new("wallet inscribe --fee-rate 1 --batch batch.yaml")
.write("inscription.txt", "Hello World")
.write("tulip.png", [0; 555])
.write("meow.wav", [0; 2048])
.write(
"batch.yaml",
format!("parent: {parent_id}\nmode: separate-outputs\npostage: 777\ninscriptions:\n- file: inscription.txt\n- file: tulip.png\n- file: meow.wav\n")
)
.rpc_server(&rpc_server)
.run_and_deserialize_output::<Inscribe>();
for inscription in &output.inscriptions {
assert_eq!(inscription.location.offset, 0);
}
let mut outpoints = output
.inscriptions
.iter()
.map(|inscription| inscription.location.outpoint)
.collect::<Vec<OutPoint>>();
outpoints.sort();
outpoints.dedup();
assert_eq!(outpoints.len(), output.inscriptions.len());
rpc_server.mine_blocks(1);
let ord_server = TestServer::spawn_with_args(&rpc_server, &[]);#44,993,960text