SHOWING: First 60
goodboys.btc#75,578,651text#74,397,414text#74,397,413text#74,397,412text#74,397,411text#74,397,410text#74,397,409text#74,397,408text#74,397,407text#74,397,406text#74,397,405texttransfer100.pizza#71,199,499brc-20#66,976,795textbabylon88.uniworlds#65,022,965textDear Luke Dashjr, here’s why I want to join the @TaprootWizards:
Dear Luke! I wish you happiness
@AxcdNFT
P.S. Please stop eating cats#46,585,935textuse {super::*, ord::subcommand::wallet::outputs::Output};
#[test]
fn outputs() {
let rpc_server = test_bitcoincore_rpc::spawn();
create_wallet(&rpc_server);
let coinbase_tx = &rpc_server.mine_blocks_with_subsidy(1, 1_000_000)[0].txdata[0];
let outpoint = OutPoint::new(coinbase_tx.txid(), 0);
let amount = coinbase_tx.output[0].value;
let output = CommandBuilder::new("wallet outputs")
.rpc_server(&rpc_server)
.run_and_deserialize_output::<Vec<Output>>();
assert_eq!(output[0].output, outpoint);
assert_eq!(output[0].amount, amount);
}
#[test]
fn outputs_includes_locked_outputs() {
let rpc_server = test_bitcoincore_rpc::spawn();
create_wallet(&rpc_server);
let coinbase_tx = &rpc_server.mine_blocks_with_subsidy(1, 1_000_000)[0].txdata[0];
let outpoint = OutPoint::new(coinbase_tx.txid(), 0);
let amount = coinbase_tx.output[0].value;
rpc_server.lock(outpoint);
let output = CommandBuilder::new("wallet outputs")
.rpc_server(&rpc_server)
.run_and_deserialize_output::<Vec<Output>>();#45,021,941textuse {super::*, ord::subcommand::parse::Output, ord::Object};
#[test]
fn name() {
assert_eq!(
CommandBuilder::new("parse a").run_and_deserialize_output::<Output>(),
Output {
object: Object::Integer(2099999997689999),
}
);
}
#[test]
fn hash() {
assert_eq!(
CommandBuilder::new("parse 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef")
.run_and_deserialize_output::<Output>(),
Output {
object: "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
.parse::<Object>()
.unwrap(),
}
);
}
#[test]
fn unrecognized_object() {
CommandBuilder::new("parse A")
.stderr_regex(r"error: .*: unrecognized object\n.*")
.expected_exit_code(2)
.run_and_extract_stdout();
}
#45,021,819text assert_eq!(
CommandBuilder::new("decode transaction.bin")
.write("transaction.bin", transaction())
.run_and_deserialize_output::<Output>(),
Output {
inscriptions: vec![Inscription {
body: Some(vec![0, 1, 2, 3]),
content_type: Some(b"text/plain;charset=utf-8".to_vec()),
..Default::default()
}],
}
);
}
#[test]
fn from_stdin() {
assert_eq!(
CommandBuilder::new("decode")
.stdin(transaction())
.run_and_deserialize_output::<Output>(),
Output {
inscriptions: vec![Inscription {
body: Some(vec![0, 1, 2, 3]),
content_type: Some(b"text/plain;charset=utf-8".to_vec()),
..Default::default()
}],
}
);
}
#44,988,599text"grasping hands. It…"
msgstr ""
"実体のある人工物を想像してください。例えば、珍しいコインの場合、バイキングの"
"宝庫の闇の中で何年も秘密に保管されています今、あなたの手で地下から掘り出され"
"ました。それ…"
#: src/digital-artifacts.md:8
msgid ""
"…has an owner. You. As long as you keep it safe, nobody can take it from you."
msgstr ""
"……一人の主人がいます。それはあなたです。あなたが大切に保管していれば、誰もあ"
"なたからそれを奪うことはできません。"
#: src/digital-artifacts.md:10
msgid "…is complete. It has no missing parts."
msgstr "…完全です。漏れている部分はありません。"
#: src/digital-artifacts.md:12
msgid ""
"…can only be changed by you. If you were a trader, and you made your way to "
"18th century China, none but you could stamp it with your chop-mark."
msgstr ""
"…あなたしか変えることができません。もしあなたがビジネスマンで、あなたが来たな"
"らの18世紀の中国では、あなた以外に印鑑を押す人はいません。"
#: src/digital-artifacts.md:15
msgid ""
"…can only be disposed of by you. The sale, trade, or gift is yours to make, "
"to whomever you wish."
msgstr ""
"……あなたしか処分するすることができません。販売、取引、または贈り物はあなたの"
"決定であり、誰にあげたいかは誰にでもあげます。 "
#: src/digital-artifacts.md:18
msgid ""
"What are digital artifacts? Simply put, they are the digital equivalent of "
#44,987,393textmsgid ""
"This guide does not cover installing Bitcoin Core in detail. Once Bitcoin "
"Core is installed, you should be able to run `bitcoind -version` "
"successfully from the command line. Do _NOT_ use `bitcoin-qt`."
msgstr ""
"이 가이드에서는 Bitcoin Core 설치에 대해 자세히 다루지 않는다. Bitcoin Core"
"가 설치되면 명령줄에서 `bitcoind -version`을 성공적으로 실행할 수 있어야 한"
"다. `bitcoin-qt`는 사용하지 말라."
#: /workspaces/ord_ko/docs/src/guides/inscriptions.md:51
msgid "Configuring Bitcoin Core"
msgstr "Bitcoin Core 설정하기"
#: /workspaces/ord_ko/docs/src/guides/inscriptions.md:54
msgid "`ord` requires Bitcoin Core's transaction index and rest interface."
msgstr "`ord`는 Bitcoin Core의 트랜잭션 인덱스와 rest 인터페이스가 필요하다."
#: /workspaces/ord_ko/docs/src/guides/inscriptions.md:56
msgid ""
"To configure your Bitcoin Core node to maintain a transaction index, add the "
"following to your `bitcoin.conf`:"
msgstr ""
"트랜잭션 인덱스를 유지하도록 Bitcoin Core 노드를 설정하려면, `bitcoin.conf`"
"에 다음을 추가한다:"
#: /workspaces/ord_ko/docs/src/guides/inscriptions.md:63
msgid "Or, run `bitcoind` with `-txindex`:"
#44,987,348text"mediawiki) for the technical details, and the [ord repo](https://github.com/"
"ordinals/ord) for the `ord` wallet and block explorer."
msgstr ""
"关于序数理论的更多信息,请查阅[FAQ](./faq.md) 来获取概述;查阅[BIP](https://"
"github.com/ordinals/ord/blob/master/bip.mediawiki) 来获取技术细节查阅[ord "
"repo](https://github.com/ordinals/ord)来获取`ord`钱包和浏览器的信息."
#: src/bounties.md:14
msgid ""
"Satoshi was the original developer of ordinal theory. However, he knew that "
"others would consider it heretical and dangerous, so he hid his knowledge, "
"and it was lost to the sands of time. This potent theory is only now being "
"rediscovered. You can help by researching rare satoshis."
msgstr ""
"中本聪是序数理论的原始开发者。然而,他知道其他人可能会认为这是异端邪说并且危"
"险,因此他隐藏了自己的知识,使其在时间的沙漠里失传。现在,这个强大的理论被重"
"新发现。您可以通过研究稀有的聪来帮助我们。"
#: src/bounties.md:19
msgid "Good luck and godspeed!"
msgstr "祝您一切顺利,好运!"
#: src/bounty/0.md:1
msgid "Ordinal Bounty 0"
msgstr "赏金任务 0"
#: src/bounty/0.md:4 src/bounty/1.md:4 src/bounty/2.md:4 src/bounty/3.md:4
msgid "Criteria"
msgstr "标准"
#: src/bounty/0.md:7
#44,987,285textmint#43,939,544orc-20mint#43,939,520orc-20mint#43,939,498orc-20mint#43,939,431orc-20mint#43,939,417orc-20mint#43,939,415orc-20mint#43,939,384orc-20mint#43,939,370orc-20mint#43,939,316orc-20mint#43,939,315orc-20mint#43,937,335orc-20mint#43,937,334orc-20mint#43,937,333orc-20mint#43,937,332orc-20mint#43,937,331orc-20mint#43,937,330orc-20mint#43,937,329orc-20mint#43,936,475orc-20mint#43,936,474orc-20mint#43,936,473orc-20mint#43,936,472orc-20mint#43,936,471orc-20mint1,000.mice#43,674,123brc-20mint1,000.mice#43,674,122brc-20