Skip to content

Commit

Permalink
fix proto msg type urls
Browse files Browse the repository at this point in the history
  • Loading branch information
sotnikov-s committed Nov 28, 2023
1 parent 9a59bb8 commit 71dcd98
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/neutron-sdk/src/stargate/msg_dex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ use prost_types::Timestamp as TimestampGen;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

const DEPOSIT_MSG_PATH: &str = "/neutron.dex.Msg/Deposit";
const WITHDRAWAL_MSG_PATH: &str = "/neutron.dex.Msg/Withdrawal";
const PLACE_LIMIT_ORDER_MSG_PATH: &str = "/neutron.dex.Msg/PlaceLimitOrder";
const WITHDRAW_FILLED_LIMIT_ORDER_MSG_PATH: &str = "/neutron.dex.Msg/WithdrawFilledLimitOrder";
const CANCEL_LIMIT_ORDER_MSG_PATH: &str = "/neutron.dex.Msg/CancelLimitOrder";
const MULTI_HOP_SWAP_MSG_PATH: &str = "/neutron.dex.Msg/MultiHopSwap";
const DEPOSIT_MSG_PATH: &str = "neutron.dex.MsgDeposit";
const WITHDRAWAL_MSG_PATH: &str = "neutron.dex.MsgWithdrawal";
const PLACE_LIMIT_ORDER_MSG_PATH: &str = "neutron.dex.MsgPlaceLimitOrder";
const WITHDRAW_FILLED_LIMIT_ORDER_MSG_PATH: &str = "neutron.dex.MsgWithdrawFilledLimitOrder";
const CANCEL_LIMIT_ORDER_MSG_PATH: &str = "neutron.dex.MsgCancelLimitOrder";
const MULTI_HOP_SWAP_MSG_PATH: &str = "neutron.dex.MsgMultiHopSwap";

pub fn msg_deposit(
info: MessageInfo,
Expand Down

0 comments on commit 71dcd98

Please sign in to comment.