Design of the blockchain part of the video copyright storage system based on blockchain and IPFS

This section gives a brief introduction to the blockchain part of the video copyright storage system, including directory structure, file functions, and design ideas.

Please read carefully before purchasing the column: [Introduction to the column "Video Copyright Deposit System Based on Blockchain and IPFS"](https://realhahah.blog.csdn.net/article/details/131543867

1. Introduction to some file directories of the blockchain

├── bin //保存了二进制文件方便启动网络
│   ├── configtxgen //生成创世区块和通道材料
│   └── cryptogen //生成密钥
├── chaincode //链码
│   ├── datashare.go
│   ├── go.mod
│   └── go.sum
├── configtx.yaml //来自byfn
├── crypto-config.yaml //来自byfn
├── docker-compose-byfn.yaml //byfn中的节点配置与IPFS容器配置
├── explorer //区块链浏览器
│   ├── config.json
│   ├── connection-profile
│   └── docker-compose.yaml
├── start.sh //启动网络脚本
├── stop.sh //关闭网络脚本
└── tape //fabric压测工具tape
    ├── config-temp.yaml
    ├── tape
    └── test

2. Start the network script start.sh

The startup script is to start the blockchain network and IPFS container, and then use the sed command to replace the private key in the blockchain browser and tape configuration files.

explain why here

Guess you like

Origin blog.csdn.net/qq_41575489/article/details/131780443