Skip to content

Commit

Permalink
deploy: 3687138
Browse files Browse the repository at this point in the history
  • Loading branch information
raphjaph committed Mar 5, 2024
1 parent 38a5970 commit 0b50bd0
Show file tree
Hide file tree
Showing 52 changed files with 464 additions and 370 deletions.
29 changes: 16 additions & 13 deletions ar/guides/testing.html
Original file line number Diff line number Diff line change
Expand Up @@ -273,42 +273,45 @@ <h2 id="test-networks"><a class="header" href="#test-networks">Test Networks</a>
</div>
<p>رغ تيست (Regtest) لا يتطلب تنزيل سلسلة الكتل/البلوكشين أو فهرسه الأورد.</p>
<h2 id="مثال"><a class="header" href="#مثال">مثال</a></h2>
<p>تشغيل <code>bitcoind</code> في وضع الاختبار المحلي باستخدام الأمر:</p>
<p>Run <code>bitcoind</code> in regtest with:</p>
<pre><code>bitcoind -regtest -txindex
</code></pre>
<p>Run <code>ord server</code> in regtest with:</p>
<pre><code>ord --regtest server
</code></pre>
<p>أنشئ محفظة جديدة باستخدام الأمر:</p>
<pre><code>ord -r wallet create
<pre><code>ord --regtest wallet create
</code></pre>
<p>أنشئ عوان للاستقبال باستخدام الأمر:</p>
<pre><code>ord -r wallet receive
<pre><code>ord --regtest wallet receive
</code></pre>
<p>إبدا بتعدين البلوكس باستخدام الأمر:</p>
<pre><code>bitcoin-cli -regtest generatetoaddress 101 &lt;receive address&gt;
</code></pre>
<p>إنسكرايب بوسطه الريغيست باستخدام الأمر:</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file &lt;file&gt;
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file &lt;file&gt;
</code></pre>
<p>عدن الإنسكريبشين باستخدام الأمر:</p>
<pre><code>bitcoin-cli -regtest generatetoaddress 1 &lt;receive address&gt;
</code></pre>
<p>أعرض الإنسكريبشين باستخدام الأمر:</p>
<pre><code>ord -r server
</code></pre>
<p>By default, browsers don't support compression over HTTP. To test compressed content over HTTP, use the <code>--decompress</code> flag:</p>
<pre><code>ord -r server --decompress
<pre><code>ord --regtest server --decompress
</code></pre>
<h2 id="اختبار-التكرار"><a class="header" href="#اختبار-التكرار">اختبار التكرار</a></h2>
<p>When testing out <a href="../inscriptions/recursion.html">recursion</a>, inscribe the dependencies first (example with <a href="https://p5js.org">p5.js</a>):</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file p5.js
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file p5.js
</code></pre>
<p>سيعيد هذا <code>inscription_id</code> الذي يمكنك بعد ذلك الرجوع إليه في الإنسكريبشين لتكراري.</p>
<p>تنبيه: سيكون هذه الهويات مختلفة عندما تكون الإنسكريبشين على شبكة mainnet أو signet ، لذا تأكد من تغييرها في تسجيلك التكراري لكل سلسلة.</p>
<p>This will return the inscription ID of the dependency which you can then reference in your inscription.</p>
<p>However, inscription IDs differ between mainnet and test chains, so you must change the inscription IDs in your inscription to the mainnet inscription IDs of your dependencies before making the final inscription on mainnet.</p>
<p>ثم يمكنك تسجيل السجل التكراري الخاص بك باستخدام الأمر:</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file recursive-inscription.html
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file recursive-inscription.html
</code></pre>
<p>أخيرًا، ستحتاج إلى تعدين بعض الكتل وبدء الخادم باستخدام الأمر:</p>
<pre><code>bitcoin-cli generatetoaddress 6 &lt;receive address&gt;
ord -r server
</code></pre>
<h3 id="mainnet-dependencies"><a class="header" href="#mainnet-dependencies">Mainnet Dependencies</a></h3>
<p>To avoid having to change dependency inscription IDs to mainnet inscription IDs, you may utilize a content proxy when testing. <code>ord server</code> accepts a <code>--content-proxy</code> option, which takes the URL of a another <code>ord server</code> instance. When making a request to <code>/content/&lt;INSCRIPTION_ID&gt;</code> when a content proxy is set and the inscription is not found, <code>ord server</code> will forward the request to the content proxy. This allows you to run a test <code>ord server</code> instance with a mainnet content proxy. You can then use mainnet inscription IDs in your test inscription, which will then return the content of the mainnet inscriptions.</p>
<pre><code>ord --regtest server --content-proxy https://ordinals.com
</code></pre>

</main>
Expand Down
29 changes: 16 additions & 13 deletions ar/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1587,42 +1587,45 @@ <h2 id="test-networks"><a class="header" href="#test-networks">Test Networks</a>
</div>
<p>رغ تيست (Regtest) لا يتطلب تنزيل سلسلة الكتل/البلوكشين أو فهرسه الأورد.</p>
<h2 id="مثال-4"><a class="header" href="#مثال-4">مثال</a></h2>
<p>تشغيل <code>bitcoind</code> في وضع الاختبار المحلي باستخدام الأمر:</p>
<p>Run <code>bitcoind</code> in regtest with:</p>
<pre><code>bitcoind -regtest -txindex
</code></pre>
<p>Run <code>ord server</code> in regtest with:</p>
<pre><code>ord --regtest server
</code></pre>
<p>أنشئ محفظة جديدة باستخدام الأمر:</p>
<pre><code>ord -r wallet create
<pre><code>ord --regtest wallet create
</code></pre>
<p>أنشئ عوان للاستقبال باستخدام الأمر:</p>
<pre><code>ord -r wallet receive
<pre><code>ord --regtest wallet receive
</code></pre>
<p>إبدا بتعدين البلوكس باستخدام الأمر:</p>
<pre><code>bitcoin-cli -regtest generatetoaddress 101 &lt;receive address&gt;
</code></pre>
<p>إنسكرايب بوسطه الريغيست باستخدام الأمر:</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file &lt;file&gt;
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file &lt;file&gt;
</code></pre>
<p>عدن الإنسكريبشين باستخدام الأمر:</p>
<pre><code>bitcoin-cli -regtest generatetoaddress 1 &lt;receive address&gt;
</code></pre>
<p>أعرض الإنسكريبشين باستخدام الأمر:</p>
<pre><code>ord -r server
</code></pre>
<p>By default, browsers don't support compression over HTTP. To test compressed content over HTTP, use the <code>--decompress</code> flag:</p>
<pre><code>ord -r server --decompress
<pre><code>ord --regtest server --decompress
</code></pre>
<h2 id="اختبار-التكرار"><a class="header" href="#اختبار-التكرار">اختبار التكرار</a></h2>
<p>When testing out <a href="guides/../inscriptions/recursion.html">recursion</a>, inscribe the dependencies first (example with <a href="https://p5js.org">p5.js</a>):</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file p5.js
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file p5.js
</code></pre>
<p>سيعيد هذا <code>inscription_id</code> الذي يمكنك بعد ذلك الرجوع إليه في الإنسكريبشين لتكراري.</p>
<p>تنبيه: سيكون هذه الهويات مختلفة عندما تكون الإنسكريبشين على شبكة mainnet أو signet ، لذا تأكد من تغييرها في تسجيلك التكراري لكل سلسلة.</p>
<p>This will return the inscription ID of the dependency which you can then reference in your inscription.</p>
<p>However, inscription IDs differ between mainnet and test chains, so you must change the inscription IDs in your inscription to the mainnet inscription IDs of your dependencies before making the final inscription on mainnet.</p>
<p>ثم يمكنك تسجيل السجل التكراري الخاص بك باستخدام الأمر:</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file recursive-inscription.html
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file recursive-inscription.html
</code></pre>
<p>أخيرًا، ستحتاج إلى تعدين بعض الكتل وبدء الخادم باستخدام الأمر:</p>
<pre><code>bitcoin-cli generatetoaddress 6 &lt;receive address&gt;
ord -r server
</code></pre>
<h3 id="mainnet-dependencies"><a class="header" href="#mainnet-dependencies">Mainnet Dependencies</a></h3>
<p>To avoid having to change dependency inscription IDs to mainnet inscription IDs, you may utilize a content proxy when testing. <code>ord server</code> accepts a <code>--content-proxy</code> option, which takes the URL of a another <code>ord server</code> instance. When making a request to <code>/content/&lt;INSCRIPTION_ID&gt;</code> when a content proxy is set and the inscription is not found, <code>ord server</code> will forward the request to the content proxy. This allows you to run a test <code>ord server</code> instance with a mainnet content proxy. You can then use mainnet inscription IDs in your test inscription, which will then return the content of the mainnet inscriptions.</p>
<pre><code>ord --regtest server --content-proxy https://ordinals.com
</code></pre>
<div style="break-before: page; page-break-before: always;"></div><h1 id="نصائح-لصيد-جوائز-أوردينال"><a class="header" href="#نصائح-لصيد-جوائز-أوردينال">نصائح لصيد جوائز أوردينال</a></h1>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion ar/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ar/searchindex.json

Large diffs are not rendered by default.

29 changes: 16 additions & 13 deletions de/guides/testing.html
Original file line number Diff line number Diff line change
Expand Up @@ -273,42 +273,45 @@ <h2 id="test-networks"><a class="header" href="#test-networks">Test Networks</a>
</div>
<p>Für den Regtest ist kein Herunterladen der Blockchain oder Indexierungs das ord erforderlich.</p>
<h2 id="beispiel"><a class="header" href="#beispiel">Beispiel</a></h2>
<p>Führen Sie Bitcoind im Regtest aus mit:</p>
<p>Run <code>bitcoind</code> in regtest with:</p>
<pre><code>bitcoind -regtest -txindex
</code></pre>
<p>Run <code>ord server</code> in regtest with:</p>
<pre><code>ord --regtest server
</code></pre>
<p>Erstellen Sie im Regtest ein Wallet mit:</p>
<pre><code>ord -r wallet create
<pre><code>ord --regtest wallet create
</code></pre>
<p>Erhalten Sie eine Regtest-Empfangsadresse mit:</p>
<pre><code>ord -r wallet receive
<pre><code>ord --regtest wallet receive
</code></pre>
<p>Minen Sie 101 Blöcke (um die coinbase freizuschalten) mit:</p>
<pre><code>bitcoin-cli -regtest generatetoaddress 101 &lt;receive address&gt;
</code></pre>
<p>Inscribe im Regtest mit:</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file &lt;file&gt;
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file &lt;file&gt;
</code></pre>
<p>Mine die inscription mit:</p>
<pre><code>bitcoin-cli -regtest generatetoaddress 1 &lt;receive address&gt;
</code></pre>
<p>Sehen Sie sich die inscription im Regtest-Explorer an:</p>
<pre><code>ord -r server
</code></pre>
<p>By default, browsers don't support compression over HTTP. To test compressed content over HTTP, use the <code>--decompress</code> flag:</p>
<pre><code>ord -r server --decompress
<pre><code>ord --regtest server --decompress
</code></pre>
<h2 id="testen-der-rekursion"><a class="header" href="#testen-der-rekursion">Testen der Rekursion</a></h2>
<p>When testing out <a href="../inscriptions/recursion.html">recursion</a>, inscribe the dependencies first (example with <a href="https://p5js.org">p5.js</a>):</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file p5.js
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file p5.js
</code></pre>
<p>Dies sollte eine <code>inscription_id</code> zurückgeben, auf die Sie dann in Ihrer rekursiven inscription verweisen können.</p>
<p>ACHTUNG: Diese IDs werden unterschiedlich sein, wenn Sie auf Mainnet oder Signet inskribieren. Stellen Sie sicher, dass Sie sie für jede Kette in Ihrer rekursiven inscription ändern.</p>
<p>This will return the inscription ID of the dependency which you can then reference in your inscription.</p>
<p>However, inscription IDs differ between mainnet and test chains, so you must change the inscription IDs in your inscription to the mainnet inscription IDs of your dependencies before making the final inscription on mainnet.</p>
<p>Dann können Sie Ihre rekursive inscribe einschreiben mit:</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file recursive-inscription.html
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file recursive-inscription.html
</code></pre>
<p>Schließlich müssen Sie einige Blöcke minen und den Server starten:</p>
<pre><code>bitcoin-cli generatetoaddress 6 &lt;receive address&gt;
ord -r server
</code></pre>
<h3 id="mainnet-dependencies"><a class="header" href="#mainnet-dependencies">Mainnet Dependencies</a></h3>
<p>To avoid having to change dependency inscription IDs to mainnet inscription IDs, you may utilize a content proxy when testing. <code>ord server</code> accepts a <code>--content-proxy</code> option, which takes the URL of a another <code>ord server</code> instance. When making a request to <code>/content/&lt;INSCRIPTION_ID&gt;</code> when a content proxy is set and the inscription is not found, <code>ord server</code> will forward the request to the content proxy. This allows you to run a test <code>ord server</code> instance with a mainnet content proxy. You can then use mainnet inscription IDs in your test inscription, which will then return the content of the mainnet inscriptions.</p>
<pre><code>ord --regtest server --content-proxy https://ordinals.com
</code></pre>

</main>
Expand Down
29 changes: 16 additions & 13 deletions de/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1587,42 +1587,45 @@ <h2 id="test-networks"><a class="header" href="#test-networks">Test Networks</a>
</div>
<p>Für den Regtest ist kein Herunterladen der Blockchain oder Indexierungs das ord erforderlich.</p>
<h2 id="beispiel-4"><a class="header" href="#beispiel-4">Beispiel</a></h2>
<p>Führen Sie Bitcoind im Regtest aus mit:</p>
<p>Run <code>bitcoind</code> in regtest with:</p>
<pre><code>bitcoind -regtest -txindex
</code></pre>
<p>Run <code>ord server</code> in regtest with:</p>
<pre><code>ord --regtest server
</code></pre>
<p>Erstellen Sie im Regtest ein Wallet mit:</p>
<pre><code>ord -r wallet create
<pre><code>ord --regtest wallet create
</code></pre>
<p>Erhalten Sie eine Regtest-Empfangsadresse mit:</p>
<pre><code>ord -r wallet receive
<pre><code>ord --regtest wallet receive
</code></pre>
<p>Minen Sie 101 Blöcke (um die coinbase freizuschalten) mit:</p>
<pre><code>bitcoin-cli -regtest generatetoaddress 101 &lt;receive address&gt;
</code></pre>
<p>Inscribe im Regtest mit:</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file &lt;file&gt;
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file &lt;file&gt;
</code></pre>
<p>Mine die inscription mit:</p>
<pre><code>bitcoin-cli -regtest generatetoaddress 1 &lt;receive address&gt;
</code></pre>
<p>Sehen Sie sich die inscription im Regtest-Explorer an:</p>
<pre><code>ord -r server
</code></pre>
<p>By default, browsers don't support compression over HTTP. To test compressed content over HTTP, use the <code>--decompress</code> flag:</p>
<pre><code>ord -r server --decompress
<pre><code>ord --regtest server --decompress
</code></pre>
<h2 id="testen-der-rekursion"><a class="header" href="#testen-der-rekursion">Testen der Rekursion</a></h2>
<p>When testing out <a href="guides/../inscriptions/recursion.html">recursion</a>, inscribe the dependencies first (example with <a href="https://p5js.org">p5.js</a>):</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file p5.js
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file p5.js
</code></pre>
<p>Dies sollte eine <code>inscription_id</code> zurückgeben, auf die Sie dann in Ihrer rekursiven inscription verweisen können.</p>
<p>ACHTUNG: Diese IDs werden unterschiedlich sein, wenn Sie auf Mainnet oder Signet inskribieren. Stellen Sie sicher, dass Sie sie für jede Kette in Ihrer rekursiven inscription ändern.</p>
<p>This will return the inscription ID of the dependency which you can then reference in your inscription.</p>
<p>However, inscription IDs differ between mainnet and test chains, so you must change the inscription IDs in your inscription to the mainnet inscription IDs of your dependencies before making the final inscription on mainnet.</p>
<p>Dann können Sie Ihre rekursive inscribe einschreiben mit:</p>
<pre><code>ord -r wallet inscribe --fee-rate 1 --file recursive-inscription.html
<pre><code>ord --regtest wallet inscribe --fee-rate 1 --file recursive-inscription.html
</code></pre>
<p>Schließlich müssen Sie einige Blöcke minen und den Server starten:</p>
<pre><code>bitcoin-cli generatetoaddress 6 &lt;receive address&gt;
ord -r server
</code></pre>
<h3 id="mainnet-dependencies"><a class="header" href="#mainnet-dependencies">Mainnet Dependencies</a></h3>
<p>To avoid having to change dependency inscription IDs to mainnet inscription IDs, you may utilize a content proxy when testing. <code>ord server</code> accepts a <code>--content-proxy</code> option, which takes the URL of a another <code>ord server</code> instance. When making a request to <code>/content/&lt;INSCRIPTION_ID&gt;</code> when a content proxy is set and the inscription is not found, <code>ord server</code> will forward the request to the content proxy. This allows you to run a test <code>ord server</code> instance with a mainnet content proxy. You can then use mainnet inscription IDs in your test inscription, which will then return the content of the mainnet inscriptions.</p>
<pre><code>ord --regtest server --content-proxy https://ordinals.com
</code></pre>
<div style="break-before: page; page-break-before: always;"></div><h1 id="hinweise-zur-ordinal-bounty-jagen"><a class="header" href="#hinweise-zur-ordinal-bounty-jagen">Hinweise zur Ordinal Bounty jagen</a></h1>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion de/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion de/searchindex.json

Large diffs are not rendered by default.

Loading

0 comments on commit 0b50bd0

Please sign in to comment.