https://github.com/tarvos21/auction-interface
Interface for Auction Dapp on Starcoin Blockchain
https://github.com/tarvos21/auction-interface
blockchain dapp defi starcoin
Last synced: 8 months ago
JSON representation
Interface for Auction Dapp on Starcoin Blockchain
- Host: GitHub
- URL: https://github.com/tarvos21/auction-interface
- Owner: tarvos21
- License: mit
- Created: 2021-07-29T02:50:40.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-29T16:01:32.000Z (about 4 years ago)
- Last Synced: 2024-12-30T13:51:59.326Z (10 months ago)
- Topics: blockchain, dapp, defi, starcoin
- Language: JavaScript
- Homepage: https://auction.git.xin
- Size: 252 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Starmask Test Dapp
This is a simple test dapp for use in Starmask e2e tests and manual QA.
Currently hosted at [https://starmask-test-dapp.starcoin.org](https://starmask-test-dapp.starcoin.org).
## HTTPS
Online verison will only work if your Starcoin node URL protocol is HTTPS.
If you run it on your local machine, you could use a node URL with HTTP protocol.
Recommended way to add HTTPS to your Starcoin node is using [Caddy](https://caddyserver.com). Install it on your computer, create a Caddyfile in current directory, and run `caddy start`. Caddy will proxy requests to your node.
Example Caddyfile:
```
starcoin.your-domain.com {
reverse_proxy 127.0.0.1:9850
}
```## Development
1. Install dependencies
```
yarn
````2. Start local server
```
yarn start
```3. Open browser(Chrome/Safari/Firefox, etc), and go to http://localhost:9022
## Contract deployment and execution
Check the file `MyCounter.move` in this repo, try to deploy and execute it in the Starcoin command line, please refer to [Deploy move contract](https://developer.starcoin.org/en/tutorials/deploy_move_contract/).
After you get the address of the contract, you could execute it in this test-dapp.