Skip to content

Commit

Permalink
fixed getBlockchainsUrlsByBlockchainType urls
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturLevchuk committed Sep 14, 2024
1 parent 6e93d1b commit d666bb6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class AuroraBlockChainService implements BlockChainService {

@override
Set<String> getBlockchainsUrlsByBlockchainType() {
return EthereumBlockChainNetworkUrls.listOfUrls;
return AuroraBlockChainNetworkUrls.listOfUrls;
}

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class AvalancheBlockChainService implements BlockChainService {

@override
Set<String> getBlockchainsUrlsByBlockchainType() {
return EthereumBlockChainNetworkUrls.listOfUrls;
return AvalancheBlockChainNetworkUrls.listOfUrls;
}

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class BNBBlockChainService implements BlockChainService {

@override
Set<String> getBlockchainsUrlsByBlockchainType() {
return EthereumBlockChainNetworkUrls.listOfUrls;
return BNBBlockChainNetworkUrls.listOfUrls;
}

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class PolygonBlockChainService implements BlockChainService {

@override
Set<String> getBlockchainsUrlsByBlockchainType() {
return EthereumBlockChainNetworkUrls.listOfUrls;
return PolygonBlockChainNetworkUrls.listOfUrls;
}

@override
Expand Down

0 comments on commit d666bb6

Please sign in to comment.