SHOWING: First 60
#70,421,922texttransfer340,000.rsic#70,297,907brc-20transfer1.$π.#67,036,210brc-20transfer2.涨!#64,254,392brc-20msgid ""
"…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세기 중국으로 갔었"
"다면, 그 동전에 각인(chop-mark)을 찍을 수 있는 사람은 당신밖에 없었을 것이다."
#: /workspaces/ord_ko/docs/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 ""
"...당신에 의해서만 처분될 수 있다. 당신이 원하는 누구에게나 판매, 거래 또는 "
"선물 할 수 있다."
#: /workspaces/ord_ko/docs/src/digital-artifacts.md:18
msgid ""
"What are digital artifacts? Simply put, they are the digital equivalent of "
"physical artifacts."
msgstr ""
"디지털 아티팩트(인공물)란 무엇인가? 간단히 말해, 이는 물리적 인공물의 디지털 "
"버전이다."
#: /workspaces/ord_ko/docs/src/digital-artifacts.md:21
msgid ""
"For a digital thing to be a digital artifact, it must be like that coin of "
"yours:"
msgstr ""
"디지털 한 것이 디지털 아티팩트가 되려면 당신의 그 동전과 같은 것이어야 한다:"
#: /workspaces/ord_ko/docs/src/digital-artifacts.md:24
msgid ""
"Digital artifacts can have owners. A number is not a digital artifact, "
#44,996,533text"Multiple data pushes must be used for large inscriptions, as one of "
"taproot's few restrictions is that individual data pushes may not be larger "
"than 520 bytes."
msgstr ""
"`OP_PUSH 1`은 다음 푸시에 콘텐츠 유형이 포함되어 있음을 나타내고, `OP_PUSH 0`"
"은 후속 데이터 푸시에 콘텐츠 자체가 포함되어 있음을 나타낸다. 탭루트의 몇 가"
"지 제한 사항 중 하나는 개별 데이터 푸시가 520바이트를 초과할 수 없다는 것이므"
"로, 큰 인스크립션에는 여러 개의 데이터 푸시를 사용해야 한다."
#: /workspaces/ord_ko/docs/src/inscriptions.md:62
msgid ""
"The inscription content is contained within the input of a reveal "
"transaction, and the inscription is made on the first sat of its input. This "
"sat can then be tracked using the familiar rules of ordinal theory, allowing "
"it to be transferred, bought, sold, lost to fees, and recovered."
msgstr ""
"인스크립션 콘텐츠는 리빌 트랜잭션의 입력에 포함되며, 인스크립션은 입력의 첫 "
"번째 SAT에 만들어진다. 이 SAT는 익숙한 오디널 이론의 규칙을 사용하여 추적할 "
"수 있으며, 이를 통해 전송, 구매, 판매, 수수료에 분실, 그리고 복구가 가능하다."
#: /workspaces/ord_ko/docs/src/inscriptions.md:67
msgid "Content"
msgstr "콘텐츠"
#: /workspaces/ord_ko/docs/src/inscriptions.md:70
msgid ""
"The data model of inscriptions is that of a HTTP response, allowing "
#44,996,114text .index
.get_children_by_inscription_id(parent_inscription_id)
.unwrap(),
vec![child_inscription_id]
);
}
}
#[test]
fn inscriptions_in_same_input_with_pointers_to_same_output() {
for context in Context::configurations() {
context.mine_blocks(1);
let builder = script::Builder::new();
let builder = Inscription {
pointer: Some(100u64.to_le_bytes().to_vec()),
..Default::default()
}
.append_reveal_script_to_builder(builder);
let builder = Inscription {
pointer: Some(300_000u64.to_le_bytes().to_vec()),
..Default::default()
}
.append_reveal_script_to_builder(builder);
let builder = Inscription {
pointer: Some(1_000_000u64.to_le_bytes().to_vec()),
..Default::default()
}
.append_reveal_script_to_builder(builder);
let witness = Witness::from_slice(&[builder.into_bytes(), Vec::new()]);
let txid = context.rpc_server.broadcast_tx(TransactionTemplate {#44,990,158text vec![ParsedEnvelope {
payload: inscription("text/plain;charset=utf-8", ""),
..Default::default()
}]
);
}
#[test]
fn valid_body_in_multiple_empty_pushes() {
assert_eq!(
parse(&[envelope(&[
b"ord",
&[1],
b"text/plain;charset=utf-8",
&[],
&[],
&[],
&[],
&[],
&[],
])]),
vec![ParsedEnvelope {
payload: inscription("text/plain;charset=utf-8", ""),
..Default::default()
}],
);
}
#[test]
fn valid_ignore_trailing() {
let script = script::Builder::new()
.push_opcode(opcodes::OP_FALSE)
.push_opcode(opcodes::all::OP_IF)
.push_slice(b"ord")
.push_slice([1])
.push_slice(b"text/plain;charset=utf-8")
.push_slice([])
.push_slice(b"ord")
.push_opcode(opcodes::all::OP_ENDIF)
.push_opcode(opcodes::all::OP_CHECKSIG)
.into_script();
assert_eq!(
parse(&[Witness::from_slice(&[script.into_bytes(), Vec::new()])]),
#44,989,173text"Multiple data pushes must be used for large inscriptions, as one of "
"taproot's few restrictions is that individual data pushes may not be larger "
"than 520 bytes."
msgstr ""
"`OP_PUSH 1`은 다음 푸시에 콘텐츠 유형이 포함되어 있음을 나타내고, `OP_PUSH 0`"
"은 후속 데이터 푸시에 콘텐츠 자체가 포함되어 있음을 나타낸다. 탭루트의 몇 가"
"지 제한 사항 중 하나는 개별 데이터 푸시가 520바이트를 초과할 수 없다는 것이므"
"로, 큰 인스크립션에는 여러 개의 데이터 푸시를 사용해야 한다."
#: /workspaces/ord_ko/docs/src/inscriptions.md:62
msgid ""
"The inscription content is contained within the input of a reveal "
"transaction, and the inscription is made on the first sat of its input. This "
"sat can then be tracked using the familiar rules of ordinal theory, allowing "
"it to be transferred, bought, sold, lost to fees, and recovered."
msgstr ""
"인스크립션 콘텐츠는 리빌 트랜잭션의 입력에 포함되며, 인스크립션은 입력의 첫 "
"번째 SAT에 만들어진다. 이 SAT는 익숙한 오디널 이론의 규칙을 사용하여 추적할 "
"수 있으며, 이를 통해 전송, 구매, 판매, 수수료에 분실, 그리고 복구가 가능하다."
#: /workspaces/ord_ko/docs/src/inscriptions.md:67
msgid "Content"
msgstr "콘텐츠"
#: /workspaces/ord_ko/docs/src/inscriptions.md:70
msgid ""
"The data model of inscriptions is that of a HTTP response, allowing "
#44,988,971textinscriber.btc#29,492,128textinscribor.btc#29,492,126textohareyoufat.btc#28,334,667textzkshark.btc#10,055,807textmint1,000.0001#4,123,239brc-20mint1,000.0001#4,123,236brc-20mint1,000.0001#4,123,233brc-20mint1,000.0001#4,123,230brc-20mint1,000.0001#4,123,211brc-20mint1,000.0001#4,123,209brc-20mint1,000.0001#4,123,196brc-20mint1,000.0001#4,123,193brc-20mint1,000.0001#4,123,176brc-20mint1,000.0001#4,123,173brc-20mint1,000.0001#4,123,171brc-20mint1,000.0001#4,123,162brc-20mint1,000.0001#4,123,151brc-20mint1,000.0001#4,123,133brc-20mint1,000.0001#4,123,125brc-20mint1,000.0001#4,123,120brc-20mint1,000.0001#4,123,099brc-20mint1,000.0001#4,123,088brc-20mint1,000.0001#4,123,078brc-20mint1,000.0001#4,123,077brc-20mint1,000.0001#4,123,072brc-20mint1,000.0001#4,123,047brc-20mint1,000.0001#4,123,033brc-20