Skip to content

Commit

Permalink
v0.10.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdogresorg committed Aug 23, 2023
1 parent 2b2da67 commit f5e400a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/actions/ISSUE.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ This example issues a TEST token with a max supply of 100, and a maximum mint of
- Additional `TICK` `ISSUE` transactions after first valid `TICK` `ISSUE`, will be considered invalid and ignored, unless broadcast from `token` owners address
- `DECIMALS` can not be changed after `token` supply is issued and/or minted
- `MAX_SUPPLY` max value is 1,000,000,000,000,000,000,000 (1 Sextillion)
- `LOCK_SUPPLY` can not be set to `1` and permanently locked unless `MAX_SUPPLY` is set to a non-zero number.
- `MAX_SUPPLY` can not be set below existing supply
- `LOCK_SUPPLY` can not be set to `1` and permanently locked until `MIN_TOKEN_SUPPLY` supply exists.

## Notes
- `ISSUE` `TICK` with `MAX_SUPPLY` and `MINT_SUPPLY` set to any non `0` value, to mint supply until `MAX_SUPPLY` is reached (owner can mint beyond `MAX_MINT`)
Expand Down
7 changes: 7 additions & 0 deletions indexer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
CHANGELOG
---
0.10.1
- set MIN_TOKEN_SUPPLY to 0.000000000000000001
- Prevent LOCK_SUPPLY if no supply is issued
- Prevent setting MAX_SUPPLY below current SUPPLY
- Updated getTokenSupply() to use CAST in sql queries
- Updated getAssetInfo() to only lookup assets using name

0.10.0 - Initial Release
- ISSUE support
- LIST support
Expand Down
2 changes: 1 addition & 1 deletion indexer/includes/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// BTNS Indexer Version
define("VERSION_MAJOR", 0);
define("VERSION_MINOR", 10);
define("VERSION_REVISION",0);
define("VERSION_REVISION",1);
define("VERSION_STRING", VERSION_MAJOR . '.' . VERSION_MINOR . '.' . VERSION_REVISION);

// TICK constants
Expand Down

0 comments on commit f5e400a

Please sign in to comment.