Skip to content

Commit 91dfc36

Browse files
jayantkJayant Krishnamurthy
andauthored
Move cosmwasm sdk into standard tree structure (#761)
* move cosmos sdk into standard tree structure * fix typo --------- Co-authored-by: Jayant Krishnamurthy <[email protected]>
1 parent 3aa953e commit 91dfc36

File tree

9 files changed

+4
-4
lines changed

9 files changed

+4
-4
lines changed

target_chains/cosmwasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
members = ["contracts/pyth", "pyth-sdk-cw"]
2+
members = ["contracts/pyth", "sdk/rust"]
33
exclude = ["examples/cw-contract"]
44

55
[profile.release]

target_chains/cosmwasm/contracts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This crate includes the actual contract for the CosmWasm ecosystem.
55
## Integration
66

77
You can use `pyth-sdk-cw` which has been published to crates.io to integrate with the Pyth contract.
8-
The sdk exposes data structures and testing utilities for ease of use. Please look into this [pyth-sdk-cw](https://github.com/pyth-network/pyth-crosschain/tree/main/target_chains/cosmwasm/pyth-sdk-cw)
8+
The sdk exposes data structures and testing utilities for ease of use. Please look into this [pyth-sdk-cw](https://github.com/pyth-network/pyth-crosschain/tree/main/target_chains/cosmwasm/sdk/rust)
99

1010
## Off-Chain Queries
1111

target_chains/cosmwasm/contracts/pyth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pyth-wormhole-attester-sdk = { path = "../../../../wormhole_attester/sdk/rust" }
3636
pyth-sdk = "0.7.0"
3737
byteorder = "1.4.3"
3838
cosmwasm-schema = "1.1.9"
39-
pyth-sdk-cw = { path = "../../pyth-sdk-cw" }
39+
pyth-sdk-cw = { path = "../../sdk/rust" }
4040

4141
[dev-dependencies]
4242
cosmwasm-vm = { version = "1.0.0", default-features = false }

tilt_devnet/docker_images/Dockerfile.cosmwasm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM cosmwasm/workspace-optimizer:0.12.11@sha256:b6b0b1d5ed76dafd0ec0d3812a1e7a2
2020
COPY target_chains/cosmwasm/Cargo.lock /code/
2121
COPY target_chains/cosmwasm/Cargo.toml /code/
2222
COPY target_chains/cosmwasm/contracts /code/contracts
23-
COPY target_chains/cosmwasm/pyth-sdk-cw /code/pyth-sdk-cw
23+
COPY target_chains/cosmwasm/sdk/rust /code/sdk/rust
2424
COPY wormhole_attester/sdk/rust /wormhole_attester/sdk/rust
2525
RUN --mount=type=cache,target=/code/target,id=cosmwasm_pyth_target --mount=type=cache,target=/usr/local/cargo/registry optimize_workspace.sh
2626

0 commit comments

Comments
 (0)