Taylor 서버 Repository
티켓 판매자가 티켓을 등록하면 구매자가 원하는 가격을 제시한다. 제시 된 가격이 채택되면 블록체인에 티켓 가격과 소유자를 기록한다.
- 티켓 블록체인 생성 및 티켓 목록 조회
- 경매 시 채택되면 블록체인에 티켓 가격과 소유자를 업데이트하는 기능
테일러 어플의 주요 타겟층
은 선착순으로 티켓팅하는 대신에 금액을 더 지불하더라도 티켓을 구하고자 하는 사용자들 입니다.
테일러 어플의 기대효과는 티켓을 판매하는 티켓을 판매하는 주최측은 더 높은 수익을 올릴 수 있고, 구매자는 원하는 티켓을 구매해서 서로의 수요를 충족시키는 것입니다.
부가적인 효과는 선착순이라는 점을 이용해 티켓을 대거 구입해서 불법적으로 가격을 높여 이득을 취하는 현상을 일부 억제할 수 있습니다.
paper is a blockchain built using Cosmos SDK and Tendermint and created with Ignite CLI.
ignite chain serve
serve
command installs dependencies, builds, initializes, and starts your blockchain in development.
Your blockchain in development can be configured with config.yml
. To learn more, see the Ignite CLI docs.
Ignite CLI has scaffolded a Vue.js-based web app in the vue
directory. Run the following commands to install dependencies and start the app:
cd vue
npm install
npm run serve
The frontend app is built using the @starport/vue
and @starport/vuex
packages. For details, see the monorepo for Ignite front-end development.
To release a new version of your blockchain, create and push a new tag with v
prefix. A new draft release with the configured targets will be created.
git tag v0.1
git push origin v0.1
After a draft release is created, make your final changes from the release page and publish it.
To install the latest version of your blockchain node's binary, execute the following command on your machine:
curl https://get.ignite.com/username/paper@latest! | sudo bash
username/paper
should match the username
and repo_name
of the Github repository to which the source code was pushed. Learn more about the install process.