diff --git a/Cargo.lock b/Cargo.lock index 42f583a..39982b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -188,7 +188,7 @@ dependencies = [ [[package]] name = "anychain-ethereum" -version = "0.1.13" +version = "0.1.14" dependencies = [ "anychain-core", "ethabi", diff --git a/anychain-ethereum/Cargo.toml b/anychain-ethereum/Cargo.toml index 781019b..f8dab5e 100644 --- a/anychain-ethereum/Cargo.toml +++ b/anychain-ethereum/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "anychain-ethereum" description = "A Rust library for Ethereum-focused cryptocurrency wallets, enabling seamless transactions on the Ethereum blockchain" -version = "0.1.13" +version = "0.1.14" keywords = ["blockchain", "crypto", "cryptocurrencies", "ethereum", "wallet"] # Workspace inherited keys diff --git a/anychain-ethereum/src/transaction.rs b/anychain-ethereum/src/transaction.rs index 1e79698..1f4370f 100644 --- a/anychain-ethereum/src/transaction.rs +++ b/anychain-ethereum/src/transaction.rs @@ -121,7 +121,7 @@ impl EthereumTransactionParameters { "function": "transfer", "params": { "to": to, - "amount": amount + "amount": amount.to_string(), } })) }