├── .editorconfig ├── .github └── stale.yml ├── .gitignore ├── 0001-interledger-architecture └── 0001-interledger-architecture.md ├── 0009-simple-payment-setup-protocol └── 0009-simple-payment-setup-protocol.md ├── 0015-ilp-addresses └── 0015-ilp-addresses.md ├── 0018-connector-risk-mitigations └── 0018-connector-risk-mitigations.md ├── 0019-glossary └── 0019-glossary.md ├── 0022-hashed-timelock-agreements └── 0022-hashed-timelock-agreements.md ├── 0023-bilateral-transfer-protocol └── 0023-bilateral-transfer-protocol.md ├── 0026-payment-pointers └── 0026-payment-pointers.md ├── 0027-interledger-protocol-4 └── 0027-interledger-protocol-4.md ├── 0029-stream ├── 0029-stream.md └── test-vectors │ ├── README.md │ └── StreamPacketFixtures.json ├── 0030-notes-on-oer-encoding └── 0030-notes-on-oer-encoding.md ├── 0031-dynamic-configuration-protocol └── 0031-dynamic-configuration-protocol.md ├── 0032-peering-clearing-settlement └── 0032-peering-clearing-settlement.md ├── 0033-relationship-between-protocols ├── 0033-relationship-between-protocols.md └── images │ ├── perspective-connections.svg │ └── perspective-protocols.svg ├── 0034-connector-requirements └── 0034-connector-requirements.md ├── 0035-ilp-over-http └── 0035-ilp-over-http.md ├── 0038-settlement-engines └── 0038-settlement-engines.md ├── 0039-stream-receipts └── 0039-stream-receipts.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── asn1 ├── BilateralTransferProtocol.asn ├── DynamicConfigurationProtocol.asn ├── GenericTypes.asn ├── InterledgerErrorData.asn ├── InterledgerPacket.asn ├── InterledgerProtocol.asn ├── InterledgerTypes.asn ├── README.md ├── Stream.asn └── StreamReceipt.asn ├── assets └── osslogo.png ├── deprecated ├── 0002-crypto-conditions │ ├── 0002-crypto-conditions.md │ ├── README.md │ └── output │ │ ├── 0002-crypto-conditions.html │ │ ├── 0002-crypto-conditions.txt │ │ └── 0002-crypto-conditions.xml ├── 0003-interledger-protocol │ └── 0003-interledger-protocol.md ├── 0004-ledger-plugin-interface │ └── 0004-ledger-plugin-interface.md ├── 0005-optimistic-transport-protocol │ └── 0005-optimistic-transport-protocol.md ├── 0006-universal-transport-protocol │ └── 0006-universal-transport-protocol.md ├── 0007-atomic-transport-protocol │ └── 0007-atomic-transport-protocol.md ├── 0008-interledger-quoting-protocol │ └── 0008-interledger-quoting-protocol.md ├── 0010-connector-to-connector-protocol │ └── 0010-connector-to-connector-protocol.md ├── 0011-interledger-payment-request │ └── 0011-interledger-payment-request.md ├── 0012-five-bells-ledger-api │ ├── 0012-five-bells-ledger-api.md │ ├── 5BL-transfer-states.png │ └── 5BL-transfer-states.uxf ├── 0014-paid-http-apis │ ├── 0014-paid-http-apis.md │ ├── sequence.mmd │ ├── sequence.png │ └── sequence.svg ├── 0016-pre-shared-key │ └── 0016-pre-shared-key.md ├── 0017-ledger-requirements │ └── 0017-ledger-requirements.md ├── 0020-explain-like-im-five │ └── 0020-explain-like-im-five.md ├── 0021-plugin-rpc-api │ └── 0021-plugin-rpc-api.md ├── 0024-ledger-plugin-interface-2 │ └── 0024-ledger-plugin-interface-2.md ├── 0025-pre-shared-key-2 │ └── 0025-pre-shared-key-2.md ├── 0028-web-monetization │ └── 0028-web-monetization.md ├── 0036-spsp-pull-payments │ └── 0036-spsp-pull-payments.md ├── 0037-spsp-invoices │ └── 0037-spsp-invoices.md └── micropayments-w3c.md ├── package.json ├── proposals └── 0000-http-auth-profiles.md ├── scripts ├── check-asn.sh ├── generate_graphs.js ├── generate_web.js └── publish_web.js └── shared └── graphs ├── interledger-model.dot ├── interledger-model.svg ├── packet-flow-happy.dot ├── packet-flow-happy.svg ├── packet-flow-reject.dot ├── packet-flow-reject.svg ├── protocol-suite.dot ├── protocol-suite.svg ├── settlement-architecture.svg ├── stream-in-protocol-suite.dot ├── stream-in-protocol-suite.svg ├── transfer-states.dot └── transfer-states.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/.gitignore -------------------------------------------------------------------------------- /0001-interledger-architecture/0001-interledger-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0001-interledger-architecture/0001-interledger-architecture.md -------------------------------------------------------------------------------- /0009-simple-payment-setup-protocol/0009-simple-payment-setup-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0009-simple-payment-setup-protocol/0009-simple-payment-setup-protocol.md -------------------------------------------------------------------------------- /0015-ilp-addresses/0015-ilp-addresses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0015-ilp-addresses/0015-ilp-addresses.md -------------------------------------------------------------------------------- /0018-connector-risk-mitigations/0018-connector-risk-mitigations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0018-connector-risk-mitigations/0018-connector-risk-mitigations.md -------------------------------------------------------------------------------- /0019-glossary/0019-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0019-glossary/0019-glossary.md -------------------------------------------------------------------------------- /0022-hashed-timelock-agreements/0022-hashed-timelock-agreements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0022-hashed-timelock-agreements/0022-hashed-timelock-agreements.md -------------------------------------------------------------------------------- /0023-bilateral-transfer-protocol/0023-bilateral-transfer-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0023-bilateral-transfer-protocol/0023-bilateral-transfer-protocol.md -------------------------------------------------------------------------------- /0026-payment-pointers/0026-payment-pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0026-payment-pointers/0026-payment-pointers.md -------------------------------------------------------------------------------- /0027-interledger-protocol-4/0027-interledger-protocol-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0027-interledger-protocol-4/0027-interledger-protocol-4.md -------------------------------------------------------------------------------- /0029-stream/0029-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0029-stream/0029-stream.md -------------------------------------------------------------------------------- /0029-stream/test-vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0029-stream/test-vectors/README.md -------------------------------------------------------------------------------- /0029-stream/test-vectors/StreamPacketFixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0029-stream/test-vectors/StreamPacketFixtures.json -------------------------------------------------------------------------------- /0030-notes-on-oer-encoding/0030-notes-on-oer-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0030-notes-on-oer-encoding/0030-notes-on-oer-encoding.md -------------------------------------------------------------------------------- /0031-dynamic-configuration-protocol/0031-dynamic-configuration-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0031-dynamic-configuration-protocol/0031-dynamic-configuration-protocol.md -------------------------------------------------------------------------------- /0032-peering-clearing-settlement/0032-peering-clearing-settlement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0032-peering-clearing-settlement/0032-peering-clearing-settlement.md -------------------------------------------------------------------------------- /0033-relationship-between-protocols/0033-relationship-between-protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0033-relationship-between-protocols/0033-relationship-between-protocols.md -------------------------------------------------------------------------------- /0033-relationship-between-protocols/images/perspective-connections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0033-relationship-between-protocols/images/perspective-connections.svg -------------------------------------------------------------------------------- /0033-relationship-between-protocols/images/perspective-protocols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0033-relationship-between-protocols/images/perspective-protocols.svg -------------------------------------------------------------------------------- /0034-connector-requirements/0034-connector-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0034-connector-requirements/0034-connector-requirements.md -------------------------------------------------------------------------------- /0035-ilp-over-http/0035-ilp-over-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0035-ilp-over-http/0035-ilp-over-http.md -------------------------------------------------------------------------------- /0038-settlement-engines/0038-settlement-engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0038-settlement-engines/0038-settlement-engines.md -------------------------------------------------------------------------------- /0039-stream-receipts/0039-stream-receipts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/0039-stream-receipts/0039-stream-receipts.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/README.md -------------------------------------------------------------------------------- /asn1/BilateralTransferProtocol.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/BilateralTransferProtocol.asn -------------------------------------------------------------------------------- /asn1/DynamicConfigurationProtocol.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/DynamicConfigurationProtocol.asn -------------------------------------------------------------------------------- /asn1/GenericTypes.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/GenericTypes.asn -------------------------------------------------------------------------------- /asn1/InterledgerErrorData.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/InterledgerErrorData.asn -------------------------------------------------------------------------------- /asn1/InterledgerPacket.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/InterledgerPacket.asn -------------------------------------------------------------------------------- /asn1/InterledgerProtocol.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/InterledgerProtocol.asn -------------------------------------------------------------------------------- /asn1/InterledgerTypes.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/InterledgerTypes.asn -------------------------------------------------------------------------------- /asn1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/README.md -------------------------------------------------------------------------------- /asn1/Stream.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/Stream.asn -------------------------------------------------------------------------------- /asn1/StreamReceipt.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/asn1/StreamReceipt.asn -------------------------------------------------------------------------------- /assets/osslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/assets/osslogo.png -------------------------------------------------------------------------------- /deprecated/0002-crypto-conditions/0002-crypto-conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0002-crypto-conditions/0002-crypto-conditions.md -------------------------------------------------------------------------------- /deprecated/0002-crypto-conditions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0002-crypto-conditions/README.md -------------------------------------------------------------------------------- /deprecated/0002-crypto-conditions/output/0002-crypto-conditions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0002-crypto-conditions/output/0002-crypto-conditions.html -------------------------------------------------------------------------------- /deprecated/0002-crypto-conditions/output/0002-crypto-conditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0002-crypto-conditions/output/0002-crypto-conditions.txt -------------------------------------------------------------------------------- /deprecated/0002-crypto-conditions/output/0002-crypto-conditions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0002-crypto-conditions/output/0002-crypto-conditions.xml -------------------------------------------------------------------------------- /deprecated/0003-interledger-protocol/0003-interledger-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0003-interledger-protocol/0003-interledger-protocol.md -------------------------------------------------------------------------------- /deprecated/0004-ledger-plugin-interface/0004-ledger-plugin-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0004-ledger-plugin-interface/0004-ledger-plugin-interface.md -------------------------------------------------------------------------------- /deprecated/0005-optimistic-transport-protocol/0005-optimistic-transport-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0005-optimistic-transport-protocol/0005-optimistic-transport-protocol.md -------------------------------------------------------------------------------- /deprecated/0006-universal-transport-protocol/0006-universal-transport-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0006-universal-transport-protocol/0006-universal-transport-protocol.md -------------------------------------------------------------------------------- /deprecated/0007-atomic-transport-protocol/0007-atomic-transport-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0007-atomic-transport-protocol/0007-atomic-transport-protocol.md -------------------------------------------------------------------------------- /deprecated/0008-interledger-quoting-protocol/0008-interledger-quoting-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0008-interledger-quoting-protocol/0008-interledger-quoting-protocol.md -------------------------------------------------------------------------------- /deprecated/0010-connector-to-connector-protocol/0010-connector-to-connector-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0010-connector-to-connector-protocol/0010-connector-to-connector-protocol.md -------------------------------------------------------------------------------- /deprecated/0011-interledger-payment-request/0011-interledger-payment-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0011-interledger-payment-request/0011-interledger-payment-request.md -------------------------------------------------------------------------------- /deprecated/0012-five-bells-ledger-api/0012-five-bells-ledger-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0012-five-bells-ledger-api/0012-five-bells-ledger-api.md -------------------------------------------------------------------------------- /deprecated/0012-five-bells-ledger-api/5BL-transfer-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0012-five-bells-ledger-api/5BL-transfer-states.png -------------------------------------------------------------------------------- /deprecated/0012-five-bells-ledger-api/5BL-transfer-states.uxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0012-five-bells-ledger-api/5BL-transfer-states.uxf -------------------------------------------------------------------------------- /deprecated/0014-paid-http-apis/0014-paid-http-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0014-paid-http-apis/0014-paid-http-apis.md -------------------------------------------------------------------------------- /deprecated/0014-paid-http-apis/sequence.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0014-paid-http-apis/sequence.mmd -------------------------------------------------------------------------------- /deprecated/0014-paid-http-apis/sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0014-paid-http-apis/sequence.png -------------------------------------------------------------------------------- /deprecated/0014-paid-http-apis/sequence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0014-paid-http-apis/sequence.svg -------------------------------------------------------------------------------- /deprecated/0016-pre-shared-key/0016-pre-shared-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0016-pre-shared-key/0016-pre-shared-key.md -------------------------------------------------------------------------------- /deprecated/0017-ledger-requirements/0017-ledger-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0017-ledger-requirements/0017-ledger-requirements.md -------------------------------------------------------------------------------- /deprecated/0020-explain-like-im-five/0020-explain-like-im-five.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0020-explain-like-im-five/0020-explain-like-im-five.md -------------------------------------------------------------------------------- /deprecated/0021-plugin-rpc-api/0021-plugin-rpc-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0021-plugin-rpc-api/0021-plugin-rpc-api.md -------------------------------------------------------------------------------- /deprecated/0024-ledger-plugin-interface-2/0024-ledger-plugin-interface-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0024-ledger-plugin-interface-2/0024-ledger-plugin-interface-2.md -------------------------------------------------------------------------------- /deprecated/0025-pre-shared-key-2/0025-pre-shared-key-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0025-pre-shared-key-2/0025-pre-shared-key-2.md -------------------------------------------------------------------------------- /deprecated/0028-web-monetization/0028-web-monetization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0028-web-monetization/0028-web-monetization.md -------------------------------------------------------------------------------- /deprecated/0036-spsp-pull-payments/0036-spsp-pull-payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0036-spsp-pull-payments/0036-spsp-pull-payments.md -------------------------------------------------------------------------------- /deprecated/0037-spsp-invoices/0037-spsp-invoices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/0037-spsp-invoices/0037-spsp-invoices.md -------------------------------------------------------------------------------- /deprecated/micropayments-w3c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/deprecated/micropayments-w3c.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/package.json -------------------------------------------------------------------------------- /proposals/0000-http-auth-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/proposals/0000-http-auth-profiles.md -------------------------------------------------------------------------------- /scripts/check-asn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/scripts/check-asn.sh -------------------------------------------------------------------------------- /scripts/generate_graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/scripts/generate_graphs.js -------------------------------------------------------------------------------- /scripts/generate_web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/scripts/generate_web.js -------------------------------------------------------------------------------- /scripts/publish_web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/scripts/publish_web.js -------------------------------------------------------------------------------- /shared/graphs/interledger-model.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/interledger-model.dot -------------------------------------------------------------------------------- /shared/graphs/interledger-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/interledger-model.svg -------------------------------------------------------------------------------- /shared/graphs/packet-flow-happy.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/packet-flow-happy.dot -------------------------------------------------------------------------------- /shared/graphs/packet-flow-happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/packet-flow-happy.svg -------------------------------------------------------------------------------- /shared/graphs/packet-flow-reject.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/packet-flow-reject.dot -------------------------------------------------------------------------------- /shared/graphs/packet-flow-reject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/packet-flow-reject.svg -------------------------------------------------------------------------------- /shared/graphs/protocol-suite.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/protocol-suite.dot -------------------------------------------------------------------------------- /shared/graphs/protocol-suite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/protocol-suite.svg -------------------------------------------------------------------------------- /shared/graphs/settlement-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/settlement-architecture.svg -------------------------------------------------------------------------------- /shared/graphs/stream-in-protocol-suite.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/stream-in-protocol-suite.dot -------------------------------------------------------------------------------- /shared/graphs/stream-in-protocol-suite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/stream-in-protocol-suite.svg -------------------------------------------------------------------------------- /shared/graphs/transfer-states.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/transfer-states.dot -------------------------------------------------------------------------------- /shared/graphs/transfer-states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rfcs/HEAD/shared/graphs/transfer-states.svg --------------------------------------------------------------------------------