CW-551-Refactor-EVM-Chains (#1256)

* feat: Create central package for EVM chains

* chore: Cleanup pubspec and add core evm dependencies

* feat: Replicated core evm chain files, time to start fixing the issues

* feat: Setup evm central package to handle all evm chains

* feat: Link up Polygon and Ethereum wallets to the centra evm package, fix bugs and issues, and optimze for better performance

* feat: Setup and adjust configs to reflect new evm configurations

* Remove unneeded file

* fix: Changes done while re-reviewing entire structure and refactor

* fix: Add evm chain wallet path to imports in configure file

* feat: Adjust implementation of parent class, remove unneeded files, remove windows, linux and mac directories, restructure the evm child classes

* fix: Make EVMChainWallet a central abstract class and adjust accordingly

* fix: Adjust transaction info, restructure EVMWalletChain to be an abstract, adjust external facing interfaces for polygon and ethereum, adjust configuration for ethereum and polygon in configure file

* fix: Testing issues

* fix: Add localization for nft tile and details page texts and add dashes for null responses

* fix: merge conflicts

* Minor fixes for building Monero.com

---------

Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
This commit is contained in:
Adegoke David 2024-01-30 19:01:48 +01:00 committed by GitHub
parent b92ccb5c0b
commit 7410daacff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
90 changed files with 1775 additions and 2041 deletions

View file

@ -4,7 +4,7 @@ import 'utils/secret_key.dart';
import 'utils/utils.dart';
const configPath = 'tool/.secrets-config.json';
const ethereumConfigPath = 'tool/.ethereum-secrets-config.json';
const evmChainsConfigPath = 'tool/.evm-secrets-config.json';
Future<void> main(List<String> args) async => generateSecretsConfig(args);
@ -17,7 +17,7 @@ Future<void> generateSecretsConfig(List<String> args) async {
});
final configFile = File(configPath);
final ethereumConfigFile = File(ethereumConfigPath);
final evmChainsConfigFile = File(evmChainsConfigPath);
final secrets = <String, dynamic>{};
secrets.addAll(extraInfo);
@ -49,7 +49,7 @@ Future<void> generateSecretsConfig(List<String> args) async {
await configFile.writeAsString(secretsJson);
secrets.clear();
SecretKey.ethereumSecrets.forEach((sec) {
SecretKey.evmChainsSecrets.forEach((sec) {
if (secrets[sec.name] != null) {
return;
}
@ -59,5 +59,5 @@ Future<void> generateSecretsConfig(List<String> args) async {
secretsJson = JsonEncoder.withIndent(' ').convert(secrets);
await ethereumConfigFile.writeAsString(secretsJson);
await evmChainsConfigFile.writeAsString(secretsJson);
}