forked from devcode1981/xrpl-dev-portal
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdactyl-config.yml
5371 lines (4838 loc) · 196 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
- name: ja
lang: ja
display_name: XRP Ledger Dev Portal (日本語)
github_forkurl: https://github.com/ripple/xrpl-dev-portal
github_branch: master
- 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
# 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
pages:
- name: Docs
funnel: Docs
template: template-landing-docs.html
html: docs.html
sidebar: disabled
targets:
- en
- 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
- ja
- name: Introduction
funnel: Docs
doc_type: Concepts
category: Introduction
html: introduction.html
template: template-landing-children.html
blurb: The XRP Ledger is a decentralized cryptographic ledger powered by a network of peer-to-peer rippled servers. This section covers basic concepts that help you learn the "what" and "why" behind fundamental aspects of the XRP Ledger.
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 this
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 this
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 this
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.
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 this
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.
targets:
- en
- 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.
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.
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.
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.
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.
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: 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/finality-of-results.ja.md
html: finality-of-results.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:
- 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
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
- 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.
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.
targets:
- en
- 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.
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.
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.
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.
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.
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.
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.
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.
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
- ja
- name: Decentralized Exchange
html: decentralized-exchange.html
funnel: Docs
doc_type: Concepts
category: Decentralized Exchange
template: template-landing-children.html
blurb: The XRP Ledger contains a fully-functional exchange where users can trade issued currencies for XRP or each other.
targets:
- en
- ja
- md: concepts/decentralized-exchange/offers.md
html: offers.html
funnel: Docs
doc_type: Concepts
category: Decentralized Exchange
blurb: Offers are the XRP Ledger's form of currency trading orders. Understand their lifecycle and properties.
targets:
- en
- md: concepts/decentralized-exchange/offers.ja.md
html: offers.html
funnel: Docs
doc_type: Concepts
category: Decentralized Exchange
blurb: Offers are the XRP Ledger's form of currency trading orders. Understand their lifecycle and properties.
targets:
- ja
- md: concepts/decentralized-exchange/autobridging.md
html: autobridging.html
funnel: Docs
doc_type: Concepts
category: Decentralized Exchange
blurb: Autobriding automatically connects order books using XRP as an intermediary when it reduces costs.
targets:
- en
- md: concepts/decentralized-exchange/autobridging.ja.md
html: autobridging.html
funnel: Docs
doc_type: Concepts
category: Decentralized Exchange
blurb: Autobriding automatically connects order books using XRP as an intermediary when it reduces costs.
targets:
- ja
- md: concepts/decentralized-exchange/ticksize.md
html: ticksize.html
funnel: Docs
doc_type: Concepts
category: Decentralized Exchange
blurb: Issuers can set custom tick sizes for currencies to reduce churn in order books over miniscule differences in exchange rates.
targets:
- en
- md: concepts/decentralized-exchange/ticksize.ja.md
html: ticksize.html
funnel: Docs
doc_type: Concepts
category: Decentralized Exchange
blurb: Issuers can set custom tick sizes for currencies to reduce churn in order books over miniscule differences in exchange rates.
targets:
- ja
- name: Consensus Network
html: consensus-network.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
template: template-landing-children.html
blurb: The XRP Ledger uses a consensus algorithm to resolve the double spend problem and choose which transactions to execute in which order. Consensus also governs rules of transaction processing.
targets:
- en
- ja
- md: concepts/consensus-network/consensus.md
html: consensus.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Understand the role of consensus in the XRP Ledger.
targets:
- en
- md: concepts/consensus-network/consensus.ja.md
html: consensus.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Understand the role of consensus in the XRP Ledger. #TODO:translate
targets:
- ja
- md: concepts/consensus-network/consensus-principles-and-rules.md
html: consensus-principles-and-rules.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: The rules and principles of the consensus algorithm that allow users to transfer funds (including fiat currencies, digital currencies and other forms of value) across national boundaries as seamlessly as sending an email.
targets:
- en
- md: concepts/consensus-network/consensus-principles-and-rules.ja.md
html: consensus-principles-and-rules.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: The rules and principles of the consensus algorithm that allow users to transfer funds (including fiat currencies, digital currencies and other forms of value) across national boundaries as seamlessly as sending an email. #TODO: translate
targets:
- ja
- md: concepts/consensus-network/consensus-protections.md
html: consensus-protections.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Learn how the XRP Ledger Consensus Protocol is protected against various problems and attacks that may occur in a decentralized financial system.
targets:
- en
- md: concepts/consensus-network/consensus-protections.ja.md
html: consensus-protections.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Learn how the XRP Ledger Consensus Protocol is protected against various problems and attacks that may occur in a decentralized financial system. #TODO: translate
targets:
- ja
- md: concepts/consensus-network/transaction-queue.md
html: transaction-queue.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Understand how transactions can be queued before reaching consensus.
targets:
- en
- md: concepts/consensus-network/transaction-queue.ja.md
html: transaction-queue.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Understand how transactions can be queued before reaching consensus. #TODO:translate
targets:
- ja
- md: concepts/consensus-network/about-canceling-a-transaction.md
html: about-canceling-a-transaction.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Understand when and how it's possible to cancel a transaction that has already been sent.
targets:
- en
- md: concepts/consensus-network/about-canceling-a-transaction.ja.md
html: about-canceling-a-transaction.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Understand when and how it's possible to cancel a transaction that has already been sent. #TODO:translate
targets:
- ja
- md: concepts/consensus-network/transaction-malleability.md
html: transaction-malleability.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Be aware of ways transactions could be changed to have a different hash than expected.
targets:
- en
- md: concepts/consensus-network/transaction-malleability.ja.md
html: transaction-malleability.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Be aware of ways transactions could be changed to have a different hash than expected.
targets:
- ja
- md: concepts/consensus-network/amendments/amendments.md
html: amendments.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
subcategory: Amendments
blurb: Amendments represent new features or other changes to transaction processing. Validators coordinate through consensus to apply these upgrades to the XRP Ledger in an orderly fashion.
targets:
- en
- md: concepts/consensus-network/amendments/amendments.ja.md
html: amendments.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
subcategory: Amendments
blurb: Amendments represent new features or other changes to transaction processing. Validators coordinate through consensus to apply these upgrades to the XRP Ledger in an orderly fashion. #TODO:translate
targets:
- ja
- md: concepts/consensus-network/amendments/known-amendments.md
html: known-amendments.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
subcategory: Amendments
blurb: List of all known amendments to the XRP Ledger protocol and their status.
targets:
- en
- ja #NOTE: there is a translation of this page, but it's very out of date
- md: concepts/consensus-network/fee-voting.md
html: fee-voting.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: How validators vote on fees (transaction cost and reserve requirements).
targets:
- en
- md: concepts/consensus-network/fee-voting.ja.md
html: fee-voting.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: How validators vote on fees (transaction cost and reserve requirements). #TODO: translate
targets:
- ja
- md: concepts/consensus-network/consensus-research.md
html: consensus-research.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Scholarly articles on consensus algorithms and related research.
targets:
- en
- md: concepts/consensus-network/consensus-research.ja.md
html: consensus-research.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Scholarly articles on consensus algorithms and related research.
targets:
- ja
# TODO: add pseudo-transactions concept page
- md: concepts/consensus-network/parallel-networks.md
html: parallel-networks.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Understand how test networks and alternate ledger chains relate to the production XRP Ledger.
targets:
- en
- md: concepts/consensus-network/parallel-networks.ja.md
html: parallel-networks.html
funnel: Docs
doc_type: Concepts
category: Consensus Network
blurb: Understand how test networks and alternate ledger chains relate to the production XRP Ledger.
targets:
- ja
- name: The rippled Server
html: the-rippled-server.html
funnel: Docs
doc_type: Concepts
category: The rippled Server
template: template-landing-children.html
blurb: rippled is the core peer-to-peer server that manages the XRP Ledger. This section covers concepts that help you learn the "what" and "why" behind fundamental aspects of the rippled server.
targets:
- en
- ja