-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaccountset.html
More file actions
606 lines (515 loc) · 29.7 KB
/
accountset.html
File metadata and controls
606 lines (515 loc) · 29.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width">
<title>AccountSet - XAG Ledger Dev Portal</title>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicons/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicons/favicon-32x32.png">
<link rel="manifest" href="assets/favicons/site.webmanifest">
<link rel="shortcut icon" href="favicon.ico">
<meta name="msapplication-TileColor" content="#25A768">
<meta name="msapplication-config" content="assets/favicons/browserconfig.xml">
<meta name="theme-color" content="#25A768">
<!-- jQuery -->
<script src="assets/vendor/jquery-1.11.1.min.js"></script>
<!-- Stylesheet -->
<link href="assets/css/devportal.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
<!-- syntax highlighting -->
<link rel="stylesheet" href="assets/vendor/docco.min.css" />
<script src="assets/vendor/highlight.min.js"></script>
<!-- expandable code samples -->
<script src="assets/js/expandcode.js"></script>
<!-- multi-code selection tabs -->
<script src="assets/js/multicodetab.js"></script>
<script>
$(document).ready(function() {
$(".multicode").minitabs();
hljs.initHighlighting();
make_code_expandable();
});
</script>
</head>
<body class="xrp-ledger-dev-portal sidebar-primary lang-en ">
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-white">
<a href="index.html" class="navbar-brand"><img src="assets/img/logo.png" class="logo" height="44" alt="XAG Ledger Dev Portal" /></a>
<button class="navbar-toggler" type="button" data-toggle="slide-collapse" data-target="#navbarHolder" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarHolder">
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link" href="dev-tools.html">Dev Tools</a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://xagfans.com/" target="blank">BBS</a>
</li>
</ul><!-- /.navbar-nav -->
<div class="github-edit-wrap">
<a href="https://github.com/xagfans/docs/references/rippled-api/transaction-formats/transaction-types/accountset.md" target="_blank" class="github-edit">Edit</a>
</div><!-- /.github-edit -->
<div class="nav navbar-nav language-selector">
<div class="dropdown">
<button class="btn btn-outline-secondary dropdown-toggle" type="button" id="language_selector_header_btn" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
English
</button>
<div class="dropdown-menu" aria-labelledby="language_selector_header_btn">
<a class="dropdown-item" href="/accountset.html">English</a>
<a class="dropdown-item" href="/cn/accountset.html">中文</a>
</div><!--/.dropdown-menu-->
</div><!--/.dropdown-->
</div><!--/.language-selector-->
</div><!--/#navbarHolder-->
<div class="menu-overlay"></div>
</nav>
<div class="container-fluid" role="document" id="main_content_wrapper">
<div class="row">
<!-- Right sidebar first so it's at the beginning for mobile layouts -->
<aside class="right-sidebar col-lg-3 order-lg-4 p-0" role="complementary">
<div class="card" id="page-toc-wrapper">
<div class="card-header">
<h4>In this document</h4>
</div>
<ul class="card-body">
<li class="level-1"><a href="#accountset">AccountSet</a></li>
<li class="level-2"><a href="#example-accountset-json">Example AccountSet JSON</a></li>
<li class="level-2"><a href="#accountset-fields">AccountSet Fields</a></li>
<li class="level-2"><a href="#domain">Domain</a></li>
<li class="level-2"><a href="#accountset-flags">AccountSet Flags</a></li>
<li class="level-3"><a href="#blocking-incoming-transactions">Blocking Incoming Transactions</a></li>
<li class="level-2"><a href="#transferrate">TransferRate</a></li>
</ul>
</div>
</aside>
<!-- main column -->
<main class="main col-md-7 col-lg-6 order-md-3 " role="main" id="main_content_body">
<nav class="breadcrumbs-wrap p-0 p-md-3" aria-label="breadcrumb">
<ul class="breadcrumb bg-white">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="active breadcrumb-item"><a href="docs.html">Docs</a></li>
<li class="active breadcrumb-item"><a href="references.html">References</a></li>
<li class="active breadcrumb-item"><a href="rippled-api.html">rippled API Reference</a></li>
<li class="active breadcrumb-item"><a href="transaction-formats.html">Transaction Formats</a></li>
<li class="active breadcrumb-item"><a href="transaction-types.html">Transaction Types</a></li>
<li class="active breadcrumb-item">AccountSet</li>
</ul>
</nav><!--/.breadcrumbs-wrap--> <article class="pt-3 p-md-3">
<div class="content">
<h1 id="accountset">AccountSet</h1>
<p><a class="external-link" href="https://github.com/ripple/rippled/blob/f65cea66ef99b1de149c02c15f06de6c61abf360/src/ripple/app/transactors/SetAccount.cpp" target="_blank" title="Source">[Source] <i aria-hidden="true" class="fa fa-external-link"></i></a></p>
<p>An AccountSet transaction modifies the properties of an <a href="accountroot.html">account in the XAG Ledger</a>.</p>
<h2 id="example-accountset-json">Example AccountSet JSON</h2>
<pre><code class="json">{
"TransactionType": "AccountSet",
"Account" : "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
"Fee": "12",
"Sequence": 5,
"Domain": "6578616D706C652E636F6D",
"SetFlag": 5,
"MessageKey": "03AB40A0490F9B7ED8DF29D246BF2D6269820A0EE7742ACDD457BEA7C7D0931EDB"
}
</code></pre>
<h2 id="accountset-fields">AccountSet Fields</h2>
<p>In addition to the <a href="transaction-common-fields.html">common fields</a>, a AccountSet transaction uses the following fields:
<!-- --></p>
<table>
<thead>
<tr>
<th align="left">Field</th>
<th align="left">JSON Type</th>
<th align="left"><a href="serialization.html">Internal Type</a></th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><a href="#accountset-flags">ClearFlag</a></td>
<td align="left">Number</td>
<td align="left">UInt32</td>
<td align="left"><em>(Optional)</em> Unique identifier of a flag to disable for this account.</td>
</tr>
<tr>
<td align="left"><a href="#domain">Domain</a></td>
<td align="left">String</td>
<td align="left">Blob</td>
<td align="left"><em>(Optional)</em> The domain that owns this account, as a string of hex representing the ASCII for the domain in lowercase.</td>
</tr>
<tr>
<td align="left">EmailHash</td>
<td align="left">String</td>
<td align="left">Hash128</td>
<td align="left"><em>(Optional)</em> Hash of an email address to be used for generating an avatar image. Conventionally, clients use <a class="external-link" href="http://en.gravatar.com/site/implement/hash/" target="_blank">Gravatar <i aria-hidden="true" class="fa fa-external-link"></i></a> to display this image.</td>
</tr>
<tr>
<td align="left">MessageKey</td>
<td align="left">String</td>
<td align="left">Blob</td>
<td align="left"><em>(Optional)</em> Public key for sending encrypted messages to this account.</td>
</tr>
<tr>
<td align="left"><a href="#accountset-flags">SetFlag</a></td>
<td align="left">Number</td>
<td align="left">UInt32</td>
<td align="left"><em>(Optional)</em> Integer flag to enable for this account.</td>
</tr>
<tr>
<td align="left"><a href="accountset.html#transferrate">TransferRate</a></td>
<td align="left">Unsigned Integer</td>
<td align="left">UInt32</td>
<td align="left"><em>(Optional)</em> The fee to charge when users transfer this account's issued currencies, represented as billionths of a unit. Cannot be more than <code>2000000000</code> or less than <code>1000000000</code>, except for the special case <code>0</code> meaning no fee.</td>
</tr>
<tr>
<td align="left"><a href="ticksize.html">TickSize</a></td>
<td align="left">Unsigned Integer</td>
<td align="left">UInt8</td>
<td align="left"><em>(Optional)</em> Tick size to use for offers involving a currency issued by this address. The exchange rates of those offers is rounded to this many significant digits. Valid values are <code>3</code> to <code>15</code> inclusive, or <code>0</code> to disable. <em>(Added by the <a href="known-amendments.html#ticksize">TickSize amendment</a>.)</em></td>
</tr>
<tr>
<td align="left">WalletLocator</td>
<td align="left">String</td>
<td align="left">Hash256</td>
<td align="left"><em>(Optional)</em> Not used.</td>
</tr>
<tr>
<td align="left">WalletSize</td>
<td align="left">Number</td>
<td align="left">UInt32</td>
<td align="left"><em>(Optional)</em> Not used.</td>
</tr>
</tbody>
</table>
<p>If none of these options are provided, then the AccountSet transaction has no effect (beyond destroying the transaction cost). See <a href="cancel-or-skip-a-transaction.html">Cancel or Skip a Transaction</a> for more details.</p>
<h2 id="domain">Domain</h2>
<p>The <code>Domain</code> field is represented as the hex string of the lowercase ASCII of the domain. For example, the domain <em>example.com</em> would be represented as <code>"6578616D706C652E636F6D"</code>.</p>
<p>To remove the <code>Domain</code> field from an account, send an AccountSet with the Domain set to an empty string.</p>
<p>You can put any domain in your account's <code>Domain</code> field. To prove that an account and domain belong to the same person or business, Ripple recommends establishing a "two-way link":</p>
<ul>
<li>Accounts you own should have a domain you own in the <code>Domain</code> field.</li>
<li>On a website at that domain, host an <a href="xag-ledger-toml.html">xrp-ledger.toml file</a> listing accounts you own, and optionally other information about how you use the XAG Ledger.</li>
</ul>
<h2 id="accountset-flags">AccountSet Flags</h2>
<p>There are several options which can be either enabled or disabled for an account. Account options are represented by different types of flags depending on the situation:</p>
<ul>
<li>The <code>AccountSet</code> transaction type has several "AccountSet Flags" (prefixed <strong>asf</strong>) that can enable an option when passed as the <code>SetFlag</code> parameter, or disable an option when passed as the <code>ClearFlag</code> parameter.</li>
<li>The <code>AccountSet</code> transaction type has several transaction flags (prefixed <strong>tf</strong>) that can be used to enable or disable specific account options when passed in the <code>Flags</code> parameter. This style is discouraged. New account options do not have corresponding transaction (tf) flags.</li>
<li>The <code>AccountRoot</code> ledger object type has several ledger-specific-flags (prefixed <strong>lsf</strong>) which represent the state of particular account options within a particular ledger. These settings apply until a transaction changes them.</li>
</ul>
<p>The preferred way to enable and disable Account Flags is using the <code>SetFlag</code> and <code>ClearFlag</code> parameters of an AccountSet transaction. AccountSet flags have names that begin with <strong>asf</strong>.</p>
<p>All flags are disabled by default.</p>
<p>The available AccountSet flags are:</p>
<table>
<thead>
<tr>
<th align="left">Flag Name</th>
<th align="left">Decimal Value</th>
<th align="left">Corresponding Ledger Flag</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left">asfAccountTxnID</td>
<td align="left">5</td>
<td align="left">(None)</td>
<td align="left">Track the ID of this account's most recent transaction. Required for <a href="transaction-common-fields.html#accounttxnid">AccountTxnID</a></td>
</tr>
<tr>
<td align="left">asfDefaultRipple</td>
<td align="left">8</td>
<td align="left">lsfDefaultRipple</td>
<td align="left">Enable <a href="rippling.html">rippling</a> on this account's trust lines by default. <a class="external-link" href="https://github.com/ripple/rippled/releases/tag/0.27.3" target="_blank" title="New in: rippled 0.27.3"><img alt="New in: rippled 0.27.3" class="dactyl_badge" src="https://img.shields.io/badge/New%20in-rippled%200.27.3-blue.svg"/> <i aria-hidden="true" class="fa fa-external-link"></i></a></td>
</tr>
<tr>
<td align="left">asfDepositAuth</td>
<td align="left">9</td>
<td align="left">lsfDepositAuth</td>
<td align="left">Enable <a href="depositauth.html">Deposit Authorization</a> on this account. <em>(Added by the <a href="known-amendments.html#depositauth">DepositAuth amendment</a>.)</em></td>
</tr>
<tr>
<td align="left">asfDisableMaster</td>
<td align="left">4</td>
<td align="left">lsfDisableMaster</td>
<td align="left">Disallow use of the master key pair. Can only be enabled if the account has configured another way to sign transactions, such as a <a href="cryptographic-keys.html">Regular Key</a> or a <a href="multi-signing.html">Signer List</a>.</td>
</tr>
<tr>
<td align="left">asfDisallowXAG</td>
<td align="left">3</td>
<td align="left">lsfDisallowXAG</td>
<td align="left">XAG should not be sent to this account. (Enforced by client applications, not by <code>rippled</code>)</td>
</tr>
<tr>
<td align="left">asfGlobalFreeze</td>
<td align="left">7</td>
<td align="left">lsfGlobalFreeze</td>
<td align="left"><a href="freezes.html">Freeze</a> all assets issued by this account.</td>
</tr>
<tr>
<td align="left">asfNoFreeze</td>
<td align="left">6</td>
<td align="left">lsfNoFreeze</td>
<td align="left">Permanently give up the ability to <a href="freezes.html">freeze individual trust lines or disable Global Freeze</a>. This flag can never be disabled after being enabled.</td>
</tr>
<tr>
<td align="left">asfRequireAuth</td>
<td align="left">2</td>
<td align="left">lsfRequireAuth</td>
<td align="left">Require authorization for users to hold balances issued by this address. Can only be enabled if the address has no trust lines connected to it.</td>
</tr>
<tr>
<td align="left">asfRequireDest</td>
<td align="left">1</td>
<td align="left">lsfRequireDestTag</td>
<td align="left">Require a destination tag to send transactions to this account.</td>
</tr>
</tbody>
</table>
<p>To enable the <code>asfDisableMaster</code> or <code>asfNoFreeze</code> flags, you must <a href="transaction-basics.html#authorizing-transactions">authorize the transaction</a> by signing it with the master key pair. You cannot use a regular key pair or a multi-signature. You can disable <code>asfDisableMaster</code> (that is, re-enable the master key pair) using a regular key pair or multi-signature. <a class="external-link" href="https://github.com/ripple/rippled/releases/tag/0.28.0" target="_blank" title="New in: rippled 0.28.0"><img alt="New in: rippled 0.28.0" class="dactyl_badge" src="https://img.shields.io/badge/New%20in-rippled%200.28.0-blue.svg"/> <i aria-hidden="true" class="fa fa-external-link"></i></a></p>
<p>The following <a href="transaction-common-fields.html#flags-field">Transaction flags</a>, specific to the AccountSet transaction type, serve the same purpose, but are discouraged:</p>
<table>
<thead>
<tr>
<th align="left">Flag Name</th>
<th align="left">Hex Value</th>
<th align="left">Decimal Value</th>
<th align="left">Replaced by AccountSet Flag</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left">tfRequireDestTag</td>
<td align="left">0x00010000</td>
<td align="left">65536</td>
<td align="left">asfRequireDest (SetFlag)</td>
</tr>
<tr>
<td align="left">tfOptionalDestTag</td>
<td align="left">0x00020000</td>
<td align="left">131072</td>
<td align="left">asfRequireDest (ClearFlag)</td>
</tr>
<tr>
<td align="left">tfRequireAuth</td>
<td align="left">0x00040000</td>
<td align="left">262144</td>
<td align="left">asfRequireAuth (SetFlag)</td>
</tr>
<tr>
<td align="left">tfOptionalAuth</td>
<td align="left">0x00080000</td>
<td align="left">524288</td>
<td align="left">asfRequireAuth (ClearFlag)</td>
</tr>
<tr>
<td align="left">tfDisallowXAG</td>
<td align="left">0x00100000</td>
<td align="left">1048576</td>
<td align="left">asfDisallowXAG (SetFlag)</td>
</tr>
<tr>
<td align="left">tfAllowXAG</td>
<td align="left">0x00200000</td>
<td align="left">2097152</td>
<td align="left">asfDisallowXAG (ClearFlag)</td>
</tr>
</tbody>
</table>
<p class="devportal-callout caution"><strong>Caution:</strong> The numeric values of <code>tf</code> and <code>asf</code> flags in transactions do not match up with the values they set in the accounts "at rest" in the ledger. To read the flags of an account in the ledger, see <a href="accountroot.html#accountroot-flags"><code>AccountRoot</code> flags</a>.</p>
<h3 id="blocking-incoming-transactions">Blocking Incoming Transactions</h3>
<p>Incoming transactions with unclear purposes may be an inconvenience for financial institutions, who would have to recognize when a customer made a mistake, and then potentially refund accounts or adjust balances depending on the mistake. The <code>asfRequireDest</code> and <code>asfDisallowXAG</code> flags are intended to protect users from accidentally sending funds in a way that is unclear about the reason the funds were sent.</p>
<p>For example, a destination tag is typically used to identify which hosted balance should be credited when a financial institution receives a payment. If the destination tag is omitted, it may be unclear which account should be credited, creating a need for refunds, among other problems. By using the <code>asfRequireDest</code> tag, you can ensure that every incoming payment has a destination tag, which makes it harder for others to send you an ambiguous payment by accident.</p>
<p>You can protect against unwanted incoming payments for non-XAG currencies by not creating trust lines in those currencies. Since XAG does not require trust, the <code>asfDisallowXAG</code> flag is used to discourage users from sending XAG to an account. However, this flag is not enforced in <code>rippled</code> because it could potentially cause accounts to become unusable. (If an account did not have enough XAG to send a transaction that disabled the flag, the account would be completely unusable.) Instead, client applications should disallow or discourage XAG payments to accounts with the <code>asfDisallowXAG</code> flag enabled.</p>
<h2 id="transferrate">TransferRate</h2>
<p>The TransferRate field specifies a fee to charge whenever counterparties transfer the currency you issue. See <a href="transfer-fees.html">Transfer Fees</a> for more information.</p>
<p>In <code>rippled</code>'s WebSocket and JSON-RPC APIs, the TransferRate is represented as an integer, the amount that must be sent for 1 billion units to arrive. For example, a 20% transfer fee is represented as the value <code>1200000000</code>. The value cannot be less than 1000000000. (Less than that would indicate giving away money for sending transactions, which is exploitable.) You can specify 0 as a shortcut for 1000000000, meaning no fee.</p>
<!-- -->
<!-- -->
<!-- API object types -->
<!-- -->
<!-- -->
<!-- -->
<!-- rippled release notes links -->
</div>
</article>
</main>
<!-- Left sidebar last so it's at the end for mobile -->
<aside class="sidebar col-md-5 col-lg-3 p-0 order-md-1" role="complementary">
<div class="tree_nav">
<!---->
<div class="sidenav_parent">
<a href="rippled-api.html"> rippled API Reference</a>
</div>
<!---->
<!---->
<div id="sidenav" role="tablist" aria-multiselectable="true">
<div class="card">
<div class="card-header" role="tab" id="sidenav_cat_head_14">
<a class="collapsed sidenav_cat_toggler" role="button" data-toggle="collapse" href="#sidenav_collapse_14" aria-expanded="true" aria-controls="sidenav_collapse_14"></a>
<h5 class="card-title">
<a class="sidenav_cat_title" href="api-conventions.html">API Conventions</a>
</h5>
</div><!-- /.card-header -->
<div id="sidenav_collapse_14" class="collapse" role="tabpanel" aria-labelledby="sidenav_cat_head_14">
<div class="card-body">
<ul class="sidebar_pagelist">
<li><a class="nosubcat-page" href="basic-data-types.html">Basic Data Types</a></li>
<li><a class="nosubcat-page" href="base58-encodings.html">base58 Encodings</a></li>
<li><a class="nosubcat-page" href="currency-formats.html">Currency Formats</a></li>
<li><a class="nosubcat-page" href="error-formatting.html">Error Formatting</a></li>
<li><a class="nosubcat-page" href="markers-and-pagination.html">Markers and Pagination</a></li>
<li><a class="nosubcat-page" href="modifying-the-ledger.html">Modifying the Ledger</a></li>
<li><a class="nosubcat-page" href="rate-limiting.html">Rate Limiting</a></li>
<li><a class="nosubcat-page" href="request-formatting.html">Request Formatting</a></li>
<li><a class="nosubcat-page" href="response-formatting.html">Response Formatting</a></li>
<li><a class="nosubcat-page" href="rippled-server-states.html">rippled Server States</a></li>
<li><a class="nosubcat-page" href="serialization.html">Serialization Format</a></li>
</ul>
</div><!-- /.card-body -->
</div><!-- /#sidenav_collapse14 -->
</div><!-- /.panel -->
<div class="card">
<div class="card-header" role="tab" id="sidenav_cat_head_15">
<a class="collapsed sidenav_cat_toggler" role="button" data-toggle="collapse" href="#sidenav_collapse_15" aria-expanded="true" aria-controls="sidenav_collapse_15"></a>
<h5 class="card-title">
<a class="sidenav_cat_title" href="public-rippled-methods.html">Public rippled Methods</a>
</h5>
</div><!-- /.card-header -->
<div id="sidenav_collapse_15" class="collapse" role="tabpanel" aria-labelledby="sidenav_cat_head_15">
<div class="card-body">
<ul class="sidebar_pagelist">
<li><a class="subcat-title" href="account-methods.html">Account Methods</a></li>
<li><a class="subpage" href="account_currencies.html">account_currencies</a></li>
<li><a class="subpage" href="account_info.html">account_info</a></li>
<li><a class="subpage" href="account_lines.html">account_lines</a></li>
<li><a class="subpage" href="account_objects.html">account_objects</a></li>
<li><a class="subpage" href="account_offers.html">account_offers</a></li>
<li><a class="subpage" href="account_tx.html">account_tx</a></li>
<li><a class="subpage" href="gateway_balances.html">gateway_balances</a></li>
<li><a class="subpage" href="noripple_check.html">noripple_check</a></li>
<li><a class="subcat-title" href="ledger-methods.html">Ledger Methods</a></li>
<li><a class="subpage" href="ledger.html">ledger</a></li>
<li><a class="subpage" href="ledger_closed.html">ledger_closed</a></li>
<li><a class="subpage" href="ledger_current.html">ledger_current</a></li>
<li><a class="subpage" href="ledger_data.html">ledger_data</a></li>
<li><a class="subpage" href="ledger_entry.html">ledger_entry</a></li>
<li><a class="subcat-title" href="transaction-methods.html">Transaction Methods</a></li>
<li><a class="subpage" href="sign.html">sign</a></li>
<li><a class="subpage" href="sign_for.html">sign_for</a></li>
<li><a class="subpage" href="submit.html">submit</a></li>
<li><a class="subpage" href="submit_multisigned.html">submit_multisigned</a></li>
<li><a class="subpage" href="transaction_entry.html">transaction_entry</a></li>
<li><a class="subpage" href="tx.html">tx</a></li>
<li><a class="subpage" href="tx_history.html">tx_history</a></li>
<li><a class="subcat-title" href="path-and-order-book-methods.html">Path and Order Book Methods</a></li>
<li><a class="subpage" href="book_offers.html">book_offers</a></li>
<li><a class="subpage" href="deposit_authorized.html">deposit_authorized</a></li>
<li><a class="subpage" href="path_find.html">path_find</a></li>
<li><a class="subpage" href="ripple_path_find.html">ripple_path_find</a></li>
<li><a class="subcat-title" href="subscription-methods.html">Subscription Methods</a></li>
<li><a class="subpage" href="subscribe.html">subscribe</a></li>
<li><a class="subpage" href="unsubscribe.html">unsubscribe</a></li>
</ul>
</div><!-- /.card-body -->
</div><!-- /#sidenav_collapse15 -->
</div><!-- /.panel -->
</div><!-- /#sidenav -->
</div><!-- /.tree_nav --> </aside>
</div><!--/.row (main layout)-->
</div>
<footer class="xrpl-footer" role="contentinfo">
<section class="container-fluid card-grid card-grid-Nx1">
<div class="card">
<div class="card-header">
<h5><a href="docs.html">Docs</a></h5>
</div><!--/.card-header-->
<div class="card-body">
<div class="children-display">
<ul>
<li class="level-1"><a href="concepts.html">Concepts</a></li>
<li class="level-1"><a href="tutorials.html">Tutorials</a></li>
<li class="level-1"><a href="references.html">References</a></li>
</ul>
</div> </div><!--/.card-body-->
<div class="flag-vertical">01</div>
</div><!--/.card -->
<div class="card">
<div class="card-header">
<h5><a href="use-cases.html">Use Cases</a></h5>
</div><!--/.card-header-->
<div class="card-body">
<div class="children-display">
<ul>
<li class="level-1"><a href="run-a-rippled-validator.html">Run a rippled Validator</a></li>
<li class="level-1"><a href="list-xrp-in-your-exchange.html">List XAG in Your Exchange</a></li>
<li class="level-1"><a href="contribute-code-to-rippled.html">Contribute Code to rippled</a></li>
<li class="level-1"><a href="contribute-code-to-ripple-lib.html">Contribute Code to ripple-lib</a></li>
</ul>
</div> </div><!--/.card-body-->
<div class="flag-vertical">02</div>
</div><!--/.card -->
<div class="card">
<div class="card-header">
<h5><a href="dev-tools.html">Dev Tools</a></h5>
</div><!--/.card-header-->
<div class="card-body">
<div class="children-display">
<ul>
<li class="level-1"><a href="xag-ledger-rpc-tool.html">RPC Tool</a></li>
<li class="level-1"><a href="websocket-api-tool.html">WebSocket API Tool</a></li>
<li class="level-1"><a target="_blank" href="https://scan.xrpgen.com/">XAG Ledger Explorer</a> <i class="fa fa-external-link"></i></li>
</ul>
</div> </div><!--/.card-body-->
<div class="flag-vertical">03</div>
</div><!--/.card -->
<div class="card">
<div class="card-header">
<h5><a href="https://xrpgen.com/" target="_blank">Xrpalike Gene<i class="fa fa-external-link"></i></a></h5>
</div><!--/.card-header-->
<!--/.card-body-->
<div class="flag-vertical">04</div>
</div><!--/.card -->
</section>
<section class="container-fluid p-5 pl-sm-0">
<nav role="navigation" class="d-flex mb-3 language-selector">
<img class="language_selector_icon" src="assets/img/icon-language-selector.svg" width="32" height="40" alt="language selection icon" />
<ul class="nav">
<li class="nav-item">
<a class="nav-link active" href="/accountset.html"><i class="fa fa-check-circle"></i> English</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/cn/accountset.html">中文</a>
</li>
</ul>
</nav>
<div class="absolute_bottom_footer">
<span>© XAG Ledger Project 2020</span>
<span><a href="">License</a></span>
</div><!-- /.absolute_bottom_footer -->
</section>
</footer>
<!-- Jump to top button -->
<a href="#main_content_wrapper" class="jump-to-top btn btn-primary btn-lg" role="button" title="Jump to top of page">Top</a>
<script type="text/javascript" src="assets/js/jump-to-top.js"></script>
<!-- Non-blocking resources -->
<!-- Bootstrap JS -->
<script src="assets/vendor/bootstrap.min.js"></script>
<!-- fontawesome icons -->
<link rel="stylesheet" href="assets/vendor/fontawesome/css/font-awesome.min.css" />
<!-- Algolia DocSearch -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
<script type="text/javascript"> docsearch({
apiKey: '70de5b9b8ef95460f3c6e04054b325b2',
indexName: 'xrpl',
inputSelector: '#topsearchbar',
algoliaOptions: { 'facetFilters': ["lang:en"] },
debug: false
});
</script>
<script type="application/javascript">
gtag('set', {'content_group1': 'Content Docs'});
</script>
</body>
</html>