Skip to content

Commit 79c2bc5

Browse files
author
Weifan
committed
add bsn dist
1 parent 4ddab81 commit 79c2bc5

File tree

5 files changed

+474
-0
lines changed

5 files changed

+474
-0
lines changed

Diff for: .gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ local.mod
44
local.sum
55
**/local.mod
66
**/local.sum
7+
**/vendor
8+
*.exe
9+
*.zip

Diff for: dist/bsn/bsncc/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# A Distributing module for bsn
2+
3+
All of the chaincodes are under vendor folder
4+
5+
# Function list
6+
7+
## Tokens
8+
9+
+ TOKEN.INIT: *Invoke*
10+
+ TOKEN.TRANSFER: *Invoke*
11+
+ TOKEN.TRANSFER2: *Invoke*
12+
+ TOKEN.ASSIGN: *Invoke*
13+
+ TOKEN.BALANCEQUERY: *Query*
14+
+ TOKEN.GLOBALQUERY: *Query*
15+
16+
## ShareSubscription
17+
18+
+ CONTRACT.SUBSCRIPTION.NEW *Invoke*
19+
+ CONTRACT.SUBSCRIPTION.REDEEM *Invoke*
20+
+ CONTRACT.SUBSCRIPTION.QUERY *Invoke*
21+
+ CONTRACT.SUBSCRIPTION.QUERYONE *Invoke*

Diff for: dist/bsn/bsncc/go.mod

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module bsncc
2+
3+
go 1.14
4+
5+
require (
6+
github.com/hyperledger/fabric-chaincode-go v0.0.0-20200511190512-bcfeb58dd83a
7+
hyperledger.abchain.org/adapter/hyfabric v0.2.2
8+
hyperledger.abchain.org/example/ae v0.1.0
9+
)
10+

0 commit comments

Comments
 (0)