├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── deploy ├── deploy-gateway │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── jd │ │ │ └── blockchain │ │ │ └── gateway │ │ │ └── boot │ │ │ └── GatewayBooter.java │ │ └── resources │ │ ├── assembly.xml │ │ ├── config │ │ ├── application-gw.properties │ │ ├── gateway.conf │ │ └── log4j2-gw.xml │ │ └── scripts │ │ ├── shutdown.sh │ │ └── startup.sh ├── deploy-peer │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── jd │ │ │ └── blockchain │ │ │ └── boot │ │ │ └── peer │ │ │ └── PeerBooter.java │ │ └── resources │ │ ├── assembly.xml │ │ ├── config │ │ ├── application-peer.properties │ │ ├── init │ │ │ ├── bftsmart │ │ │ │ └── bftsmart.config │ │ │ ├── ledger.init │ │ │ ├── local.conf │ │ │ ├── mq │ │ │ │ └── mq.config │ │ │ └── raft │ │ │ │ └── raft.config │ │ └── log4j2-peer.xml │ │ └── scripts │ │ ├── jdchain-cli.sh │ │ ├── ledger-init.sh │ │ ├── peer-shutdown.sh │ │ └── peer-startup.sh └── pom.xml ├── pom.xml └── scripts ├── compile-latest.sh ├── start.sh ├── stop.sh ├── sync-to-all.sh └── sync-to-remote.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/README.md -------------------------------------------------------------------------------- /deploy/deploy-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-gateway/pom.xml -------------------------------------------------------------------------------- /deploy/deploy-gateway/src/main/java/com/jd/blockchain/gateway/boot/GatewayBooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-gateway/src/main/java/com/jd/blockchain/gateway/boot/GatewayBooter.java -------------------------------------------------------------------------------- /deploy/deploy-gateway/src/main/resources/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-gateway/src/main/resources/assembly.xml -------------------------------------------------------------------------------- /deploy/deploy-gateway/src/main/resources/config/application-gw.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-gateway/src/main/resources/config/application-gw.properties -------------------------------------------------------------------------------- /deploy/deploy-gateway/src/main/resources/config/gateway.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-gateway/src/main/resources/config/gateway.conf -------------------------------------------------------------------------------- /deploy/deploy-gateway/src/main/resources/config/log4j2-gw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-gateway/src/main/resources/config/log4j2-gw.xml -------------------------------------------------------------------------------- /deploy/deploy-gateway/src/main/resources/scripts/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-gateway/src/main/resources/scripts/shutdown.sh -------------------------------------------------------------------------------- /deploy/deploy-gateway/src/main/resources/scripts/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-gateway/src/main/resources/scripts/startup.sh -------------------------------------------------------------------------------- /deploy/deploy-peer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/pom.xml -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/java/com/jd/blockchain/boot/peer/PeerBooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/java/com/jd/blockchain/boot/peer/PeerBooter.java -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/assembly.xml -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/config/application-peer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/config/application-peer.properties -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/config/init/bftsmart/bftsmart.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/config/init/bftsmart/bftsmart.config -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/config/init/ledger.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/config/init/ledger.init -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/config/init/local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/config/init/local.conf -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/config/init/mq/mq.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/config/init/mq/mq.config -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/config/init/raft/raft.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/config/init/raft/raft.config -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/config/log4j2-peer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/config/log4j2-peer.xml -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/scripts/jdchain-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/scripts/jdchain-cli.sh -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/scripts/ledger-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/scripts/ledger-init.sh -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/scripts/peer-shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/scripts/peer-shutdown.sh -------------------------------------------------------------------------------- /deploy/deploy-peer/src/main/resources/scripts/peer-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/deploy-peer/src/main/resources/scripts/peer-startup.sh -------------------------------------------------------------------------------- /deploy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/deploy/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/compile-latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/scripts/compile-latest.sh -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /scripts/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/scripts/stop.sh -------------------------------------------------------------------------------- /scripts/sync-to-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/scripts/sync-to-all.sh -------------------------------------------------------------------------------- /scripts/sync-to-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-opensource/jdchain_bak/HEAD/scripts/sync-to-remote.sh --------------------------------------------------------------------------------