refactor of money utils with new money2 package

This commit is contained in:
Arseni
2026-03-13 03:17:29 +03:00
parent b4eb1437f6
commit 0091191d97
72 changed files with 453 additions and 982 deletions

View File

@@ -1,12 +1,14 @@
import 'package:pshared/models/wallet/chain_asset.dart';
import 'package:pshared/models/payment/chain_network.dart';
class WalletAsset extends ChainAsset {
class WalletAsset {
final ChainNetwork chain;
final String tokenSymbol;
final String contractAddress;
const WalletAsset({
required super.chain,
required super.tokenSymbol,
required this.chain,
required this.tokenSymbol,
required this.contractAddress,
});
}