mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
feat: Migrate to EtherScan v2 API for supported EVM chains (#2264)
This commit is contained in:
parent
d356d5bfcb
commit
1aac17676d
3 changed files with 18 additions and 12 deletions
|
@ -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,
|
||||
},
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue