2021-03-16 13:20:46 +00:00
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:io';
|
|
|
|
import 'utils/secret_key.dart';
|
|
|
|
import 'utils/utils.dart';
|
|
|
|
|
|
|
|
const configPath = 'tool/.secrets-config.json';
|
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>
2024-01-30 18:01:48 +00:00
|
|
|
const evmChainsConfigPath = 'tool/.evm-secrets-config.json';
|
2021-03-16 13:20:46 +00:00
|
|
|
|
|
|
|
Future<void> main(List<String> args) async => generateSecretsConfig(args);
|
|
|
|
|
|
|
|
Future<void> generateSecretsConfig(List<String> args) async {
|
2023-08-04 17:01:49 +00:00
|
|
|
final extraInfo = args.fold(<String, dynamic>{}, (Map<String, dynamic> acc, String arg) {
|
2021-03-16 13:20:46 +00:00
|
|
|
final parts = arg.split('=');
|
|
|
|
final key = normalizeKeyName(parts[0]);
|
|
|
|
acc[key] = acc[key] = parts.length > 1 ? parts[1] : 1;
|
|
|
|
return acc;
|
|
|
|
});
|
|
|
|
|
|
|
|
final configFile = File(configPath);
|
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>
2024-01-30 18:01:48 +00:00
|
|
|
final evmChainsConfigFile = File(evmChainsConfigPath);
|
2021-03-16 13:20:46 +00:00
|
|
|
final secrets = <String, dynamic>{};
|
|
|
|
|
|
|
|
secrets.addAll(extraInfo);
|
|
|
|
secrets.removeWhere((key, dynamic value) {
|
|
|
|
if (key.contains('--')) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (configFile.existsSync()) {
|
|
|
|
if (extraInfo['--force'] == 1) {
|
|
|
|
await configFile.delete();
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SecretKey.base.forEach((sec) {
|
|
|
|
if (secrets[sec.name] != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
secrets[sec.name] = sec.generate();
|
|
|
|
});
|
|
|
|
|
2023-08-04 17:01:49 +00:00
|
|
|
var secretsJson = JsonEncoder.withIndent(' ').convert(secrets);
|
2021-03-16 13:20:46 +00:00
|
|
|
await configFile.writeAsString(secretsJson);
|
2023-08-04 17:01:49 +00:00
|
|
|
|
|
|
|
secrets.clear();
|
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>
2024-01-30 18:01:48 +00:00
|
|
|
SecretKey.evmChainsSecrets.forEach((sec) {
|
2023-08-04 17:01:49 +00:00
|
|
|
if (secrets[sec.name] != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
secrets[sec.name] = sec.generate();
|
|
|
|
});
|
|
|
|
|
|
|
|
secretsJson = JsonEncoder.withIndent(' ').convert(secrets);
|
|
|
|
|
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>
2024-01-30 18:01:48 +00:00
|
|
|
await evmChainsConfigFile.writeAsString(secretsJson);
|
2021-03-16 13:20:46 +00:00
|
|
|
}
|