mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
10 lines
267 B
Dart
10 lines
267 B
Dart
import 'package:stackwallet/models/ethereum/eth_token.dart';
|
|
|
|
class Erc721ContractInfo extends EthContractInfo {
|
|
const Erc721ContractInfo({
|
|
required super.contractAddress,
|
|
required super.name,
|
|
required super.symbol,
|
|
required super.decimals,
|
|
});
|
|
}
|