-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into Missing_Functionality
- Loading branch information
Showing
18 changed files
with
380 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
[server] | ||
port_rpc_admin_local | ||
port_ws_public | ||
port_ws_admin_local | ||
|
||
# port_peer | ||
# port_ws_admin_local | ||
# ssl_key = /etc/ssl/private/server.key | ||
# ssl_cert = /etc/ssl/certs/server.crt | ||
|
||
# IPs must be 0.0.0.0 instead of 127.0.0.1 to be accessed outside the docker container | ||
|
||
[port_rpc_admin_local] | ||
port = 5005 | ||
ip = 0.0.0.0 | ||
admin = 0.0.0.0 | ||
protocol = http | ||
|
||
[port_ws_public] | ||
port = 80 | ||
ip = 0.0.0.0 | ||
protocol = ws | ||
|
||
# [port_peer] | ||
# port = 51235 | ||
# ip = 0.0.0.0 | ||
# protocol = peer | ||
|
||
[port_ws_admin_local] | ||
port = 6006 | ||
ip = 0.0.0.0 | ||
admin = 0.0.0.0 | ||
protocol = ws | ||
|
||
[node_size] | ||
small | ||
|
||
# tiny | ||
# small | ||
# medium | ||
# large | ||
# huge | ||
|
||
[node_db] | ||
type=NuDB | ||
path=/var/lib/rippled/db/nudb | ||
advisory_delete=0 | ||
|
||
# How many ledgers do we want to keep (history)? | ||
# Integer value that defines the number of ledgers | ||
# between online deletion events | ||
online_delete=256 | ||
|
||
[ledger_history] | ||
# How many ledgers do we want to keep (history)? | ||
# Integer value (ledger count) | ||
# or (if you have lots of TB SSD storage): 'full' | ||
256 | ||
|
||
[database_path] | ||
/var/lib/rippled/db | ||
|
||
[debug_logfile] | ||
/var/log/rippled/debug.log | ||
|
||
[sntp_servers] | ||
time.windows.com | ||
time.apple.com | ||
time.nist.gov | ||
pool.ntp.org | ||
|
||
[ips] | ||
r.ripple.com 51235 | ||
|
||
[validators_file] | ||
validators.txt | ||
|
||
[rpc_startup] | ||
{ "command": "log_level", "severity": "info" } | ||
|
||
# severity (order: lots of information .. only errors) | ||
# debug | ||
# info | ||
# warn | ||
# error | ||
# fatal | ||
|
||
[ssl_verify] | ||
1 | ||
|
||
# The [features] stanza does not currently work for standalone mode: https://github.com/XRPLF/xrpl-dev-portal/issues/1762#issuecomment-1441252450 | ||
|
||
|
||
# In order to enable an amendment which by default would vote "No", you must include its amendment id and name here. | ||
# To add amendments specifically from the latest releases of rippled: | ||
# 1. Go to https://xrpl.org/known-amendments.html | ||
# 2. Find the first amendment in the latest releases of rippled which are not already in the list below | ||
# 3. Click on each amendment to get their Amendment ID and name to add to this list manually. | ||
# You will likely update the list with all amendments from a new release of rippled all at once. | ||
|
||
# To get the list of amendments on a network (e.g. devnet) follow the steps in xrpl.js's CONTRIBUTING.md for "Updating the Docker container". | ||
# https://github.com/XRPLF/xrpl.js/blob/main/CONTRIBUTING.md | ||
# (Running the script `getNewAmendments.js` should help you identify any new amendments that should be added.) | ||
# | ||
# Note: The version of rippled you use this config with must have an implementation for the amendments you attempt to enable or it will crash. | ||
# If you need the version of rippled to be more up to date, you may need to make a comment on this repo: https://github.com/WietseWind/docker-rippled | ||
|
||
[features] | ||
# Devnet amendments as of June 28th, 2023 | ||
NegativeUNL | ||
fixRemoveNFTokenAutoTrustLine | ||
NonFungibleTokensV1 | ||
CheckCashMakesTrustLine | ||
fixRmSmallIncreasedQOffers | ||
fixSTAmountCanonicalize | ||
FlowSortStrands | ||
TicketBatch | ||
fix1201 | ||
fixQualityUpperBound | ||
FlowCross | ||
EnforceInvariants | ||
fix1523 | ||
HardenedValidations | ||
DepositPreauth | ||
MultiSignReserve | ||
fix1623 | ||
FeeEscalation | ||
PayChan | ||
fix1513 | ||
RequireFullyCanonicalSig | ||
fix1543 | ||
TickSize | ||
fix1781 | ||
fixCheckThreading | ||
fix1515 | ||
CryptoConditions | ||
fix1528 | ||
fixPayChanRecipientOwnerDir | ||
SortedDirectories | ||
fix1578 | ||
fix1571 | ||
fixAmendmentMajorityCalc | ||
fixTakerDryOfferRemoval | ||
fixMasterKeyAsRegularKey | ||
Flow | ||
Escrow | ||
TrustSetAuth | ||
DeletableAccounts | ||
DepositAuth | ||
fix1368 | ||
fix1512 | ||
fix1373 | ||
MultiSign | ||
Checks | ||
NonFungibleTokensV1_1 | ||
# 1.10.0 Amendments | ||
DisallowIncoming | ||
fixNonFungibleTokensV1_2 | ||
fixTrustLinesToSelf | ||
fixUniversalNumber | ||
ImmediateOfferKilled | ||
XRPFees | ||
# 1.11.0 Amendments | ||
ExpandedSignerList | ||
# 1.12.0 Amendments | ||
AMM | ||
Clawback | ||
fixReducedOffersV1 | ||
fixNFTokenRemint | ||
# 2.0.0 Amendments | ||
XChainBridge | ||
DID |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...Xrpl.BinaryCodec/Types/TransactionType.cs → ...Xrpl.BinaryCodec/Enums/TransactionType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.