a sample service for LINE Blockchain Platform
the project has a naive implementation for the sake of simplicity.
please expect:
- poor exception handling
- volatile session
- no storage
- copy-n-pasted snippets
LBP_API_KEY
: API Key assigned at service creationLBP_API_SECRET
: API Secret assigned at service creationLBP_ENDPOINT
:https://test-api.blockchain.line.me
(cashew) orhttps://api.blockchain.line.me
(daphne)LBP_OWNER_WALLET_ADDRESS
: an owner wallet addressLBP_OWNER_WALLET_SECRET
: a wallet secret for the owner walletLBP_CONTRACT_ID_LBCC
: a Contract ID forLBCC
(LINE Blockchain Coffee Coin)LBP_CONTRACT_ID_ITEM
: a Contract ID for Item tokensLBP_TOKEN_TYPE_LBCR
: a Token type forLBCR
(LINE Blockchain Coffee Reward)
LINE_LOGIN_CHANNEL_ID
: Channel ID (a.k.a.client_id
) for LINE LoginLINE_LOGIN_CHANNEL_SECRET
: Channel secret used in LINE Login to exchangecode
toacccess token
LINE_LOGIN_CALLBACK_URL
: a redirect URL defined in OAuth 2.0 e.g) http://localhost:3000/api/oauth/callback
# install dependencies
$ npm install
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm run build
$ npm run start
# generate static project
$ npm run generate