├── .github └── settings.yml ├── 0000-template.md ├── LICENSE ├── README.md ├── _config.yml ├── images ├── fabx │ ├── orderer-arch.png │ ├── orderer-flow.png │ └── peer-arch.png ├── fpc │ ├── full-detail │ │ ├── fpc-cc-execution.png │ │ ├── fpc-cc-invocation.png │ │ ├── fpc-components.png │ │ ├── fpc-integration-touchpoints.png │ │ ├── fpc-key-dist.png │ │ ├── fpc-lifecycle-v2.png │ │ ├── fpc-registration.png │ │ └── fpc-validation.png │ └── high-level │ │ ├── Slide1.png │ │ ├── Slide2.png │ │ ├── Slide3.png │ │ ├── Slide4.png │ │ └── hl-diagrams.pptx └── lts_release_diagram.png ├── index.md ├── rfcs.md └── text ├── 0000-admin_sdk.md ├── 0000-fabric-coexistence-model.md ├── 0000-fabric-extend-chaincode-lifecycle-api-to-query-all-aproved-chaincode.md ├── 0000-fabric-gateway.md ├── 0000-fabric-private-chaincode-1.0.md ├── 0000-fabric-website.md ├── 0000-fabric-x-next-generation.md ├── 0000-ledger-checkpointing.md ├── 0000-opentelemetry-tracing.md ├── 0000-orderer-snapshot.md ├── 0000-private_data_purge.md ├── 0001-chaincode-go-new-programming-model.md ├── 0002-go-sdk-programming-model.md ├── 0003-config-transaction-library.md ├── 0004-channel-participation-api-without-system-channel.md ├── 0005-lts-release-strategy.md ├── 0010-bft-signatures.md ├── 0011-peer-chaincode-optimization.md ├── 006-bft-based-ordering-service.md └── orderer-v3.md /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/0000-template.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/_config.yml -------------------------------------------------------------------------------- /images/fabx/orderer-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fabx/orderer-arch.png -------------------------------------------------------------------------------- /images/fabx/orderer-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fabx/orderer-flow.png -------------------------------------------------------------------------------- /images/fabx/peer-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fabx/peer-arch.png -------------------------------------------------------------------------------- /images/fpc/full-detail/fpc-cc-execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/full-detail/fpc-cc-execution.png -------------------------------------------------------------------------------- /images/fpc/full-detail/fpc-cc-invocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/full-detail/fpc-cc-invocation.png -------------------------------------------------------------------------------- /images/fpc/full-detail/fpc-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/full-detail/fpc-components.png -------------------------------------------------------------------------------- /images/fpc/full-detail/fpc-integration-touchpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/full-detail/fpc-integration-touchpoints.png -------------------------------------------------------------------------------- /images/fpc/full-detail/fpc-key-dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/full-detail/fpc-key-dist.png -------------------------------------------------------------------------------- /images/fpc/full-detail/fpc-lifecycle-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/full-detail/fpc-lifecycle-v2.png -------------------------------------------------------------------------------- /images/fpc/full-detail/fpc-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/full-detail/fpc-registration.png -------------------------------------------------------------------------------- /images/fpc/full-detail/fpc-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/full-detail/fpc-validation.png -------------------------------------------------------------------------------- /images/fpc/high-level/Slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/high-level/Slide1.png -------------------------------------------------------------------------------- /images/fpc/high-level/Slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/high-level/Slide2.png -------------------------------------------------------------------------------- /images/fpc/high-level/Slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/high-level/Slide3.png -------------------------------------------------------------------------------- /images/fpc/high-level/Slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/high-level/Slide4.png -------------------------------------------------------------------------------- /images/fpc/high-level/hl-diagrams.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/fpc/high-level/hl-diagrams.pptx -------------------------------------------------------------------------------- /images/lts_release_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/images/lts_release_diagram.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/index.md -------------------------------------------------------------------------------- /rfcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/rfcs.md -------------------------------------------------------------------------------- /text/0000-admin_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-admin_sdk.md -------------------------------------------------------------------------------- /text/0000-fabric-coexistence-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-fabric-coexistence-model.md -------------------------------------------------------------------------------- /text/0000-fabric-extend-chaincode-lifecycle-api-to-query-all-aproved-chaincode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-fabric-extend-chaincode-lifecycle-api-to-query-all-aproved-chaincode.md -------------------------------------------------------------------------------- /text/0000-fabric-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-fabric-gateway.md -------------------------------------------------------------------------------- /text/0000-fabric-private-chaincode-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-fabric-private-chaincode-1.0.md -------------------------------------------------------------------------------- /text/0000-fabric-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-fabric-website.md -------------------------------------------------------------------------------- /text/0000-fabric-x-next-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-fabric-x-next-generation.md -------------------------------------------------------------------------------- /text/0000-ledger-checkpointing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-ledger-checkpointing.md -------------------------------------------------------------------------------- /text/0000-opentelemetry-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-opentelemetry-tracing.md -------------------------------------------------------------------------------- /text/0000-orderer-snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-orderer-snapshot.md -------------------------------------------------------------------------------- /text/0000-private_data_purge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0000-private_data_purge.md -------------------------------------------------------------------------------- /text/0001-chaincode-go-new-programming-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0001-chaincode-go-new-programming-model.md -------------------------------------------------------------------------------- /text/0002-go-sdk-programming-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0002-go-sdk-programming-model.md -------------------------------------------------------------------------------- /text/0003-config-transaction-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0003-config-transaction-library.md -------------------------------------------------------------------------------- /text/0004-channel-participation-api-without-system-channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0004-channel-participation-api-without-system-channel.md -------------------------------------------------------------------------------- /text/0005-lts-release-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0005-lts-release-strategy.md -------------------------------------------------------------------------------- /text/0010-bft-signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0010-bft-signatures.md -------------------------------------------------------------------------------- /text/0011-peer-chaincode-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/0011-peer-chaincode-optimization.md -------------------------------------------------------------------------------- /text/006-bft-based-ordering-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/006-bft-based-ordering-service.md -------------------------------------------------------------------------------- /text/orderer-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-rfcs/HEAD/text/orderer-v3.md --------------------------------------------------------------------------------