Skip to content

Commit

Permalink
Add staking tokens pt1 (#31)
Browse files Browse the repository at this point in the history
* Add code to validate schema of the tokenlist

* Move schema validation to pretest script

* Keep data when throwing errors

* Add initial list of staking tokens

* 1.6.0
  • Loading branch information
gndelia authored Jan 27, 2025
1 parent 27d7b89 commit c5ae415
Show file tree
Hide file tree
Showing 9 changed files with 750 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hemilabs/token-list",
"version": "1.5.1",
"version": "1.6.0",
"description": "List of ERC-20 tokens in the Hemi Network chains",
"bugs": {
"url": "https://github.com/hemilabs/token-list/issues"
Expand Down
78 changes: 75 additions & 3 deletions src/hemi.tokenlist.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "Hemi Token List",
"timestamp": "2025-01-22T20:42:04.584Z",
"timestamp": "2025-01-24T14:24:44.166Z",
"version": {
"major": 1,
"minor": 5,
"patch": 1
"minor": 6,
"patch": 0
},
"tokens": [
{
Expand Down Expand Up @@ -352,6 +352,78 @@
"logoURI": "https://raw.githubusercontent.com/hemilabs/token-list/master/src/logos/hbtc.svg",
"name": "HemiBitcoin",
"symbol": "hBTC"
},
{
"address": "0x9BFA177621119e64CecbEabE184ab9993E2ef727",
"chainId": 43111,
"decimals": 18,
"extensions": {
"birthBlock": 849309,
"protocol": "merlinChain"
},
"logoURI": "https://raw.githubusercontent.com/hemilabs/token-list/master/src/logos/m-btc.svg",
"name": "Merlin BTC",
"symbol": "M-BTC"
},
{
"address": "0x8154Aaf094c2f03Ad550B6890E1d4264B5DdaD9A",
"chainId": 43111,
"decimals": 18,
"logoURI": "https://raw.githubusercontent.com/hemilabs/token-list/master/src/logos/ibtc.svg",
"name": "iBTC",
"symbol": "iBTC",
"extensions": {
"birthBlock": 629450,
"protocol": "exSat"
}
},
{
"address": "0x6A9A65B84843F5fD4aC9a0471C4fc11AFfFBce4a",
"chainId": 43111,
"decimals": 8,
"logoURI": "https://raw.githubusercontent.com/hemilabs/token-list/master/src/logos/enzobtc.svg",
"name": "Lorenzo Wrapped Bitcoin",
"symbol": "enzoBTC",
"extensions": {
"birthBlock": 734357,
"protocol": "lorenzo"
}
},
{
"address": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3",
"chainId": 43111,
"decimals": 18,
"logoURI": "https://raw.githubusercontent.com/hemilabs/token-list/master/src/logos/stbtc.svg",
"name": "Lorenzo stBTC",
"symbol": "stBTC",
"extensions": {
"birthBlock": 619947,
"protocol": "lorenzo"
}
},
{
"address": "0xF469fBD2abcd6B9de8E169d128226C0Fc90a012e",
"chainId": 43111,
"decimals": 8,
"logoURI": "https://raw.githubusercontent.com/hemilabs/token-list/master/src/logos/pumpbtc.svg",
"name": "pumpBTC",
"symbol": "pumpBTC",
"extensions": {
"birthBlock": 595343,
"protocol": "pumpBtc"
}
},
{
"address": "0x78E26E8b953C7c78A58d69d8B9A91745C2BbB258",
"chainId": 43111,
"decimals": 18,
"logoURI": "https://raw.githubusercontent.com/hemilabs/token-list/master/src/logos/ubtc.svg",
"name": "uBTC",
"symbol": "uBTC",
"extensions": {
"birthBlock": 792952,
"protocol": "uniRouter"
}
}
]
}
33 changes: 33 additions & 0 deletions src/logos/enzobtc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions src/logos/ibtc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions src/logos/m-btc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c5ae415

Please sign in to comment.