Skip to content

Commit

Permalink
Merge pull request #2 from rsksmart/inv-coin
Browse files Browse the repository at this point in the history
Add INV, rDai and Token Bridge
  • Loading branch information
ilanolkies authored Apr 23, 2020
2 parents 262495a + 7e8fb7c commit 47d0b4b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion contract-map.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,22 @@
"0x45d3E4fB311982a06ba52359d44cB4f5980e0ef1": {
"name": "RIF Name Service",
"logo": "rif.png",
"erc20": true,
"erc20": false,
"symbol": "RNS",
"decimals": 0
},
"0xe0CFF8a40f540657c62EB4CAC34b915e5ed8d8FF": {
"name": "Invecoin",
"logo": "inv.png",
"erc20": true,
"symbol": "INV",
"decimals": 18
},
"0x6B1a73d547F4009A26B8485b63D7015D248AD406": {
"name": "Dai Stablecoin",
"logo": "dai.png",
"erc20": true,
"symbol": "rDAI",
"decimals": 18
}
}
Binary file added images/dai.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/inv.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ test('logos path names should not contain space', function (t) {
t.end()
})

test('symbols should be five or less characters', function (t) {
test('symbols should be nine or less characters', function (t) {
Object.keys(contractMap).forEach(address => {
const contract = contractMap[address]
const symbol = contract.symbol
if (symbol) {
t.notOk(symbol.length > 5, `symbol with more than 5 characters: "${symbol}"`)
t.notOk(symbol.length > 9, `symbol with more than 9 characters: "${symbol}"`)
}
})
t.end()
Expand Down

0 comments on commit 47d0b4b

Please sign in to comment.