Skip to content

Commit 5c0208d

Browse files
authored
Rename Terra to CW (#61)
* Rename terra to cw * Fix build * Update Readme * Update github actions * Fix github actions * Update Readme
1 parent 35c1067 commit 5c0208d

27 files changed

+33
-33
lines changed

.github/workflows/pyth-sdk-terra.yml renamed to .github/workflows/pyth-sdk-cw.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Terra SDK
1+
name: CW SDK
22

33
on:
44
push:
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
defaults:
1616
run:
17-
working-directory: ./pyth-sdk-terra
17+
working-directory: ./pyth-sdk-cw
1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Install dependencies
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
defaults:
3030
run:
31-
working-directory: ./pyth-sdk-terra
31+
working-directory: ./pyth-sdk-cw
3232
steps:
3333
- name: Checkout sources
3434
uses: actions/checkout@v2

.github/workflows/pyth-sdk-example-terra-contract.yml renamed to .github/workflows/pyth-sdk-example-cw-contract.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pyth SDK Example Terra Contract
1+
name: Pyth SDK Example CW Contract
22

33
on:
44
push:
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
defaults:
1818
run:
19-
working-directory: ./examples/terra-contract
19+
working-directory: ./examples/cw-contract
2020
steps:
2121
- name: Checkout sources
2222
uses: actions/checkout@v2
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
defaults:
4141
run:
42-
working-directory: ./examples/terra-contract
42+
working-directory: ./examples/cw-contract
4343
steps:
4444
- name: Checkout sources
4545
uses: actions/checkout@v2

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ members = [
44
"pyth-sdk",
55
"pyth-sdk-solana",
66
"pyth-sdk-solana/test-contract",
7-
"pyth-sdk-terra",
8-
"examples/terra-contract",
7+
"pyth-sdk-cw",
8+
"examples/cw-contract",
99
]

examples/terra-contract/Cargo.toml renamed to examples/cw-contract/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ optimize = """docker run --rm -v "$(pwd)":/code \
2929
"""
3030

3131
[dependencies]
32-
cosmwasm-std = { version = "0.16.2" }
33-
cosmwasm-storage = { version = "0.16.0" }
34-
cw-storage-plus = "0.8.0"
32+
cosmwasm-std = { version = "1.0.0" }
33+
cosmwasm-storage = { version = "1.0.0" }
34+
cw-storage-plus = "0.13.4"
3535
schemars = "0.8"
3636
serde = { version = "1.0", default-features = false, features = ["derive"] }
37-
pyth-sdk-terra = { version = "0.4.0", path = "../../pyth-sdk-terra" } # Remove path and use version only when you use this example on your own.
37+
pyth-sdk-cw = { version = "0.1.0", path = "../../pyth-sdk-cw" } # Remove path and use version only when you use this example on your own.
3838

3939
[dev-dependencies]
40-
cosmwasm-schema = { version = "0.16.0" }
40+
cosmwasm-schema = { version = "1.0.0" }
File renamed without changes.

0 commit comments

Comments
 (0)