Update cw_ethereum/lib/deuro/deuro_savings.dart

Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com>
This commit is contained in:
Omar Hatem 2025-06-27 17:27:12 +03:00 committed by GitHub
parent d6a30beb42
commit aa9526f0e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -83,7 +83,7 @@ class DEuro {
contractAddress: _savingsGateway.self.address.hexEip55, contractAddress: _savingsGateway.self.address.hexEip55,
receivingAddressHex: _savingsGateway.self.address.hexEip55, receivingAddressHex: _savingsGateway.self.address.hexEip55,
priority: priority, priority: priority,
data: _savingsGateway.self.abi.functions[17].encodeCall([amount, frontendCode]), data: _savingsGateway.self.abi.functions[17].encodeCall([amount, hexToBytes(frontendCode)]),
); );
final sendTransaction = () => _wallet.getWeb3Client()!.sendRawTransaction(signedTransaction); final sendTransaction = () => _wallet.getWeb3Client()!.sendRawTransaction(signedTransaction);