Skip to content

Commit ce8cb3a

Browse files
committed
cw20-hooks and dao-cw20-transfer-rules
1 parent 3ab7017 commit ce8cb3a

File tree

60 files changed

+7413
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+7413
-138
lines changed

Cargo.lock

+56-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ prost-types = { version = "0.12.3", default-features = false }
6363
quote = "1.0"
6464
rand = "0.8"
6565
schemars = "0.8"
66+
semver = "1.0"
6667
serde = { version = "1.0", default-features = false, features = ["derive"] }
6768
serde-cw-value = "0.7"
6869
serde_json = "1.0"
@@ -90,6 +91,7 @@ cw-tokenfactory-issuer = { path = "./contracts/external/cw-tokenfactory-issuer",
9091
cw-tokenfactory-types = { path = "./packages/cw-tokenfactory-types", version = "2.4.2", default-features = false }
9192
cw-vesting = { path = "./contracts/external/cw-vesting", version = "2.4.2" }
9293
cw-wormhole = { path = "./packages/cw-wormhole", version = "2.4.2" }
94+
cw20-hooks = { path = "./contracts/external/cw20-hooks", version = "2.4.2" }
9395
cw20-stake = { path = "./contracts/staking/cw20-stake", version = "2.4.2" }
9496
cw721-controllers = { path = "./packages/cw721-controllers", version = "2.4.2" }
9597
cw721-roles = { path = "./contracts/external/cw721-roles", version = "2.4.2" }

ci/bootstrap-env/src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fn main() -> Result<()> {
5757
code_id: orc.contract_map.code_id("dao_voting_cw20_staked")?,
5858
msg: to_json_binary(&dao_voting_cw20_staked::msg::InstantiateMsg {
5959
token_info: dao_voting_cw20_staked::msg::TokenInfo::New {
60-
code_id: orc.contract_map.code_id("cw20_base")?,
60+
code_id: orc.contract_map.code_id("cw20_hooks")?,
6161
label: "DAO DAO Gov token".to_string(),
6262
name: "DAO".to_string(),
6363
symbol: "DAO".to_string(),
@@ -147,7 +147,7 @@ fn main() -> Result<()> {
147147

148148
println!(
149149
"NEXT_PUBLIC_CW20_CODE_ID={}",
150-
orc.contract_map.code_id("cw20_base")?
150+
orc.contract_map.code_id("cw20_hooks")?
151151
);
152152
println!(
153153
"NEXT_PUBLIC_CW4GROUP_CODE_ID={}",

ci/integration-tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = { workspace = true }
1212
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1313
cosm-orc = { workspace = true }
1414
cw20 = { workspace = true }
15-
cw20-base = { workspace = true }
15+
cw20-hooks = { workspace = true }
1616
cw721-base = { workspace = true }
1717
cw721-roles = { workspace = true }
1818
cw721 = { workspace = true }

ci/integration-tests/src/helpers/helper.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pub fn create_dao(
4141
code_id: chain.orc.contract_map.code_id("dao_voting_cw20_staked")?,
4242
msg: to_json_binary(&dao_voting_cw20_staked::msg::InstantiateMsg {
4343
token_info: dao_voting_cw20_staked::msg::TokenInfo::New {
44-
code_id: chain.orc.contract_map.code_id("cw20_base")?,
44+
code_id: chain.orc.contract_map.code_id("cw20_hooks")?,
4545
label: "DAO DAO Gov token".to_string(),
4646
name: "DAO".to_string(),
4747
symbol: "DAO".to_string(),
@@ -106,7 +106,7 @@ pub fn create_dao(
106106
.orc
107107
.instantiate("dao_dao_core", op_name, &msg, key, None, vec![])?;
108108

109-
// add proposal, pre-propose, voting, cw20_stake, and cw20_base
109+
// add proposal, pre-propose, voting, cw20_stake, and cw20_hooks
110110
// contracts to the orc contract map.
111111

112112
let state: DumpStateResponse = chain
@@ -160,7 +160,7 @@ pub fn create_dao(
160160
.contract_map
161161
.add_address("cw20_stake", cw20_stake)
162162
.unwrap();
163-
let cw20_base: String = chain
163+
let cw20_hooks: String = chain
164164
.orc
165165
.query(
166166
"dao_voting_cw20_staked",
@@ -172,7 +172,7 @@ pub fn create_dao(
172172
chain
173173
.orc
174174
.contract_map
175-
.add_address("cw20_base", cw20_base)
175+
.add_address("cw20_hooks", cw20_hooks)
176176
.unwrap();
177177

178178
Ok(DaoState {
@@ -185,7 +185,7 @@ pub fn stake_tokens(chain: &mut Chain, how_many: u128, key: &SigningKey) {
185185
chain
186186
.orc
187187
.execute(
188-
"cw20_base",
188+
"cw20_hooks",
189189
"send_and_stake_cw20",
190190
&cw20::Cw20ExecuteMsg::Send {
191191
contract: chain.orc.contract_map.address("cw20_stake").unwrap(),
@@ -221,8 +221,8 @@ pub fn create_proposal(
221221
chain
222222
.orc
223223
.execute(
224-
"cw20_base",
225-
"cw20_base_increase_allowance",
224+
"cw20_hooks",
225+
"cw20_hooks_increase_allowance",
226226
&cw20::Cw20ExecuteMsg::IncreaseAllowance {
227227
spender: chain
228228
.orc

ci/integration-tests/src/tests/cw20_stake_test.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ fn execute_stake_tokens(chain: &mut Chain) {
6969
chain
7070
.orc
7171
.contract_map
72-
.add_address("cw20_base", config.token_address.as_str())
72+
.add_address("cw20_hooks", config.token_address.as_str())
7373
.unwrap();
7474
chain
7575
.orc
7676
.execute(
77-
"cw20_base",
77+
"cw20_hooks",
7878
"exc_stake_stake_tokens",
79-
&cw20_base::msg::ExecuteMsg::Send {
79+
&cw20_hooks::msg::ExecuteMsg::Send {
8080
contract: staking_addr,
8181
amount: Uint128::new(100),
8282
msg: to_json_binary(&cw20_stake::msg::ReceiveMsg::Stake {}).unwrap(),

contracts/dao-dao-core/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ cw-core-v1 = { workspace = true, features = ["library"] }
3232

3333
[dev-dependencies]
3434
cw-multi-test = { workspace = true, features = ["stargate"] }
35-
cw20-base = { workspace = true }
35+
cw20-hooks = { workspace = true }
3636
cw721-base = { workspace = true }
3737
dao-proposal-sudo = { workspace = true }
3838
dao-voting-cw20-balance = { workspace = true }
39+
dao-testing = { workspace = true }

0 commit comments

Comments
 (0)