https://github.com/earthskyorg/baza-interface
Baza Interface
https://github.com/earthskyorg/baza-interface
Last synced: 3 months ago
JSON representation
Baza Interface
- Host: GitHub
- URL: https://github.com/earthskyorg/baza-interface
- Owner: earthskyorg
- Created: 2022-10-29T12:45:41.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-29T12:46:42.000Z (over 2 years ago)
- Last Synced: 2025-01-19T23:31:31.971Z (5 months ago)
- Language: Vue
- Size: 363 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# baza-interface
It's a light client to run your NFT marketplace based on Bazarion Protocol.
## Setup
Clone this source code. Then downloading dependencies.
```
npm install
```## Configuration
Updating your market information (`ft`, `nft`) in the config file `src/config.js`.- `ft`: ERC20 token address
- `nft`: NFT token addressNote: Before updating the file, you have to list your market in [Bazarion](https://app.bazarion.org).
For example, with the config file below:
```
cat src/config.js
const config = {
apiBaseUrl: 'https://app.bazarion.org/',
ft: 'TOMO',
nft: '0xf697F0fe68f9D1e5AdcaDF723b232eBd601e59b0',
chainId: 88
}
```We have TomoPunks market: [https://tomopunks.bazarion.org](https://tomopunks.bazarion.org)
### Development
```
npm run serve
```### Production
```
npm run build
```### Customization
You can build your own UI by updating CSS, HTML.Or you only update logo `src/assets/logo.png`.