Skip to content

Commit

Permalink
fix(shifter): use uint256
Browse files Browse the repository at this point in the history
  • Loading branch information
Unique-Divine committed Aug 14, 2023
1 parent 5fa2fdb commit 3172b59
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion artifacts/checksums.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
93bdd8cdc89ebbc8e29bc6a334483c45b507a6accfd2a4a0dc06a0bfcbc3ff05 incentives.wasm
c549f596f4faba0ef06eafb8fa56984ad0d6bd861e67e9a02ca612ada64904a5 lockup.wasm
c65ba2019c202f0e637201f6aa06ae9716145c9d0d2d7de0077ebfff59b2f130 pricefeed.wasm
a9328c1a53f52e279ea38f93d62102d92ace8234b7061e606df279a9cc9bc20c shifter.wasm
4b14545ff2641bdc2a66fd81cd72bd35eb29b3ed32fdedc935994e71b725c473 shifter.wasm
d76da8d1886f4f88655db753a4d91d29bf7cf0eed337e803ad28430e58b4642b token_vesting.wasm
2 changes: 1 addition & 1 deletion artifacts/checksums_intermediate.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ c8734717ed15d31870e1ef7b84c86ec1f3dbda4a559deb86a65c41e1654d59ed target/wasm32-
c90a93d49a68fc067f9e29e12fdbf49dcce92e96915c88b8f4d7c2a258ac85bb target/wasm32-unknown-unknown/release/incentives.wasm
48fab3b1295b9e274e7b31f5efe8c7fd91a16983ffcb1f403afdb6fd32958871 target/wasm32-unknown-unknown/release/lockup.wasm
d3e5b3b5c1e836d83d1106b839dc30ed6278f0f0a27c9181c94b8ae8b6554e5d target/wasm32-unknown-unknown/release/pricefeed.wasm
3b67e260906a1b510080c12028c1f2aee3ea87e30802e760307252f193c43c0b target/wasm32-unknown-unknown/release/shifter.wasm
a7c2a01a66685220cd51c2e9594b68d3ca06995edb2605284206637837ed30ee target/wasm32-unknown-unknown/release/token_vesting.wasm
d9097d423d8a8469e5f93d22f4b7b0f8c600bae8bcd60aff934554517798f38c target/wasm32-unknown-unknown/release/shifter.wasm
Binary file modified artifacts/shifter.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions contracts/shifter/src/msgs.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use cosmwasm_schema::cw_serde;
use cosmwasm_std::Decimal;
use cosmwasm_std::{Decimal, Uint256};

use crate::state::Whitelist;

Expand All @@ -12,7 +12,7 @@ pub struct InitMsg {
/// ExecuteMsg specifies the args for the execute entry point of the contract.
#[cw_serde]
pub enum ExecuteMsg {
DepthShift { pair: String, depth_mult: Decimal },
DepthShift { pair: String, depth_mult: Uint256 },
PegShift { pair: String, peg_mult: Decimal },
AddMember { address: String },
RemoveMember { address: String },
Expand Down

0 comments on commit 3172b59

Please sign in to comment.