[internal] Extend Binance chain with validators; add a dummy validator (#3720)

* Add Binance validators list, with a dummy value

* Add logo for Dummy binance validator.

* Add Binance as a validator chain

Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
This commit is contained in:
Adam R 2020-08-31 22:55:31 +02:00 committed by GitHub
parent d82037e01f
commit 6eadcb9074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,8 @@
[
{
"id": "bnb18cy9pjf3ym239w5qec0kkeuktyywx8wpq3jt0c",
"name": "DUMMY TEST Binance Validator",
"description": "Dummy Sample Validator, for Testing",
"website": "https://trustwallet.com"
}
]

View File

@ -38,7 +38,7 @@ export class Validators implements ActionInterface {
{
getName: () => { return "Make sure tests added for new staking chain"},
check: async (): Promise<[string, string]> => {
if (stakingChains.length != 7) {
if (stakingChains.length != 8) {
return [`Wrong number of staking chains ${stakingChains.length}`, ""];
}
return ["", ""];

View File

@ -41,7 +41,8 @@ export const stakingChains = [
Tron,
Waves,
Kava,
Terra
Terra,
Binance
];
export const chainsWithDenylist = ethForkChains.concat(
Binance,