diff --git a/Cargo.lock b/Cargo.lock index e373e94..f06273f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3340,8 +3340,8 @@ dependencies = [ [[package]] name = "namada_core" -version = "0.29.0" -source = "git+https://github.com/anoma/namada?tag=v0.29.0#76840b5dbe1a335f45fd468ff3636825dce9df89" +version = "0.30.0" +source = "git+https://github.com/anoma/namada?tag=v0.30.0#ec58c897e265ecdb56c5d5506c8ac8e4beaaf9d7" dependencies = [ "ark-bls12-381", "ark-serialize", @@ -3391,8 +3391,8 @@ dependencies = [ [[package]] name = "namada_ethereum_bridge" -version = "0.29.0" -source = "git+https://github.com/anoma/namada?tag=v0.29.0#76840b5dbe1a335f45fd468ff3636825dce9df89" +version = "0.30.0" +source = "git+https://github.com/anoma/namada?tag=v0.30.0#ec58c897e265ecdb56c5d5506c8ac8e4beaaf9d7" dependencies = [ "borsh", "borsh-ext", @@ -3408,13 +3408,14 @@ dependencies = [ "tendermint", "tendermint-proto", "tendermint-rpc", + "thiserror", "tracing", ] [[package]] name = "namada_macros" -version = "0.29.0" -source = "git+https://github.com/anoma/namada?tag=v0.29.0#76840b5dbe1a335f45fd468ff3636825dce9df89" +version = "0.30.0" +source = "git+https://github.com/anoma/namada?tag=v0.30.0#ec58c897e265ecdb56c5d5506c8ac8e4beaaf9d7" dependencies = [ "proc-macro2", "quote", @@ -3423,8 +3424,8 @@ dependencies = [ [[package]] name = "namada_proof_of_stake" -version = "0.29.0" -source = "git+https://github.com/anoma/namada?tag=v0.29.0#76840b5dbe1a335f45fd468ff3636825dce9df89" +version = "0.30.0" +source = "git+https://github.com/anoma/namada?tag=v0.30.0#ec58c897e265ecdb56c5d5506c8ac8e4beaaf9d7" dependencies = [ "borsh", "data-encoding", @@ -3438,8 +3439,8 @@ dependencies = [ [[package]] name = "namada_sdk" -version = "0.29.0" -source = "git+https://github.com/anoma/namada?tag=v0.29.0#76840b5dbe1a335f45fd468ff3636825dce9df89" +version = "0.30.0" +source = "git+https://github.com/anoma/namada?tag=v0.30.0#ec58c897e265ecdb56c5d5506c8ac8e4beaaf9d7" dependencies = [ "async-trait", "bimap", diff --git a/Cargo.toml b/Cargo.toml index 2208511..f9c0969 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ rand = "0.8.5" rand_chacha = "0.3.1" dotenvy = "0.15.7" hex = "0.4.3" -namada_sdk = { git = "https://github.com/anoma/namada", tag = "v0.29.0", default-features = false, features = ["tendermint-rpc", "std", "async-client", "async-send", "download-params"] } +namada_sdk = { git = "https://github.com/anoma/namada", tag = "v0.30.0", default-features = false, features = ["tendermint-rpc", "std", "async-client", "async-send", "download-params"] } tendermint-config = "0.34.0" tendermint-rpc = { version = "0.34.0", features = ["http-client"]} orion = "0.17.5" diff --git a/src/handler/faucet.rs b/src/handler/faucet.rs index 3f967c4..c1188ee 100644 --- a/src/handler/faucet.rs +++ b/src/handler/faucet.rs @@ -111,6 +111,8 @@ pub async fn request_transfer( InputAmount::Unvalidated(denominated_amount), ); + transfer_tx_builder.tx.memo = Some("Transfer from faucet".to_string().as_bytes().to_vec()); + let (mut transfer_tx, signing_data, _epoch) = transfer_tx_builder .build(&*state.sdk) .await