├── .github ├── dependabot.yml └── workflows │ ├── deploy.yml │ ├── lint.yml │ └── validate-xls.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AMENDMENT_TEMPLATE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── XLS-0001-xls-process └── README.md ├── XLS-0002-destination-information ├── README.md └── reference.js ├── XLS-0003-deeplink-signed-transactions └── README.md ├── XLS-0004-trustline-uri └── README.md ├── XLS-0005-tagged-addresses └── README.md ├── XLS-0006-visual-account-icons └── README.md ├── XLS-0007-deletable-accounts └── README.md ├── XLS-0008-tickets └── README.md ├── XLS-0009-blinded-tags └── README.md ├── XLS-0010-non-transferable-tokens └── README.md ├── XLS-0011-retiring-amendments └── README.md ├── XLS-0012-secret-numbers └── README.md ├── XLS-0013-tickets └── README.md ├── XLS-0015-concise-tx-id └── README.md ├── XLS-0016-nft-metadata └── README.md ├── XLS-0017-xfl └── README.md ├── XLS-0018-bootstrapping └── README.md ├── XLS-0020-non-fungible-tokens └── README.md ├── XLS-0021-asset-code-prefixes └── README.md ├── XLS-0022-api-versioning └── README.md ├── XLS-0023-lite-accounts └── README.md ├── XLS-0024-nft-metadata └── README.md ├── XLS-0025-enhanced-secret-numbers └── README.md ├── XLS-0026-iou-token-metadata ├── README.md └── schematic-diagram.svg ├── XLS-0030-automated-market-maker └── README.md ├── XLS-0032-tx-request-uri └── README.md ├── XLS-0033-multi-purpose-tokens └── README.md ├── XLS-0034-paychan-escrow-for-tokens └── README.md ├── XLS-0035-uritoken └── README.md ├── XLS-0037-concise-transaction-identifier-ctid ├── QUICKSTART.md ├── README.md ├── ctid.cpp ├── ctid.js ├── ctid.php ├── ctid.py └── ctid.ts ├── XLS-0038-cross-chain-bridge └── README.md ├── XLS-0039-clawback └── README.md ├── XLS-0040-decentralized-identity └── README.md ├── XLS-0041-xpop └── README.md ├── XLS-0042-plugins └── README.md ├── XLS-0045-prepublish-validator-lists └── README.md ├── XLS-0046-dynamic-non-fungible-tokens └── README.md ├── XLS-0047-PriceOracles ├── README.md └── README.pdf ├── XLS-0049-multiple-signer-lists └── README.md ├── XLS-0050-validator-toml-infra-details └── README.md ├── XLS-0051-nftoken-escrow └── README.md ├── XLS-0052-NFTokenMintOffer └── README.md ├── XLS-0054-nftokenoffer-destination-tag └── README.md ├── XLS-0055-remit └── README.md ├── XLS-0056-batch └── README.md ├── XLS-0060-default-autobridge └── README.md ├── XLS-0061-cross-currency-nftokenacceptof └── README.md ├── XLS-0062-options └── README.md ├── XLS-0063-signin └── README.md ├── XLS-0064-pseudo-account └── README.md ├── XLS-0065-single-asset-vault └── README.md ├── XLS-0067-charge └── README.md ├── XLS-0068-sponsored-fees-and-reserves └── README.md ├── XLS-0069-simulate └── README.md ├── XLS-0070-credentials └── README.md ├── XLS-0071-initial-owner-reserve-exemptio └── README.md ├── XLS-0073-amm-clawback └── README.md ├── XLS-0074-account-permissions └── README.md ├── XLS-0075-permission-delegation └── README.md ├── XLS-0076-min-incoming-amount └── README.md ├── XLS-0077-deep-freeze └── README.md ├── XLS-0078-subscriptions └── README.md ├── XLS-0080-permissioned-domains └── README.md ├── XLS-0081-permissioned-dex └── README.md ├── XLS-0085-token-escrow └── README.md ├── XLS-0086-firewall └── README.md ├── XLS-0089-multi-purpose-token-metadata-schema └── README.md ├── XLS-0094-dynamic-MPT └── README.md ├── XLS-0095-rename-rippled-to-xrpld └── README.md ├── XLS-0100-smart-escrows └── README.md ├── XLS-0102-wasm-vm └── README.md ├── XLS_TEMPLATE.md └── site ├── assets ├── favicon.ico └── style.css ├── build_site.py ├── requirements.txt ├── templates ├── base.html ├── category.html ├── contribute.html ├── index.html └── xls.html └── xls_parser.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/validate-xls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/.github/workflows/validate-xls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AMENDMENT_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/AMENDMENT_TEMPLATE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/README.md -------------------------------------------------------------------------------- /XLS-0001-xls-process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0001-xls-process/README.md -------------------------------------------------------------------------------- /XLS-0002-destination-information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0002-destination-information/README.md -------------------------------------------------------------------------------- /XLS-0002-destination-information/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0002-destination-information/reference.js -------------------------------------------------------------------------------- /XLS-0003-deeplink-signed-transactions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0003-deeplink-signed-transactions/README.md -------------------------------------------------------------------------------- /XLS-0004-trustline-uri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0004-trustline-uri/README.md -------------------------------------------------------------------------------- /XLS-0005-tagged-addresses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0005-tagged-addresses/README.md -------------------------------------------------------------------------------- /XLS-0006-visual-account-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0006-visual-account-icons/README.md -------------------------------------------------------------------------------- /XLS-0007-deletable-accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0007-deletable-accounts/README.md -------------------------------------------------------------------------------- /XLS-0008-tickets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0008-tickets/README.md -------------------------------------------------------------------------------- /XLS-0009-blinded-tags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0009-blinded-tags/README.md -------------------------------------------------------------------------------- /XLS-0010-non-transferable-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0010-non-transferable-tokens/README.md -------------------------------------------------------------------------------- /XLS-0011-retiring-amendments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0011-retiring-amendments/README.md -------------------------------------------------------------------------------- /XLS-0012-secret-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0012-secret-numbers/README.md -------------------------------------------------------------------------------- /XLS-0013-tickets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0013-tickets/README.md -------------------------------------------------------------------------------- /XLS-0015-concise-tx-id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0015-concise-tx-id/README.md -------------------------------------------------------------------------------- /XLS-0016-nft-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0016-nft-metadata/README.md -------------------------------------------------------------------------------- /XLS-0017-xfl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0017-xfl/README.md -------------------------------------------------------------------------------- /XLS-0018-bootstrapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0018-bootstrapping/README.md -------------------------------------------------------------------------------- /XLS-0020-non-fungible-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0020-non-fungible-tokens/README.md -------------------------------------------------------------------------------- /XLS-0021-asset-code-prefixes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0021-asset-code-prefixes/README.md -------------------------------------------------------------------------------- /XLS-0022-api-versioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0022-api-versioning/README.md -------------------------------------------------------------------------------- /XLS-0023-lite-accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0023-lite-accounts/README.md -------------------------------------------------------------------------------- /XLS-0024-nft-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0024-nft-metadata/README.md -------------------------------------------------------------------------------- /XLS-0025-enhanced-secret-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0025-enhanced-secret-numbers/README.md -------------------------------------------------------------------------------- /XLS-0026-iou-token-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0026-iou-token-metadata/README.md -------------------------------------------------------------------------------- /XLS-0026-iou-token-metadata/schematic-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0026-iou-token-metadata/schematic-diagram.svg -------------------------------------------------------------------------------- /XLS-0030-automated-market-maker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0030-automated-market-maker/README.md -------------------------------------------------------------------------------- /XLS-0032-tx-request-uri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0032-tx-request-uri/README.md -------------------------------------------------------------------------------- /XLS-0033-multi-purpose-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0033-multi-purpose-tokens/README.md -------------------------------------------------------------------------------- /XLS-0034-paychan-escrow-for-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0034-paychan-escrow-for-tokens/README.md -------------------------------------------------------------------------------- /XLS-0035-uritoken/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0035-uritoken/README.md -------------------------------------------------------------------------------- /XLS-0037-concise-transaction-identifier-ctid/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0037-concise-transaction-identifier-ctid/QUICKSTART.md -------------------------------------------------------------------------------- /XLS-0037-concise-transaction-identifier-ctid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0037-concise-transaction-identifier-ctid/README.md -------------------------------------------------------------------------------- /XLS-0037-concise-transaction-identifier-ctid/ctid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0037-concise-transaction-identifier-ctid/ctid.cpp -------------------------------------------------------------------------------- /XLS-0037-concise-transaction-identifier-ctid/ctid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0037-concise-transaction-identifier-ctid/ctid.js -------------------------------------------------------------------------------- /XLS-0037-concise-transaction-identifier-ctid/ctid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0037-concise-transaction-identifier-ctid/ctid.php -------------------------------------------------------------------------------- /XLS-0037-concise-transaction-identifier-ctid/ctid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0037-concise-transaction-identifier-ctid/ctid.py -------------------------------------------------------------------------------- /XLS-0037-concise-transaction-identifier-ctid/ctid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0037-concise-transaction-identifier-ctid/ctid.ts -------------------------------------------------------------------------------- /XLS-0038-cross-chain-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0038-cross-chain-bridge/README.md -------------------------------------------------------------------------------- /XLS-0039-clawback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0039-clawback/README.md -------------------------------------------------------------------------------- /XLS-0040-decentralized-identity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0040-decentralized-identity/README.md -------------------------------------------------------------------------------- /XLS-0041-xpop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0041-xpop/README.md -------------------------------------------------------------------------------- /XLS-0042-plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0042-plugins/README.md -------------------------------------------------------------------------------- /XLS-0045-prepublish-validator-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0045-prepublish-validator-lists/README.md -------------------------------------------------------------------------------- /XLS-0046-dynamic-non-fungible-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0046-dynamic-non-fungible-tokens/README.md -------------------------------------------------------------------------------- /XLS-0047-PriceOracles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0047-PriceOracles/README.md -------------------------------------------------------------------------------- /XLS-0047-PriceOracles/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0047-PriceOracles/README.pdf -------------------------------------------------------------------------------- /XLS-0049-multiple-signer-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0049-multiple-signer-lists/README.md -------------------------------------------------------------------------------- /XLS-0050-validator-toml-infra-details/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0050-validator-toml-infra-details/README.md -------------------------------------------------------------------------------- /XLS-0051-nftoken-escrow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0051-nftoken-escrow/README.md -------------------------------------------------------------------------------- /XLS-0052-NFTokenMintOffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0052-NFTokenMintOffer/README.md -------------------------------------------------------------------------------- /XLS-0054-nftokenoffer-destination-tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0054-nftokenoffer-destination-tag/README.md -------------------------------------------------------------------------------- /XLS-0055-remit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0055-remit/README.md -------------------------------------------------------------------------------- /XLS-0056-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0056-batch/README.md -------------------------------------------------------------------------------- /XLS-0060-default-autobridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0060-default-autobridge/README.md -------------------------------------------------------------------------------- /XLS-0061-cross-currency-nftokenacceptof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0061-cross-currency-nftokenacceptof/README.md -------------------------------------------------------------------------------- /XLS-0062-options/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0062-options/README.md -------------------------------------------------------------------------------- /XLS-0063-signin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0063-signin/README.md -------------------------------------------------------------------------------- /XLS-0064-pseudo-account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0064-pseudo-account/README.md -------------------------------------------------------------------------------- /XLS-0065-single-asset-vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0065-single-asset-vault/README.md -------------------------------------------------------------------------------- /XLS-0067-charge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0067-charge/README.md -------------------------------------------------------------------------------- /XLS-0068-sponsored-fees-and-reserves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0068-sponsored-fees-and-reserves/README.md -------------------------------------------------------------------------------- /XLS-0069-simulate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0069-simulate/README.md -------------------------------------------------------------------------------- /XLS-0070-credentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0070-credentials/README.md -------------------------------------------------------------------------------- /XLS-0071-initial-owner-reserve-exemptio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0071-initial-owner-reserve-exemptio/README.md -------------------------------------------------------------------------------- /XLS-0073-amm-clawback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0073-amm-clawback/README.md -------------------------------------------------------------------------------- /XLS-0074-account-permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0074-account-permissions/README.md -------------------------------------------------------------------------------- /XLS-0075-permission-delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0075-permission-delegation/README.md -------------------------------------------------------------------------------- /XLS-0076-min-incoming-amount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0076-min-incoming-amount/README.md -------------------------------------------------------------------------------- /XLS-0077-deep-freeze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0077-deep-freeze/README.md -------------------------------------------------------------------------------- /XLS-0078-subscriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0078-subscriptions/README.md -------------------------------------------------------------------------------- /XLS-0080-permissioned-domains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0080-permissioned-domains/README.md -------------------------------------------------------------------------------- /XLS-0081-permissioned-dex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0081-permissioned-dex/README.md -------------------------------------------------------------------------------- /XLS-0085-token-escrow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0085-token-escrow/README.md -------------------------------------------------------------------------------- /XLS-0086-firewall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0086-firewall/README.md -------------------------------------------------------------------------------- /XLS-0089-multi-purpose-token-metadata-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0089-multi-purpose-token-metadata-schema/README.md -------------------------------------------------------------------------------- /XLS-0094-dynamic-MPT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0094-dynamic-MPT/README.md -------------------------------------------------------------------------------- /XLS-0095-rename-rippled-to-xrpld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0095-rename-rippled-to-xrpld/README.md -------------------------------------------------------------------------------- /XLS-0100-smart-escrows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0100-smart-escrows/README.md -------------------------------------------------------------------------------- /XLS-0102-wasm-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS-0102-wasm-vm/README.md -------------------------------------------------------------------------------- /XLS_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/XLS_TEMPLATE.md -------------------------------------------------------------------------------- /site/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/assets/favicon.ico -------------------------------------------------------------------------------- /site/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/assets/style.css -------------------------------------------------------------------------------- /site/build_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/build_site.py -------------------------------------------------------------------------------- /site/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/requirements.txt -------------------------------------------------------------------------------- /site/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/templates/base.html -------------------------------------------------------------------------------- /site/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/templates/category.html -------------------------------------------------------------------------------- /site/templates/contribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/templates/contribute.html -------------------------------------------------------------------------------- /site/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/templates/index.html -------------------------------------------------------------------------------- /site/templates/xls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/templates/xls.html -------------------------------------------------------------------------------- /site/xls_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPLF/XRPL-Standards/HEAD/site/xls_parser.py --------------------------------------------------------------------------------