mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
[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:
parent
d82037e01f
commit
6eadcb9074
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
8
blockchains/binance/validators/list.json
Normal file
8
blockchains/binance/validators/list.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
[
|
||||
{
|
||||
"id": "bnb18cy9pjf3ym239w5qec0kkeuktyywx8wpq3jt0c",
|
||||
"name": "DUMMY TEST Binance Validator",
|
||||
"description": "Dummy Sample Validator, for Testing",
|
||||
"website": "https://trustwallet.com"
|
||||
}
|
||||
]
|
|
@ -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 ["", ""];
|
||||
|
|
|
@ -41,7 +41,8 @@ export const stakingChains = [
|
|||
Tron,
|
||||
Waves,
|
||||
Kava,
|
||||
Terra
|
||||
Terra,
|
||||
Binance
|
||||
];
|
||||
export const chainsWithDenylist = ethForkChains.concat(
|
||||
Binance,
|
||||
|
|
Loading…
Reference in New Issue
Block a user