Skip to content

Commit

Permalink
Merge pull request #2 from comdex-official/binding_locking
Browse files Browse the repository at this point in the history
audit_branch
  • Loading branch information
dheerajkd30 authored Aug 29, 2022
2 parents bfaba0b + 72f5044 commit 9459a44
Show file tree
Hide file tree
Showing 8 changed files with 613 additions and 396 deletions.
14 changes: 7 additions & 7 deletions packages/bindings/src/msg.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use cosmwasm_std::{Coin, CosmosMsg, CustomMsg, Decimal, Uint128,Addr};
use cosmwasm_std::{Coin, CosmosMsg, CustomMsg, Decimal, Uint128};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

Expand Down Expand Up @@ -113,26 +113,26 @@ pub enum ComdexMessages {
},
MsgEmissionRewards {
app_id: u64,
emission_amount :u128,
amount :Uint128,
extended_pair : Vec<u64>,
voting_ratio: Vec<Uint128>
}
,
MsgFoundationEmission {
app_id: u64,
amount :u128,
foundation_address : Vec<Addr>,
amount :Uint128,
foundation_address : Vec<String>,
},

MsgRebaseMint {
app_id: u64,
amount :u128,
contract_addr : Addr,
amount :Uint128,
contract_addr : String,
},
MsgGetSurplusFund{
app_id: u64,
asset_id: u64,
contract_addr: Addr,
contract_addr: String,
amount: Coin,
}

Expand Down
Binary file not shown.
Loading

0 comments on commit 9459a44

Please sign in to comment.