├── .gitignore ├── LICENSE ├── conf └── config.json ├── go.mod ├── go.sum ├── pkg ├── client │ ├── app │ │ ├── app.go │ │ └── app_test.go │ ├── cita │ │ ├── citaClient.go │ │ ├── citaClient_event.go │ │ ├── citaClient_event_test.go │ │ ├── citaClient_node.go │ │ ├── citaClient_node_test.go │ │ ├── citaClient_user.go │ │ └── citaClient_user_test.go │ ├── client.go │ ├── fabric │ │ ├── fabricClient.go │ │ ├── fabricClient_event.go │ │ ├── fabricClient_event_test.go │ │ ├── fabricClient_node.go │ │ ├── fabricClient_node_test.go │ │ ├── fabricClient_user.go │ │ ├── fabricClient_user_test.go │ │ └── node │ │ │ └── client.go │ ├── fisco-bcos │ │ ├── fiscobcosClient.go │ │ ├── fiscobcosClient_event.go │ │ ├── fiscobcosClient_event_test.go │ │ ├── fiscobcosClient_node.go │ │ ├── fiscobcosClient_node_test.go │ │ ├── fiscobcosClient_user.go │ │ └── fiscobcosClient_user_test.go │ └── xuperchain │ │ ├── xuperchainClient.go │ │ ├── xuperchain_event.go │ │ ├── xuperchain_event_test.go │ │ ├── xuperchain_node.go │ │ ├── xuperchain_node_test.go │ │ ├── xuperchain_user.go │ │ └── xuperchain_user_test.go ├── common │ ├── cache │ │ ├── cache.go │ │ └── proc │ │ │ └── proc.go │ ├── errors │ │ └── error.go │ ├── file │ │ └── file.go │ ├── http │ │ └── http.go │ └── uuid │ │ └── uuid.go ├── core │ ├── config │ │ ├── conf │ │ │ └── config.json │ │ ├── config.go │ │ ├── config_test.go │ │ ├── fileConfig.go │ │ ├── fileConfig_test.go │ │ ├── mockConfig.go │ │ └── pukConfig.go │ ├── entity │ │ ├── base │ │ │ ├── req.go │ │ │ ├── reqInterface.go │ │ │ ├── res.go │ │ │ └── resInterdace.go │ │ ├── enum │ │ │ ├── algorithmType.go │ │ │ └── caType.go │ │ ├── msp │ │ │ ├── fiscoUser.go │ │ │ └── userData.go │ │ ├── req │ │ │ ├── appInfo.go │ │ │ ├── cita │ │ │ │ ├── event │ │ │ │ │ ├── query.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── remove.go │ │ │ │ ├── node │ │ │ │ │ ├── blockReqData.go │ │ │ │ │ ├── transData.go │ │ │ │ │ ├── transReqDataBody.go │ │ │ │ │ └── txTransReqData.go │ │ │ │ └── user │ │ │ │ │ └── register.go │ │ │ ├── fabric │ │ │ │ ├── event │ │ │ │ │ ├── queryReqData.go │ │ │ │ │ ├── registerReqData.go │ │ │ │ │ └── removeReqData.go │ │ │ │ ├── node │ │ │ │ │ ├── blockReqData.go │ │ │ │ │ ├── ledgerReqData.go │ │ │ │ │ ├── sdkTransReqData.go │ │ │ │ │ ├── transReqData.go │ │ │ │ │ └── txTransReqData.go │ │ │ │ └── user │ │ │ │ │ ├── enroll.go │ │ │ │ │ └── register.go │ │ │ ├── fiscobcos │ │ │ │ ├── event │ │ │ │ │ ├── query.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── remove.go │ │ │ │ ├── node │ │ │ │ │ ├── blockReqData.go │ │ │ │ │ ├── ledgerReqData.go │ │ │ │ │ ├── transData.go │ │ │ │ │ ├── transReqDataBody.go │ │ │ │ │ └── txReqData.go │ │ │ │ └── user │ │ │ │ │ └── register.go │ │ │ └── xuperchain │ │ │ │ ├── event │ │ │ │ ├── query.go │ │ │ │ ├── register.go │ │ │ │ └── remove.go │ │ │ │ ├── node │ │ │ │ ├── callContract.go │ │ │ │ ├── getBlock.go │ │ │ │ ├── getTx.go │ │ │ │ └── upukCallContract.go │ │ │ │ └── user │ │ │ │ └── registerUser.go │ │ └── res │ │ │ ├── appInfo.go │ │ │ ├── cita │ │ │ ├── event │ │ │ │ ├── event.go │ │ │ │ ├── query.go │ │ │ │ ├── register.go │ │ │ │ └── remove.go │ │ │ ├── node │ │ │ │ ├── blockHeightResData.go │ │ │ │ ├── blockResData.go │ │ │ │ ├── blockTxReceiptResData.go │ │ │ │ ├── blockTxResData.go │ │ │ │ └── transactionResData.go │ │ │ └── user │ │ │ │ └── register.go │ │ │ ├── fabric │ │ │ ├── event │ │ │ │ ├── queryResData.go │ │ │ │ └── registerResData.go │ │ │ ├── node │ │ │ │ ├── blockDataRes.go │ │ │ │ ├── blockResData.go │ │ │ │ ├── ledgerResData.go │ │ │ │ ├── tranResData.go │ │ │ │ ├── transData.go │ │ │ │ └── transactionResData.go │ │ │ └── user │ │ │ │ ├── enroll.go │ │ │ │ └── register.go │ │ │ ├── fiscobcos │ │ │ ├── event │ │ │ │ ├── event.go │ │ │ │ ├── query.go │ │ │ │ ├── register.go │ │ │ │ └── remove.go │ │ │ ├── node │ │ │ │ ├── blockHeightResData.go │ │ │ │ ├── blockResData.go │ │ │ │ ├── blockTxReceiptResData.go │ │ │ │ ├── blockTxResData.go │ │ │ │ └── transResData.go │ │ │ └── user │ │ │ │ └── register.go │ │ │ └── xuperchain │ │ │ ├── event │ │ │ ├── query.go │ │ │ ├── register.go │ │ │ └── remove.go │ │ │ ├── node │ │ │ ├── callContract.go │ │ │ ├── common.go │ │ │ ├── getBlock.go │ │ │ ├── getTx.go │ │ │ └── upukCallContract.go │ │ │ └── user │ │ │ └── registerUser.go │ ├── sign │ │ └── bsnCrypto.go │ └── trans │ │ ├── cita │ │ ├── pb │ │ │ ├── blockchain.pb.go │ │ │ └── blockchain.proto │ │ ├── trans.go │ │ └── txdata.go │ │ ├── fabric │ │ ├── block.go │ │ ├── block_test.go │ │ ├── fab │ │ │ └── proposer.go │ │ ├── request.go │ │ ├── trans.go │ │ ├── trans_test.go │ │ ├── transactionHeader.go │ │ └── utils │ │ │ ├── commonutils.go │ │ │ ├── proputils.go │ │ │ ├── txutils.go │ │ │ └── utils.go │ │ ├── fiscobcos │ │ ├── trans.go │ │ ├── trans_test.go │ │ └── txdata.go │ │ └── xuperchain │ │ ├── account │ │ ├── account_ext.go │ │ └── account_ext_test.go │ │ ├── common │ │ └── common.go │ │ ├── crypto │ │ └── client.go │ │ ├── pb │ │ ├── chainedbft.pb.go │ │ ├── chainedbft.proto │ │ ├── xchain.pb.go │ │ └── xchain.proto │ │ └── trans.go └── util │ └── keystore │ ├── filekeystore.go │ ├── fileusercertstore.go │ ├── keystore.go │ └── userstore.go ├── readme.md └── readme_CN.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /conf/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/conf/config.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/client/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/app/app.go -------------------------------------------------------------------------------- /pkg/client/app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/app/app_test.go -------------------------------------------------------------------------------- /pkg/client/cita/citaClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/cita/citaClient.go -------------------------------------------------------------------------------- /pkg/client/cita/citaClient_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/cita/citaClient_event.go -------------------------------------------------------------------------------- /pkg/client/cita/citaClient_event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/cita/citaClient_event_test.go -------------------------------------------------------------------------------- /pkg/client/cita/citaClient_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/cita/citaClient_node.go -------------------------------------------------------------------------------- /pkg/client/cita/citaClient_node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/cita/citaClient_node_test.go -------------------------------------------------------------------------------- /pkg/client/cita/citaClient_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/cita/citaClient_user.go -------------------------------------------------------------------------------- /pkg/client/cita/citaClient_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/cita/citaClient_user_test.go -------------------------------------------------------------------------------- /pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/client.go -------------------------------------------------------------------------------- /pkg/client/fabric/fabricClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fabric/fabricClient.go -------------------------------------------------------------------------------- /pkg/client/fabric/fabricClient_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fabric/fabricClient_event.go -------------------------------------------------------------------------------- /pkg/client/fabric/fabricClient_event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fabric/fabricClient_event_test.go -------------------------------------------------------------------------------- /pkg/client/fabric/fabricClient_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fabric/fabricClient_node.go -------------------------------------------------------------------------------- /pkg/client/fabric/fabricClient_node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fabric/fabricClient_node_test.go -------------------------------------------------------------------------------- /pkg/client/fabric/fabricClient_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fabric/fabricClient_user.go -------------------------------------------------------------------------------- /pkg/client/fabric/fabricClient_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fabric/fabricClient_user_test.go -------------------------------------------------------------------------------- /pkg/client/fabric/node/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fabric/node/client.go -------------------------------------------------------------------------------- /pkg/client/fisco-bcos/fiscobcosClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fisco-bcos/fiscobcosClient.go -------------------------------------------------------------------------------- /pkg/client/fisco-bcos/fiscobcosClient_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fisco-bcos/fiscobcosClient_event.go -------------------------------------------------------------------------------- /pkg/client/fisco-bcos/fiscobcosClient_event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fisco-bcos/fiscobcosClient_event_test.go -------------------------------------------------------------------------------- /pkg/client/fisco-bcos/fiscobcosClient_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fisco-bcos/fiscobcosClient_node.go -------------------------------------------------------------------------------- /pkg/client/fisco-bcos/fiscobcosClient_node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fisco-bcos/fiscobcosClient_node_test.go -------------------------------------------------------------------------------- /pkg/client/fisco-bcos/fiscobcosClient_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fisco-bcos/fiscobcosClient_user.go -------------------------------------------------------------------------------- /pkg/client/fisco-bcos/fiscobcosClient_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/fisco-bcos/fiscobcosClient_user_test.go -------------------------------------------------------------------------------- /pkg/client/xuperchain/xuperchainClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/xuperchain/xuperchainClient.go -------------------------------------------------------------------------------- /pkg/client/xuperchain/xuperchain_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/xuperchain/xuperchain_event.go -------------------------------------------------------------------------------- /pkg/client/xuperchain/xuperchain_event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/xuperchain/xuperchain_event_test.go -------------------------------------------------------------------------------- /pkg/client/xuperchain/xuperchain_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/xuperchain/xuperchain_node.go -------------------------------------------------------------------------------- /pkg/client/xuperchain/xuperchain_node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/xuperchain/xuperchain_node_test.go -------------------------------------------------------------------------------- /pkg/client/xuperchain/xuperchain_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/xuperchain/xuperchain_user.go -------------------------------------------------------------------------------- /pkg/client/xuperchain/xuperchain_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/client/xuperchain/xuperchain_user_test.go -------------------------------------------------------------------------------- /pkg/common/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/common/cache/cache.go -------------------------------------------------------------------------------- /pkg/common/cache/proc/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/common/cache/proc/proc.go -------------------------------------------------------------------------------- /pkg/common/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/common/errors/error.go -------------------------------------------------------------------------------- /pkg/common/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/common/file/file.go -------------------------------------------------------------------------------- /pkg/common/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/common/http/http.go -------------------------------------------------------------------------------- /pkg/common/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/common/uuid/uuid.go -------------------------------------------------------------------------------- /pkg/core/config/conf/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/config/conf/config.json -------------------------------------------------------------------------------- /pkg/core/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/config/config.go -------------------------------------------------------------------------------- /pkg/core/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/config/config_test.go -------------------------------------------------------------------------------- /pkg/core/config/fileConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/config/fileConfig.go -------------------------------------------------------------------------------- /pkg/core/config/fileConfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/config/fileConfig_test.go -------------------------------------------------------------------------------- /pkg/core/config/mockConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/config/mockConfig.go -------------------------------------------------------------------------------- /pkg/core/config/pukConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/config/pukConfig.go -------------------------------------------------------------------------------- /pkg/core/entity/base/req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/base/req.go -------------------------------------------------------------------------------- /pkg/core/entity/base/reqInterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/base/reqInterface.go -------------------------------------------------------------------------------- /pkg/core/entity/base/res.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/base/res.go -------------------------------------------------------------------------------- /pkg/core/entity/base/resInterdace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/base/resInterdace.go -------------------------------------------------------------------------------- /pkg/core/entity/enum/algorithmType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/enum/algorithmType.go -------------------------------------------------------------------------------- /pkg/core/entity/enum/caType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/enum/caType.go -------------------------------------------------------------------------------- /pkg/core/entity/msp/fiscoUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/msp/fiscoUser.go -------------------------------------------------------------------------------- /pkg/core/entity/msp/userData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/msp/userData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/appInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/appInfo.go -------------------------------------------------------------------------------- /pkg/core/entity/req/cita/event/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/cita/event/query.go -------------------------------------------------------------------------------- /pkg/core/entity/req/cita/event/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/cita/event/register.go -------------------------------------------------------------------------------- /pkg/core/entity/req/cita/event/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/cita/event/remove.go -------------------------------------------------------------------------------- /pkg/core/entity/req/cita/node/blockReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/cita/node/blockReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/cita/node/transData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/cita/node/transData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/cita/node/transReqDataBody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/cita/node/transReqDataBody.go -------------------------------------------------------------------------------- /pkg/core/entity/req/cita/node/txTransReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/cita/node/txTransReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/cita/user/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/cita/user/register.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/event/queryReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/event/queryReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/event/registerReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/event/registerReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/event/removeReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/event/removeReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/node/blockReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/node/blockReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/node/ledgerReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/node/ledgerReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/node/sdkTransReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/node/sdkTransReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/node/transReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/node/transReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/node/txTransReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/node/txTransReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/user/enroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/user/enroll.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fabric/user/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fabric/user/register.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/event/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/event/query.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/event/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/event/register.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/event/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/event/remove.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/node/blockReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/node/blockReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/node/ledgerReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/node/ledgerReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/node/transData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/node/transData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/node/transReqDataBody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/node/transReqDataBody.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/node/txReqData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/node/txReqData.go -------------------------------------------------------------------------------- /pkg/core/entity/req/fiscobcos/user/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/fiscobcos/user/register.go -------------------------------------------------------------------------------- /pkg/core/entity/req/xuperchain/event/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/xuperchain/event/query.go -------------------------------------------------------------------------------- /pkg/core/entity/req/xuperchain/event/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/xuperchain/event/register.go -------------------------------------------------------------------------------- /pkg/core/entity/req/xuperchain/event/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/xuperchain/event/remove.go -------------------------------------------------------------------------------- /pkg/core/entity/req/xuperchain/node/callContract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/xuperchain/node/callContract.go -------------------------------------------------------------------------------- /pkg/core/entity/req/xuperchain/node/getBlock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/xuperchain/node/getBlock.go -------------------------------------------------------------------------------- /pkg/core/entity/req/xuperchain/node/getTx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/xuperchain/node/getTx.go -------------------------------------------------------------------------------- /pkg/core/entity/req/xuperchain/node/upukCallContract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/xuperchain/node/upukCallContract.go -------------------------------------------------------------------------------- /pkg/core/entity/req/xuperchain/user/registerUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/req/xuperchain/user/registerUser.go -------------------------------------------------------------------------------- /pkg/core/entity/res/appInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/appInfo.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/event/event.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/event/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/event/query.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/event/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/event/register.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/event/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/event/remove.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/node/blockHeightResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/node/blockHeightResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/node/blockResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/node/blockResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/node/blockTxReceiptResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/node/blockTxReceiptResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/node/blockTxResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/node/blockTxResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/node/transactionResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/node/transactionResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/cita/user/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/cita/user/register.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/event/queryResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/event/queryResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/event/registerResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/event/registerResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/node/blockDataRes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/node/blockDataRes.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/node/blockResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/node/blockResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/node/ledgerResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/node/ledgerResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/node/tranResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/node/tranResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/node/transData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/node/transData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/node/transactionResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/node/transactionResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/user/enroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/user/enroll.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fabric/user/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fabric/user/register.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/event/event.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/event/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/event/query.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/event/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/event/register.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/event/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/event/remove.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/node/blockHeightResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/node/blockHeightResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/node/blockResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/node/blockResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/node/blockTxReceiptResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/node/blockTxReceiptResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/node/blockTxResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/node/blockTxResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/node/transResData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/node/transResData.go -------------------------------------------------------------------------------- /pkg/core/entity/res/fiscobcos/user/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/fiscobcos/user/register.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/event/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/event/query.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/event/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/event/register.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/event/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/event/remove.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/node/callContract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/node/callContract.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/node/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/node/common.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/node/getBlock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/node/getBlock.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/node/getTx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/node/getTx.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/node/upukCallContract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/node/upukCallContract.go -------------------------------------------------------------------------------- /pkg/core/entity/res/xuperchain/user/registerUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/entity/res/xuperchain/user/registerUser.go -------------------------------------------------------------------------------- /pkg/core/sign/bsnCrypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/sign/bsnCrypto.go -------------------------------------------------------------------------------- /pkg/core/trans/cita/pb/blockchain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/cita/pb/blockchain.pb.go -------------------------------------------------------------------------------- /pkg/core/trans/cita/pb/blockchain.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/cita/pb/blockchain.proto -------------------------------------------------------------------------------- /pkg/core/trans/cita/trans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/cita/trans.go -------------------------------------------------------------------------------- /pkg/core/trans/cita/txdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/cita/txdata.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/block.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/block_test.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/fab/proposer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/fab/proposer.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/request.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/trans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/trans.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/trans_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/trans_test.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/transactionHeader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/transactionHeader.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/utils/commonutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/utils/commonutils.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/utils/proputils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/utils/proputils.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/utils/txutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/utils/txutils.go -------------------------------------------------------------------------------- /pkg/core/trans/fabric/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fabric/utils/utils.go -------------------------------------------------------------------------------- /pkg/core/trans/fiscobcos/trans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fiscobcos/trans.go -------------------------------------------------------------------------------- /pkg/core/trans/fiscobcos/trans_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fiscobcos/trans_test.go -------------------------------------------------------------------------------- /pkg/core/trans/fiscobcos/txdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/fiscobcos/txdata.go -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/account/account_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/account/account_ext.go -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/account/account_ext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/account/account_ext_test.go -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/common/common.go -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/crypto/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/crypto/client.go -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/pb/chainedbft.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/pb/chainedbft.pb.go -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/pb/chainedbft.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/pb/chainedbft.proto -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/pb/xchain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/pb/xchain.pb.go -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/pb/xchain.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/pb/xchain.proto -------------------------------------------------------------------------------- /pkg/core/trans/xuperchain/trans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/core/trans/xuperchain/trans.go -------------------------------------------------------------------------------- /pkg/util/keystore/filekeystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/util/keystore/filekeystore.go -------------------------------------------------------------------------------- /pkg/util/keystore/fileusercertstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/util/keystore/fileusercertstore.go -------------------------------------------------------------------------------- /pkg/util/keystore/keystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/util/keystore/keystore.go -------------------------------------------------------------------------------- /pkg/util/keystore/userstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/pkg/util/keystore/userstore.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/readme.md -------------------------------------------------------------------------------- /readme_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSNDA/PCNGateway-Go-SDK/HEAD/readme_CN.md --------------------------------------------------------------------------------