| 1 | import 'dart:typed_data'; |
| 2 | |
| 3 | import 'package:cw_evm/clients/evm_chain_client.dart'; |
| 4 | import 'package:web3dart/web3dart.dart'; |
| 5 | |
| 6 | class EthereumClient extends EVMChainClient { |
| 7 | EthereumClient() : super(chainId: 1); |
| 8 | |
| 9 | @override |
| 10 | Uint8List prepareSignedTransactionForSending(Uint8List signedTransaction) => |
| 11 | prependTransactionType(0x02, signedTransaction); |
| 12 | } |