forked from XRPLF/xrpl-dev-portal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdactyl-config.yml
5984 lines (5412 loc) · 229 KB
/
dactyl-config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Relative paths work OK as long as you start the tool from its local dir
template_path: tool
# This folder gets copied into the output directory
template_static_path: assets
# Templates should have filenames starting in template-
default_template: template-doc.html
default_pdf_template: template-forpdf.html
# HTML, PDF, GFM all get output here
out_path: out
# MD files should be here (and in subdirs)
content_path: content
# This folder gets copied into the output directory
content_static_path: img
# PDF creation needs a dir for temporary files
temporary_files_path: /tmp/
# Custom filters live here and start with filter_
filter_paths:
- tool
default_filters:
- multicode_tabs
- unicode_header_ids
- buttonize
- callouts
- badges
- link_replacement
- external_links
- status_badges
callout_class: "devportal-callout"
callout_types:
- "tip"
- "ヒント" # equiv. of "Tip" in Japanese (lit. "Hint")
- "note"
- "注記" # equiv of "Note" in Japanese
- "caution"
- "注意" # equiv. of "Caution" in Japanese
- "warning"
- "警告" # equiv. of "Warning" in Japanese
cover_page:
name: Home
html: index.html
template: template-home.html
sidebar: disabled
languages:
- code: en
display_name: English
prefix: "/"
- code: ja
display_name: 日本語
prefix: "/ja/"
targets:
# First member is the default that gets built when target not specified
- name: en
lang: en
display_name: XRP Ledger Dev Portal
# These github_ fields are used by the template's "Edit on GitHub" link.
# Override them with --vars to change which fork/branch to edit.
github_forkurl: https://github.com/ripple/xrpl-dev-portal
github_branch: master
strings:
blog: "Blog"
search: "Search site with Google..."
bc_home: "Home"
tl_banner:
head: "Sorry, this page is not available in your language."
body: "We are making an effort to offer the XRP Ledger Dev Portal in a variety of languages, but not all pages are available in all languages. If you'd like to help, <a href=\"https://github.com/ripple/xrpl-dev-portal/blob/master/CONTRIBUTING.md\">please contribute!</a>"
pagetoc: "In this document"
footer:
ripple:
careers: "Ripple Careers"
github: "Ripple on GitHub"
xrp_resources: "XRP Resources"
license: "License"
to_top:
short: "Top"
long: "Jump to top of page"
github_edit: "Edit"
home:
intro:
head: "Powering the Internet of Value."
body1: "The <a href=\"#xrp_ledger_intro\">XRP Ledger</a> is open-source technology that anyone can use."
body2: "Use the tools and information provided here to integrate with and contribute to the open-source platform."
subhead: "Want more?"
sub_body: "Get updates about XRP Ledger webinars, releases, and documentation!"
cta: "Sign up!"
cards_1:
learn:
head: "Learn How It Works"
about_xrp: "About XRP"
cta: "All Concepts"
read_docs:
head: "Read Documentation"
full_doc_index: "Full Doc Index"
cta: "All Docs"
explore:
head: "Explore the XRP Ledger"
blurb: "Use the XRPL Explorer to view a stream of ledger activity and see validator statuses."
cta: "Go to the Explorer"
what_is_xrpl:
head: "What is the XRP Ledger?"
body_1: "The XRP Ledger is a decentralized cryptographic ledger, powered by a network of peer-to-peer servers. It is the home of XRP, a digital asset designed to bridge the many different currencies in use worldwide."
digital_asset:
head: "The Digital Asset for Payments"
url: "xrp-ledger-overview.html#the-digital-asset-for-payments"
censorship_resistant:
head: "Censorship-Resistant Transaction Processing"
url: "xrp-ledger-overview.html#censorship-resistant-transaction-processing"
fast_algorithm:
head: "Fast, Efficient Consensus Algorithm"
url: "xrp-ledger-overview.html#fast-efficient-consensus-algorithm"
finite_xrp:
head: "Finite XRP Supply"
url: "xrp-ledger-overview.html#finite-xrp-supply"
responsible_governance:
head: "Responsible Software Governance"
url: "xrp-ledger-overview.html#responsible-software-governance"
secure_crypto:
head: "Secure, Adaptable Cryptography"
url: "xrp-ledger-overview.html#secure-adaptable-cryptography"
smart_contracts:
head: "Modern Features for Smart Contracts"
url: "xrp-ledger-overview.html#modern-features-for-smart-contracts"
decentralized_exchange:
head: "On-Ledger Decentralized Exchange"
url: "xrp-ledger-overview.html#on-ledger-decentralized-exchange"
- name: ja
lang: ja
display_name: XRP Ledger Dev Portal (日本語)
github_forkurl: https://github.com/ripple/xrpl-dev-portal
github_branch: master
strings:
blog: "ブログ"
search: "サイトをGoogleで検索"
bc_home: "ホーム"
tl_banner:
head: "も仕分けありませんがこのページは日本語では入手不可" #TODO: check translation
body: "XRP Ledger Dev Portalをさまざまな言語で提供するよう努力していますが、すべてのページがすべての言語で利用できるわけではありません。助けたいと思うなら、<a href=\"https://github.com/ripple/xrpl-dev-portal#contributing\">提供して下さい!</a>" #TODO: check translation & have a real link
pagetoc: "目次"
footer:
ripple:
careers: "Ripple 採用情報"
github: "GitHubでRipple"
xrp_resources: "XRP リソース"
license: "ライセンス"
to_top:
short: "先頭へ"
long: "このページの先頭へ"
github_edit: "Edit" #TODO:translate? (This is the "Edit" button that takes you to the page on GitHub where you can edit the current file and contribute your changes back.)
home: # Text from xrpl.org/index.html
intro:
head: "価値のインターネットをパワーする。"
body1: "<a href=\"#xrp_ledger_intro\">XRP Ledger</a>は誰でもが使い得るオープンソース技術。"
body2: "このツールと情報でXRPのオープンソースプラットフォームを統合して開発を提供します。" #TODO:check translation
subhead: "Want more?" #TODO:translate
sub_body: "Get updates about XRP Ledger webinars, releases, and documentation!" #TODO:translate
cta: "Sign up!" #TODO:translate
cards_1:
learn:
head: "XRP技術を理解する"
about_xrp: "XRPについて"
cta: "全コンセプト"
read_docs:
head: "ドキュメントを読む"
full_doc_index: "全ドキュメント目次"
cta: "全ドキュメント"
explore:
head: "XRP Ledgerを探る"
blurb: "XRP Ledger エクスプローラを使ってレジャーの動き、バリデータのステータスを見る。" #TODO:check translation
cta: "XRP Ledger エクスプローラへ"
what_is_xrpl:
head: "XRP Ledgerとは何?"
body_1: "XRP Ledgerは、ピアツーピア・サーバーのネットワーク機能を備えた分散型の暗号台帳です。XRP LedgerはXRPの土台となるものであり、世界中で使用されている様々な通貨の橋渡しをするために設計されたデジタル資産です。"
digital_asset:
head: "決済のためのデジタル資産"
url: "xrp-ledger-overview.html#決済のためのデジタル資産"
censorship_resistant:
head: "耐検閲性のある取引処理"
url: "xrp-ledger-overview.html#耐検閲性のある取引処理"
fast_algorithm:
head: "高速で効率的なConsensusアルゴリズム"
url: "xrp-ledger-overview.html#高速で効率的なconsensusアルゴリズム"
finite_xrp:
head: "限定されたXRP供給量"
url: "xrp-ledger-overview.html#限定されたxrp供給量"
responsible_governance:
head: "責任あるソフトウェア管理"
url: "xrp-ledger-overview.html#責任あるソフトウェア管理"
secure_crypto:
head: "安全で適応性のある暗号技術"
url: "xrp-ledger-overview.html#安全で適応性のある暗号技術"
smart_contracts:
head: "スマートコントラクト用の最新機能"
url: "xrp-ledger-overview.html#スマートコントラクト用の最新機能"
decentralized_exchange:
head: "台帳上の分散型取引所"
url: "xrp-ledger-overview.html#台帳上の分散型取引所"
link_subs:
# Fix 2 links from untranslated send-xrp.html:
"accounts.html#creating-accounts": "accounts.html#アカウントの作成"
"rippled-server-modes.html#reasons-to-run-a-stock-server": "rippled-server-modes.html#ストックサーバーを運用する理由"
# Fix 1 link from untranslated transaction-censorship-detection.html:
"xrp-ledger-overview.html#censorship-resistant-transaction-processing": "xrp-ledger-overview.html#耐検閲性のある取引処理"
# Fix 1 link from untranslated software-ecosystem.html:
"rippled-server-modes.html#reasons-to-run-a-validator": "rippled-server-modes.html#バリデータを運用する理由"
# Fix 2 links from untranslated xrp-ledger-toml.html:
"currency-formats.html#currency-codes": "currency-formats.html#通貨コード"
"run-rippled-as-a-validator.html#1-understand-the-traits-of-a-good-validator": "run-rippled-as-a-validator.html#1-優れたバリデータの特徴の理解"
# Fix 1 link from untranslated snippet post-rippled-install.md:
"get-started-with-the-rippled-api.html#commandline": "get-started-with-the-rippled-api.html#コマンドライン"
# Fix 8 links from untranslated use-an-escrow-as-a-smart-contract.html:
"send-a-conditionally-held-escrow.html#1-generate-condition-and-fulfillment": "send-a-conditionally-held-escrow.html#1条件とフルフィルメントの生成"
"send-a-conditionally-held-escrow.html#2-calculate-release-or-cancel-time": "send-a-conditionally-held-escrow.html#2リリース時刻または取消し時刻の計算"
"send-a-conditionally-held-escrow.html#3-submit-escrowcreate-transaction": "send-a-conditionally-held-escrow.html#3escrowcreateトランザクションの送信"
"send-a-conditionally-held-escrow.html#4-wait-for-validation": "send-a-conditionally-held-escrow.html#4検証の待機"
"send-a-conditionally-held-escrow.html#5-confirm-that-the-escrow-was-created": "send-a-conditionally-held-escrow.html#5escrowが作成されたことの確認"
"send-a-conditionally-held-escrow.html#6-submit-escrowfinish-transaction": "send-a-conditionally-held-escrow.html#6escrowfinishトランザクションの送信"
"send-a-conditionally-held-escrow.html#7-wait-for-validation": "send-a-conditionally-held-escrow.html#7検証の待機"
"send-a-conditionally-held-escrow.html#8-confirm-final-result": "send-a-conditionally-held-escrow.html#8最終結果の確認"
# Fix 1 link from untranslated checkcash-prereqs.md snippet:
"transaction-cost.html#queued-transactions": "transaction-cost.html#キューに入れられたトランザクション"
# Fix 2 links from untranslated crawl_shards.html:
"peer-protocol.html#private-peers": "peer-protocol.html#プライベートピア"
"error-formatting.html#universal-errors": "error-formatting.html#汎用エラー"
# Fix 2 links from untranslated demurrage.html:
"currency-formats.html#issued-currency-precision": "currency-formats.html#発行済み通貨の計算"
# Fix 10 links from untranslated known-amendments.html:
"accounts.html#permanence-of-accounts": "accounts.html#アカウントの永続性"
"paths.html#path-specifications": "paths.html#パスの仕様"
"rippling.html#the-noripple-flag": "rippling.html#norippleフラグ"
"reserves.html#owner-reserves": "reserves.html#所有者準備金"
"offers.html#lifecycle-of-an-offer": "offers.html#オファーのライフサイクル"
"trustset.html#trustset-flags": "trustset.html#trustsetのフラグ"
"ripplestate.html#ripplestate-flags": "ripplestate.html#ripplestateのフラグ"
"accountroot.html#accountroot-flags": "accountroot.html#accountrootのフラグ" # also used in untranslated require-destination-tags.html, become-an-xrp-ledger-gateway.html
"accountset.html#accountset-flags": "accountset.html#accountsetのフラグ"
"basic-data-types.html#ledger-index": "basic-data-types.html#レジャーインデックス"
# Fix 2 links from untranslated data type snippets
"basic-data-types.html#hashes": "basic-data-types.html#ハッシュ"
"basic-data-types.html#addresses": "basic-data-types.html#アドレス"
"basic-data-types.html#account-sequence": "basic-data-types.html#アカウントシーケンス"
# Fix 2 links from untranslated direct-xrp-payments.html
"basic-data-types.html#specifying-currency-amounts": "basic-data-types.html#通貨額の指定"
"partial-payments.html#partial-payments-exploit": "partial-payments.html#partial-paymentの悪用"
# Fix 2 links from untranslated become-an-xrp-ledger-gateway.html
"paths.html#default-paths": "paths.html#デフォルトパス"
"payment.html#payment-flags": "payment.html#paymentのフラグ"
# Fix 1 link from untranslated monitor-incoming-payments-with-websocket.html
"currency-formats.html#xrp-precision": "currency-formats.html#xrpの精度"
# Fix 1 link from untranslated set-up-secure-signing.html
"request-formatting.html#commandline-format": "request-formatting.html#コマンドライン形式"
# Fix links from untranslated open-a-payment-channel-to-enable-an-inter-exchange-network.html
"use-payment-channels.html#1-the-payer-creates-a-payment-channel-to-a-particular-recipient": "use-payment-channels.html#1-支払人が特定の受取人へのpayment-channelを作成します"
"use-payment-channels.html#2-the-payee-checks-specifics-of-the-payment-channel": "use-payment-channels.html#2-受取人がpayment-channelの特性を確認します"
"use-payment-channels.html#3-the-payer-creates-one-or-more-signed-claims-for-the-xrp-in-the-channel": "use-payment-channels.html#3-支払人がchannelのxrpに対して1つ以上の署名付き-クレーム-を作成します"
"use-payment-channels.html#4-the-payer-sends-a-claim-to-the-payee-as-payment-for-goods-or-services": "use-payment-channels.html#4-支払人が商品またはサービスに対する支払いとしてクレームを受取人に送信します"
"use-payment-channels.html#5-the-payee-verifies-the-claims": "use-payment-channels.html#5-受取人がクレームを検証します"
"use-payment-channels.html#7-repeat-steps-3-6-as-desired": "use-payment-channels.html#7-必要に応じてステップ36を繰り返します"
"use-payment-channels.html#8-when-ready-the-payee-redeems-a-claim-for-the-authorized-amount": "use-payment-channels.html#8-準備が完了すれば受取人は承認された額のクレームを清算します"
"use-payment-channels.html#9-when-the-payer-and-payee-are-done-doing-business-the-payer-requests-for-the-channel-to-be-closed": "use-payment-channels.html#9-支払人と受取人の取引完了後支払人はchannelの閉鎖を要求します"
# Fix 1 link from untranslated accountdelete.html. REMOVE when accounts.html is updated w/ deletable accounts info.
"accounts.html#deletion-of-accounts": "accounts.html#アカウントの永続性"
# Fix links from untranslated peer protocol updates
"peer-protocol.html#node-key-pair": "peer-protocol.html#ノードキーペア"
"run-rippled-as-a-validator.html#connect-using-proxies": "run-rippled-as-a-validator.html#プロキシを使用した接続"
"rippled-server-modes.html#public-hubs": "rippled-server-modes.html#公開ハブ"
"peer-protocol.html#peer-discovery": "peer-protocol.html#ピア発見"
"ledgers.html#tree-format": "ledgers.html#ツリーの形式"
- name: xrp-api-only
lang: en
display_name: XRP API Reference
github_forkurl: https://github.com/ripple/xrpl-dev-portal
github_branch: master
no_cover: true
strings:
blog: "Blog"
search: "Search site with Google..."
bc_home: "Home"
tl_banner:
head: "Sorry, this page is not available in your language."
body: "We are making an effort to offer the XRP Ledger Dev Portal in a variety of languages, but not all pages are available in all languages. If you'd like to help, <a href=\"https://github.com/ripple/xrpl-dev-portal/blob/master/CONTRIBUTING.md\">please contribute!</a>"
pagetoc: "In this document"
footer:
ripple:
careers: "Ripple Careers"
github: "Ripple on GitHub"
xrp_resources: "XRP Resources"
license: "License"
to_top:
short: "Top"
long: "Jump to top of page"
github_edit: "Edit"
# Data API target for porting changes to the README in the upstream repo
# Intended for use in markdown (--md) mode.
- name: data-api-only
lang: en
display_name: XRP Ledger Data API
github_forkurl: https://github.com/ripple/xrpl-dev-portal
github_branch: master
no_cover: True
link_re_subs:
"([\\w-]+\\.html)": https://xrpl.org/\1
strings:
blog: "Blog"
search: "Search site with Google..."
bc_home: "Home"
tl_banner:
head: "Sorry, this page is not available in your language."
body: "We are making an effort to offer the XRP Ledger Dev Portal in a variety of languages, but not all pages are available in all languages. If you'd like to help, <a href=\"https://github.com/ripple/xrpl-dev-portal/blob/master/CONTRIBUTING.md\">please contribute!</a>"
pagetoc: "In this document"
footer:
ripple:
careers: "Ripple Careers"
github: "Ripple on GitHub"
xrp_resources: "XRP Resources"
license: "License"
to_top:
short: "Top"
long: "Jump to top of page"
github_edit: "Edit"
pages:
- name: Docs
funnel: Docs
template: template-landing-docs.html
html: docs.html
sidebar: disabled
targets:
- en
- name: ドキュメント
funnel: Docs
template: template-landing-docs.html
html: docs.html
sidebar: disabled
targets:
- ja
# Concepts ---------------------------------------------------------------------
- name: Concepts
funnel: Docs
doc_type: Concepts
html: concepts.html
template: template-landing-children.html
blurb: Learn the "what" and "why" behind fundamental aspects of the XRP Ledger.
targets:
- en
- name: コンセプト
funnel: Docs
doc_type: Concepts
html: concepts.html
template: template-landing-children.html
blurb: Learn the "what" and "why" behind fundamental aspects of the XRP Ledger. #TODO:translate
targets:
- ja
- name: Introduction
funnel: Docs
doc_type: Concepts
category: Introduction
html: introduction.html
template: template-landing-children.html
blurb: Learn the "what" and "why" of the XRP Ledger. #TODO:translate
targets:
- en
- ja
- md: concepts/introduction/xrp-ledger-overview.md
html: xrp-ledger-overview.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Get a quick and concise introduction to key features of the XRP Ledger.
targets:
- en
- md: concepts/introduction/xrp-ledger-overview.ja.md
html: xrp-ledger-overview.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Get a quick and concise introduction to key features of the XRP Ledger. #TODO:translate
targets:
- ja
- md: concepts/introduction/intro-to-consensus.md
html: intro-to-consensus.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Develop a basic understanding of the XRP Ledger's consensus mechanism.
targets:
- en
- md: concepts/introduction/intro-to-consensus.ja.md
html: intro-to-consensus.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Develop a basic understanding of the XRP Ledger's consensus mechanism. #TODO:translate
targets:
- ja
- md: concepts/introduction/xrp.md
html: xrp.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Learn about the uses and properties of XRP, the digital asset for payments.
targets:
- en
- md: concepts/introduction/xrp.ja.md
html: xrp.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Learn about the uses and properties of XRP, the digital asset for payments. #TODO:translate
targets:
- ja
- md: concepts/introduction/software-ecosystem.md
html: software-ecosystem.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Get an overview of what XRP Ledger software is out there and how it fits together. #TODO:translate
targets:
- en
- ja
- md: concepts/introduction/technical-faq.md
html: technical-faq.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Get answers to frequently asked questions, covering topics such as validators, unique node lists, the role of XRP, and security.
targets:
- en
- md: concepts/introduction/technical-faq.ja.md
html: technical-faq.html
funnel: Docs
doc_type: Concepts
category: Introduction
blurb: Get answers to frequently asked questions, covering topics such as validators, unique node lists, the role of XRP, and security. #TODO:translate
targets:
- ja
- name: Payment System Basics
html: payment-system-basics.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
template: template-landing-children.html
blurb: One of the primary purposes of the XRP Ledger is payment processing. Learn more about key concepts that will help you understand the XRP Ledger payment system. #TODO:translate
targets:
- en
- name: 支払いシステムの基本
html: payment-system-basics.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
template: template-landing-children.html
blurb: One of the primary purposes of the XRP Ledger is payment processing. Learn more about key concepts that will help you understand the XRP Ledger payment system. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/accounts/accounts.md
html: accounts.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Learn about accounts in the XRP Ledger. Accounts can send transactions and hold XRP.
targets:
- en
- md: concepts/payment-system-basics/accounts/accounts.ja.md
html: accounts.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Learn about accounts in the XRP Ledger. Accounts can send transactions and hold XRP. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/accounts/cryptographic-keys.md
html: cryptographic-keys.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Use cryptographic keys to approve transactions so the XRP Ledger can execute them.
targets:
- en
- md: concepts/payment-system-basics/accounts/cryptographic-keys.ja.md
html: cryptographic-keys.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Use cryptographic keys to approve transactions so the XRP Ledger can execute them. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/accounts/multi-signing.md
html: multi-signing.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Use multi-signing for greater security sending transactions.
targets:
- en
- md: concepts/payment-system-basics/accounts/multi-signing.ja.md
html: multi-signing.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Use multi-signing for greater security sending transactions. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/accounts/reserves.md
html: reserves.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: XRP Ledger accounts require a reserve of XRP to reduce spam in ledger data.
targets:
- en
- md: concepts/payment-system-basics/accounts/reserves.ja.md
html: reserves.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: XRP Ledger accounts require a reserve of XRP to reduce spam in ledger data. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/accounts/depositauth.md
html: depositauth.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: The DepositAuth setting lets an account block incoming payments by default.
targets:
- en
- md: concepts/payment-system-basics/accounts/depositauth.ja.md
html: depositauth.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: The DepositAuth setting lets an account block incoming payments by default. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/fees.md
html: fees.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
blurb: Learn about the types of fees allowed by the XRP Ledger, including neutral fees (payable to no one) that protect the ledger against abuse, as well as fees that users can collect from each other.
targets:
- en
- md: concepts/payment-system-basics/fees.ja.md
html: fees.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
blurb: Learn about the types of fees allowed by the XRP Ledger, including neutral fees (payable to no one) that protect the ledger against abuse, as well as fees that users can collect from each other. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/ledgers.md
html: ledgers.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
blurb: The XRP Ledger is composed of a series of individual ledgers, or ledger versions, which rippled keeps in its internal database. Learn about the structure and contents of these ledgers.
targets:
- en
- md: concepts/payment-system-basics/ledgers.ja.md
html: ledgers.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
blurb: The XRP Ledger is composed of a series of individual ledgers, or ledger versions, which rippled keeps in its internal database. Learn about the structure and contents of these ledgers. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/transaction-basics.md
html: transaction-basics.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: Transactions are the only way to change the XRP Ledger. Understand what forms they take and how to use them.
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/transaction-basics.ja.md
html: transaction-basics.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: Transactions are the only way to change the XRP Ledger. Understand what forms they take and how to use them. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/transaction-cost.md
html: transaction-cost.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: The transaction cost is a small amount of XRP destroyed to send a transaction, which protects the ledger from spam. Learn how the transaction cost applies.
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/transaction-cost.ja.md
html: transaction-cost.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: The transaction cost is a small amount of XRP destroyed to send a transaction, which protects the ledger from spam. Learn how the transaction cost applies. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/finality-of-results.md
html: finality-of-results.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: Learn when the outcome of a transaction is final and immutable.
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/finality-of-results.ja.md
html: finality-of-results.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: Learn when the outcome of a transaction is final and immutable. #TODO:translate
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/source-and-destination-tags.md
html: source-and-destination-tags.html
funnel: Docs
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: Use source and destination tags to indicate specific purposes for payments from and to multi-purpose addresses. #TODO:translate
targets:
- en
- ja
- name: Payment Types
html: payment-types.html
funnel: Docs
doc_type: Concepts
category: Payment Types
template: template-landing-children.html
blurb: The XRP Ledger supports point-to-point XRP payments alongside other, more specialized payment types.
targets:
- en
- name: 支払いのタイプ
html: payment-types.html
funnel: Docs
doc_type: Concepts
category: Payment Types
template: template-landing-children.html
blurb: The XRP Ledger supports point-to-point XRP payments alongside other, more specialized payment types. #TODO:translate
targets:
- ja
# Redirect from the old landing name/URL
- name: Complex Payment Types
html: complex-payment-types.html
funnel: Docs
doc_type: Concepts
category: Payment Types
template: template-redirect.html
redirect_url: payment-types.html
targets:
- en
- ja
- md: concepts/payment-types/direct-xrp-payments.md
html: direct-xrp-payments.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Direct XRP payments are the simplest way to send value in the XRP Ledger. #TODO:translate
targets:
- en
- ja
- md: concepts/payment-types/cross-currency-payments.md
html: cross-currency-payments.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Cross-currency payments atomically deliver a different currency than they send by converting through paths and order books.
targets:
- en
- md: concepts/payment-types/cross-currency-payments.ja.md
html: cross-currency-payments.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Cross-currency payments atomically deliver a different currency than they send by converting through paths and order books. #TODO:translate
targets:
- ja
- md: concepts/payment-types/checks.md
html: checks.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Checks let users create deferred payments that can be canceled or cashed by the intended recipients.
status: not_enabled
targets:
- en
- md: concepts/payment-types/checks.ja.md
html: checks.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Checks let users create deferred payments that can be canceled or cashed by the intended recipients. #TODO:translate
status: not_enabled
targets:
- ja
- md: concepts/payment-types/escrow.md
html: escrow.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Escrows set aside XRP and deliver it later when certain conditions are met. Escrows can depend on time limits, cryptographic conditions, or both.
targets:
- en
- md: concepts/payment-types/escrow.ja.md
html: escrow.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Escrows set aside XRP and deliver it later when certain conditions are met. Escrows can depend on time limits, cryptographic conditions, or both. #TODO:translate
targets:
- ja
- md: concepts/payment-types/partial-payments.md
html: partial-payments.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Partial payments subtract fees from the amount sent, delivering a flexible amount. Partial payments are useful for returning unwanted payments without incurring additional costs.
targets:
- en
- md: concepts/payment-types/partial-payments.ja.md
html: partial-payments.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Partial payments subtract fees from the amount sent, delivering a flexible amount. Partial payments are useful for returning unwanted payments without incurring additional costs. #TODO:translate
targets:
- ja
- md: concepts/payment-types/payment-channels.md
html: payment-channels.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Payment Channels enable fast, asynchronous XRP payments that can be divided into very small increments and settled later.
targets:
- en
- md: concepts/payment-types/payment-channels.ja.md
html: payment-channels.html
funnel: Docs
doc_type: Concepts
category: Payment Types
blurb: Payment Channels enable fast, asynchronous XRP payments that can be divided into very small increments and settled later. #TODO:translate
targets:
- ja
- name: Issued Currencies
html: issued-currencies.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
template: template-landing-children.html
blurb: All currencies other than XRP can be represented in the XRP Ledger as issued currencies. Learn more about how issued currencies function in the XRP Ledger. #TODO:translate
targets:
- en
- name: 発行済み通貨
html: issued-currencies.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
template: template-landing-children.html
blurb: All currencies other than XRP can be represented in the XRP Ledger as issued currencies. Learn more about how issued currencies function in the XRP Ledger. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/issued-currencies-overview.md
html: issued-currencies-overview.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Get an overview of issued currencies and their properties in the XRP Ledger.
targets:
- en
- md: concepts/issued-currencies/issued-currencies-overview.ja.md
html: issued-currencies-overview.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Get an overview of issued currencies and their properties in the XRP Ledger. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/trust-lines-and-issuing.md
html: trust-lines-and-issuing.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Learn about the properties and rationale of trust lines.
targets:
- en
- md: concepts/issued-currencies/trust-lines-and-issuing.ja.md
html: trust-lines-and-issuing.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Learn about the properties and rationale of trust lines. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/authorized-trust-lines.md
html: authorized-trust-lines.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Learn about authorized trust lines, which enable a currency issuer to limit who can hold its issued (non-XRP) currencies.
targets:
- en
- md: concepts/issued-currencies/authorized-trust-lines.ja.md
html: authorized-trust-lines.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Learn about authorized trust lines, which enable a currency issuer to limit who can hold its issued (non-XRP) currencies. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/freezes.md
html: freezes.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Freezes can suspend trading of issued currencies for compliance purposes.
targets:
- en
- md: concepts/issued-currencies/freezes.ja.md
html: freezes.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Freezes can suspend trading of issued currencies for compliance purposes. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/rippling.md
html: rippling.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Rippling is automatic multi-party net settlement of issued currency balances.
targets:
- en
- md: concepts/issued-currencies/rippling.ja.md
html: rippling.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Rippling is automatic multi-party net settlement of issued currency balances. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/transfer-fees.md
html: transfer-fees.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Currency issuers can charge a fee for transferring their issued currencies.
targets:
- en
- md: concepts/issued-currencies/transfer-fees.ja.md
html: transfer-fees.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Currency issuers can charge a fee for transferring their issued currencies. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/issuing-and-operational-addresses.md
html: issuing-and-operational-addresses.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Businesses sending transactions on the XRP Ledger automatically should set up separate addresses for different purposes to minimize risk.
targets:
- en
- md: concepts/issued-currencies/issuing-and-operational-addresses.ja.md
html: issuing-and-operational-addresses.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Businesses sending transactions on the XRP Ledger automatically should set up separate addresses for different purposes to minimize risk. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/paths.md
html: paths.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Payments of issued currencies must traverse paths of connected users and order books.
targets:
- en
- md: concepts/issued-currencies/paths.ja.md
html: paths.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: Payments of issued currencies must traverse paths of connected users and order books. #TODO:translate
targets:
- ja
- md: concepts/issued-currencies/demurrage.md
html: demurrage.html
funnel: Docs
doc_type: Concepts
category: Issued Currencies
blurb: (Obsolete) Some older XRP Ledger tools used to support currency codes with built-in interest and negative interest rates.
targets:
- en