SHOWING: First 60
"reality that on-chain royalties, which were messaged to artists as an "
"advantage of NFTs, are not possible, while platforms race to the bottom and "
"remove royalty support."
msgstr ""
"Ang mga on-chain royalty ng blockchain ay isang magandang ideya sa teorya, "
"ngunit hindi sa parati. Ang pagbabayad ng royalties ay hindi maaaring ipataw "
"sa blockchain nang walang kumplikado at invasive na mga paghihigpit. Ang "
"Ethereum NFT ecosystem ay kasalukuyang nakikipagbuno sa pagkalito sa mga "
"royalty, at sama-samang nauunawaan ang katotohanan na ang on-chain "
"royalties, na ipinadala sa mga artista bilang isang bentahe ng mga NFT, ay "
"hindi posible, habang ang mga platform ay nagpapaunhan ibaba at alisin ang "
"suporta sa royalty."
#: src/faq.md:190
msgid ""
"Inscriptions avoid this situation entirely by making no false promises of "
"supporting royalties on-chain, thus avoiding the confusion, chaos, and "
"negativity of the Ethereum NFT situation."
msgstr ""
"Ganap na iniiwasan ng inscriptions ang sitwasyong ito sa pamamagitan ng "
#44,984,970text "wallet inscribe --satpoint {reveal}:0:0 --file hello.txt --fee-rate 1"
))
.write("hello.txt", "HELLOWORLD")
.rpc_server(&rpc_server)
.expected_exit_code(1)
.expected_stderr(format!("error: sat at {reveal}:0:0 already inscribed\n"))
.run_and_extract_stdout();
}
#[test]
fn refuse_to_inscribe_already_inscribed_utxo() {
let rpc_server = test_bitcoincore_rpc::spawn();
create_wallet(&rpc_server);
let (inscription, reveal) = inscribe(&rpc_server);
let output = OutPoint {
txid: reveal,
vout: 0,
};
CommandBuilder::new(format!(
"wallet inscribe --satpoint {output}:55555 --file hello.txt --fee-rate 1"
))
.write("hello.txt", "HELLOWORLD")
.rpc_server(&rpc_server)
.expected_exit_code(1)
.expected_stderr(format!(
"error: utxo {output} already inscribed with inscription {inscription} on sat {output}:0\n",
))
.run_and_extract_stdout();
}
#[test]
fn inscribe_with_optional_satpoint_arg() {
let rpc_server = test_bitcoincore_rpc::spawn();
create_wallet(&rpc_server);
#44,982,961text