mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
d1870ba8b8
* chore: Initial setup for Tron Wallet * feat: Create Tron Wallet base flow implemented, keys, address, receive, restore and proxy classes all setup * feat: Display seed and key within the app * feat: Activate restore from key and seed for Tron wallet * feat: Add icon for tron wallet in wallet listing page * feat: Activate display of receive address for tron * feat: Fetch and display tron balance, sending transaction flow setup, fee limit calculation setup * feat: Implement sending of native tron, setup sending of trc20 tokens * chore: Rename function * Delete lib/tron/tron.dart * feat: Activate exchange for tron and its tokens, implement balance display for trc20 tokens and setup secrets configuration for tron * feat: Implement tron token management, add, remove, delete, and get tokens in home settings view, also minor cleanup * feat: Activate buy and sell for tron * feat: Implement restore from QR, transactions history listing for both native transactions and trc20 transactions * feat: Activate send all and do some minor cleanups * chore: Fix some lint infos and warnings * chore: Adjust configurations * ci: Modify CI to create and add secrets for node * fix: Fixes made while self reviewing the PR for this feature * feat: Add guide for adding new wallet types, and add fixes to requested changes * fix: Handle exceptions gracefully * fix: Alternative for trc20 estimated fee * fix: Fixes to display of amount and fee, removing clashes * fix: Fee calculation WIP * fix: Fix issue with handling of send all flow and display of amount and fee values before broadcasting transaction * fix: PR review fixes and fix merge conflicts * fix: Modify fetching assetOfTransaction [skip ci] * fix: Move tron settings migration to 33
63 lines
2.2 KiB
Dart
63 lines
2.2 KiB
Dart
import 'dart:convert';
|
|
import 'dart:io';
|
|
import 'utils/utils.dart';
|
|
|
|
const configPath = 'tool/.secrets-config.json';
|
|
const outputPath = 'lib/.secrets.g.dart';
|
|
|
|
const evmChainsConfigPath = 'tool/.evm-secrets-config.json';
|
|
const evmChainsOutputPath = 'cw_evm/lib/.secrets.g.dart';
|
|
|
|
const solanaConfigPath = 'tool/.solana-secrets-config.json';
|
|
const solanaOutputPath = 'cw_solana/lib/.secrets.g.dart';
|
|
|
|
const tronConfigPath = 'tool/.tron-secrets-config.json';
|
|
const tronOutputPath = 'cw_tron/lib/.secrets.g.dart';
|
|
Future<void> main(List<String> args) async => importSecretsConfig();
|
|
|
|
Future<void> importSecretsConfig() async {
|
|
final outputFile = File(outputPath);
|
|
final input = json.decode(File(configPath).readAsStringSync()) as Map<String, dynamic>;
|
|
final output = input.keys.fold('', (String acc, String val) => acc + generateConst(val, input));
|
|
|
|
final evmChainsOutputFile = File(evmChainsOutputPath);
|
|
final evmChainsInput =
|
|
json.decode(File(evmChainsConfigPath).readAsStringSync()) as Map<String, dynamic>;
|
|
final evmChainsOutput = evmChainsInput.keys
|
|
.fold('', (String acc, String val) => acc + generateConst(val, evmChainsInput));
|
|
|
|
final solanaOutputFile = File(solanaOutputPath);
|
|
final solanaInput =
|
|
json.decode(File(solanaConfigPath).readAsStringSync()) as Map<String, dynamic>;
|
|
final solanaOutput =
|
|
solanaInput.keys.fold('', (String acc, String val) => acc + generateConst(val, solanaInput));
|
|
|
|
final tronOutputFile = File(tronOutputPath);
|
|
final tronInput = json.decode(File(tronConfigPath).readAsStringSync()) as Map<String, dynamic>;
|
|
final tronOutput =
|
|
tronInput.keys.fold('', (String acc, String val) => acc + generateConst(val, tronInput));
|
|
|
|
if (outputFile.existsSync()) {
|
|
await outputFile.delete();
|
|
}
|
|
|
|
await outputFile.writeAsString(output);
|
|
|
|
if (evmChainsOutputFile.existsSync()) {
|
|
await evmChainsOutputFile.delete();
|
|
}
|
|
|
|
await evmChainsOutputFile.writeAsString(evmChainsOutput);
|
|
|
|
if (solanaOutputFile.existsSync()) {
|
|
await solanaOutputFile.delete();
|
|
}
|
|
|
|
await solanaOutputFile.writeAsString(solanaOutput);
|
|
|
|
if (tronOutputFile.existsSync()) {
|
|
await tronOutputFile.delete();
|
|
}
|
|
|
|
await tronOutputFile.writeAsString(tronOutput);
|
|
}
|