go-bitsong
go-bitsong copied to clipboard
:rocket: Official BitSong Blockchain Implementation in Go
We need to allow FanToken symbols also starting with numbers. We have to adapt this particular regex: https://github.com/bitsongofficial/go-bitsong/blob/1f74dd4595ea2187105dae0065d79ae5564d3d97/x/fantoken/types/validation.go#L37 Ex: ^[a-z][a-z0-9]{%d,%d}$ Should be: ^[a-z0-9]{%d,%d}$
In the bigbang-test-2 chain: If I issue a token w/ an already taken name, it gives me an "Denom Already Exists" error. I created this token: (Tx Hash: F1EADFF4B01E1A563EF7C58CCE669C0869C95926A44E9DC242D9990A868BC938) `bitsongd...
We need to reduce the minimum length for Fan Tokens symbol to 2. This could suit the requests for some specific symbols like D9 (Delta 9). https://github.com/bitsongofficial/go-bitsong/blob/1f74dd4595ea2187105dae0065d79ae5564d3d97/x/fantoken/types/validation.go#L14
- refactor: makefile refactor and improvements - feat: add docker support - fix: proto generate - fix: swagger support Todo - update changelog - update version tag
- Add testnet command - Add testnet genesis
Move modules from `bitsongofficial/chainmodules` to `bitsongofficial/go-bitsong` - [ ] Fantoken module
Add following commands in the Makefile build-docker-go-bitsong localnet-start localnet-stop
The `issue-fee` should be an `sdk.Coin` string, example: `--issue-fee 1ubtsg` and not `--issue-fee 1` Command: `bitsongd tx fantoken issue --name Angelo --symbol angelo --max-supply 1000 --issue-fee 1000000 --from validator --chain-id...