Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

開発方針の決定 #4

Open
shohu opened this issue Jun 5, 2019 · 6 comments
Open

開発方針の決定 #4

shohu opened this issue Jun 5, 2019 · 6 comments

Comments

@shohu
Copy link
Owner

shohu commented Jun 5, 2019

server レンダリングタイプでサイト構築する。

スクリーンショット 2019-06-05 9 58 32

nodeのフレームワークは AdonisJs を使用

@shohu
Copy link
Owner Author

shohu commented Jun 5, 2019

以下2案で迷った結果、SSRで試してみる。たぶんプロトタイプには向いてるはず、何かと。

案1. SSR

スクリーンショット 2019-06-05 9 58 32

案2. SPA

スクリーンショット 2019-06-05 10 35 00

  1. ブロックチェーンにアクセスするためのfabric-api サーバーを作成する
  2. 1のapiサーバーをreactで呼び出す

@shohu
Copy link
Owner Author

shohu commented Jun 5, 2019

SSRでの進め方

  1. fabric-sampleのcommercial-paperのmagnetcorp構成をコピーしてつくる
  2. applicationの部分をおそらくAdonisJsのプロジェクトに置き換えてしまえばOKな感じか。

一旦、AdonisJsはいれないで、以下のestate, estate owner history, owner を データ登録できるようなscriptを作成してみる。

スクリーンショット 2019-06-05 10 43 25

@shohu
Copy link
Owner Author

shohu commented Jun 5, 2019

commercial-paperのmagnetcorpをコピーして一旦動かす

issue.js までやってみる。

base network

$ cd basic-network/
$ ./start.sh

monitor起動

以下はずっと起動しっぱなしになる。

$ cd estate/configuration/cli/
$ ./monitordocker.sh net_basic

fabric-toolsの起動

hyperledgerとコミュニケーション取るためのもの

$ cd estate/configuration/cli
$ docker-compose -f docker-compose.yml up -d cliMagnetoCorp
Creating cliMagnetoCorp ... done

chaincodeのインストール

peer chaincode install を cliMagnetoCorp で実行する

$ docker exec cliMagnetoCorp peer chaincode install -n papercontract -v 0 -p /opt/gopath/src/github.com/contract -l node
2019-06-05 02:33:58.626 UTC [chaincodeCmd] checkChaincodeCmdParams -> INFO 001 Using default escc
2019-06-05 02:33:58.627 UTC [chaincodeCmd] checkChaincodeCmdParams -> INFO 002 Using default vscc
2019-06-05 02:33:58.735 UTC [chaincodeCmd] install -> INFO 003 Installed remotely response:<status:200 payload:"OK" >

chaincodeのinstantiate

chaincodeを動かすためのdockerコンテナをたちあげる

スクリーンショット 2019-06-05 11 43 19
peer chaincode instantiate を cliMagnetoCorpで実施する。

docker exec cliMagnetoCorp peer chaincode instantiate -n papercontract -v 0 -l node -c '{"Args":["org.papernet.commercialpaper:instantiate"]}' -C mychannel -P "AND ('Org1MSP.member')"

issue.js 動かす

$ cd estate/application
$ npm install

wallet追加

$ node addToWallet.js
done

issue.js実行

$ node issue.js
Connect to Fabric gateway.
Use network channel: mychannel.
Use org.papernet.commercialpaper smart contract.
Submit commercial paper issue transaction.
Process issue transaction response.
MagnetoCorp commercial paper : 00001 successfully issued for value 5000000
Transaction complete.
Disconnect from Fabric gateway.
Issue program complete.

次は smartcontractを変更して、
estate, estate-owner-history, owner
のデータ定義をして、それぞれを登録するsampleを作成してみる。

@shohu
Copy link
Owner Author

shohu commented Jun 5, 2019

wallet作成について

commercial-paperのwalletは、2つのaddToWallet.js で追加されている。
digibank と magnetcorp それぞれのディレクトリで。
事前にidentifyファイル作成されているのをそのまま使っている。

ただ、これらを使えば2ユーザーのwalletが一旦できる。

@shohu
Copy link
Owner Author

shohu commented Jun 5, 2019

@shohu
Copy link
Owner Author

shohu commented Jun 6, 2019

以下のblockchain部分を1つのスキーマにする。

スクリーンショット 2019-06-06 10 34 30

イメージは以下

key: "EST-XXXXX"
{
  name: "test property 1",
  category: "hotel",
  price: 10,000,000 YEN,
  partisionsNumber: 100,
  devideTerm: 6,
  histories [{
    usercode: 12,
    amount: 10000,
    purchasedAt: "2018-01-01"
  },
  {
    usercode: 15,
    amount: 2000,
    purchasedAt: "2018-01-01"
  }]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant