Skip to content

Commit

Permalink
bump /external
Browse files Browse the repository at this point in the history
  • Loading branch information
hard-nett authored and Jake Hartnell committed Aug 14, 2024
1 parent c5995c0 commit 2478f28
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/cw-orch/src/external/admin_factory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ impl<Chain> Uploadable for DaoExternalAdminFactory<Chain> {
/// Return the path to the wasm file corresponding to the contract
fn wasm(_chain: &ChainInfoOwned) -> WasmPath {
artifacts_dir_from_workspace!()
.find_wasm_path("dao_admin_factory")
.find_wasm_path("cw_admin_factory")
.unwrap()
}
/// Returns a CosmWasm contract wrapper
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch/src/external/cw721_roles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ impl<Chain> Uploadable for DaoExternalCw721Roles<Chain> {
/// Return the path to the wasm file corresponding to the contract
fn wasm(_chain: &ChainInfoOwned) -> WasmPath {
artifacts_dir_from_workspace!()
.find_wasm_path("dao_cw721_roles")
.find_wasm_path("cw721_roles")
.unwrap()
}
/// Returns a CosmWasm contract wrapper
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch/src/external/cw_vesting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ impl<Chain> Uploadable for DaoExternalCwVesting<Chain> {
/// Return the path to the wasm file corresponding to the contract
fn wasm(_chain: &ChainInfoOwned) -> WasmPath {
artifacts_dir_from_workspace!()
.find_wasm_path("dao_cw_vesting")
.find_wasm_path("cw_vesting")
.unwrap()
}
/// Returns a CosmWasm contract wrapper
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch/src/external/payroll_factory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ impl<Chain> Uploadable for DaoExternalPayrollFactory<Chain> {
/// Return the path to the wasm file corresponding to the contract
fn wasm(_chain: &ChainInfoOwned) -> WasmPath {
artifacts_dir_from_workspace!()
.find_wasm_path("dao_payroll_factory")
.find_wasm_path("cw_payroll_factory")
.unwrap()
}
/// Returns a CosmWasm contract wrapper
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch/src/external/token_swap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ impl<Chain> Uploadable for DaoExternalTokenSwap<Chain> {
/// Return the path to the wasm file corresponding to the contract
fn wasm(_chain: &ChainInfoOwned) -> WasmPath {
artifacts_dir_from_workspace!()
.find_wasm_path("dao_tokenswap")
.find_wasm_path("cw_tokenswap")
.unwrap()
}
/// Returns a CosmWasm contract wrapper
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch/src/external/tokenfactory_issuer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ impl<Chain> Uploadable for DaoExternalTokenfactoryIssuer<Chain> {
/// Return the path to the wasm file corresponding to the contract
fn wasm(_chain: &ChainInfoOwned) -> WasmPath {
artifacts_dir_from_workspace!()
.find_wasm_path("dao_tokenfactory_issuer")
.find_wasm_path("cw_tokenfactory_issuer")
.unwrap()
}
/// Returns a CosmWasm contract wrapper
Expand Down

0 comments on commit 2478f28

Please sign in to comment.