feat: Migrate to EtherScan v2 API for supported EVM chains (#2264)

This commit is contained in:
David Adegoke 2025-05-22 22:32:18 +01:00 committed by GitHub
parent d356d5bfcb
commit 1aac17676d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 12 deletions

View file

@ -297,13 +297,14 @@ abstract class HomeSettingsViewModelBase with Store {
required bool isEthereum,
}) async {
final uri = Uri.https(
isEthereum ? "api.etherscan.io" : "api.polygonscan.com",
"/api",
"api.etherscan.io",
"/v2/api",
{
"chainid": isEthereum ? "1" : "137",
"module": "token",
"action": "tokeninfo",
"contractaddress": contractAddress,
"apikey": isEthereum ? secrets.etherScanApiKey : secrets.polygonScanApiKey,
"apikey": secrets.etherScanApiKey,
},
);
@ -338,13 +339,14 @@ abstract class HomeSettingsViewModelBase with Store {
required bool isEthereum,
}) async {
final uri = Uri.https(
isEthereum ? "api.etherscan.io" : "api.polygonscan.com",
"/api",
"api.etherscan.io",
"/v2/api",
{
"chainid": isEthereum ? "1" : "137",
"module": "contract",
"action": "getsourcecode",
"address": contractAddress,
"apikey": isEthereum ? secrets.etherScanApiKey : secrets.polygonScanApiKey,
"apikey": secrets.etherScanApiKey,
},
);