Skip to content

Commit

Permalink
Feat/neutron deploy setup (#14)
Browse files Browse the repository at this point in the history
* add file detailing osmosis deploy addresses

* add neutron testnet and mainnet deploy scripts

* remove depreciated ts attribute that is causing error

* Update to working rpc

* fix base asset - it's the asset that gas will be paid with

* add testnet liq filterer config

* Update builds. Bump deps.

---------

Co-authored-by: Piotr Babel <[email protected]>
  • Loading branch information
dancreee and piobab authored Jul 31, 2023
1 parent 56981a7 commit 8da7f16
Show file tree
Hide file tree
Showing 17 changed files with 2,069 additions and 213 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,6 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
profile: minimal
override: true

# selecting a toolchain should happen before the plugin, as the cache uses the current rustc version as its cache key
- name: Cache dependencies
uses: Swatinem/rust-cache@v2

- name: Install cargo make
uses: davidB/rust-cargo-make@v1

Expand Down
15 changes: 5 additions & 10 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
- main
- release/neutron
pull_request:

env:
Expand All @@ -18,19 +19,13 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
profile: minimal
override: true
components: llvm-tools-preview

- name: Install cargo make
uses: davidB/rust-cargo-make@v1

# artifacts used by tests
- name: Install stable Rust
run: cargo make install-stable

# Artifacts used by tests
- name: Compile workspace
run: cargo make build

Expand Down
20 changes: 9 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
- main
- release/neutron
pull_request:

env:
Expand All @@ -18,22 +19,19 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: wasm32-unknown-unknown
components: rustfmt, clippy
profile: minimal
override: true
- name: Install cargo make
uses: davidB/rust-cargo-make@v1

- name: Install stable Rust
run: cargo make install-stable

- name: Install nightly Rust
run: cargo make install-nightly

# selecting a toolchain should happen before the plugin, as the cache uses the current rustc version as its cache key
- name: Cache dependencies
uses: Swatinem/rust-cache@v2

- name: Install cargo make
uses: davidB/rust-cargo-make@v1

- name: Format
run: cargo make fmt

Expand Down
17 changes: 6 additions & 11 deletions .github/workflows/scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
- main
- release/neutron
pull_request:

env:
Expand All @@ -21,22 +22,16 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
components: rustfmt, clippy
profile: minimal
override: true
- name: Install cargo make
uses: davidB/rust-cargo-make@v1

- name: Install stable Rust
run: cd ../ && cargo make install-stable && cd scripts

# selecting a toolchain should happen before the plugin, as the cache uses the current rustc version as its cache key
- name: Cache dependencies
uses: Swatinem/rust-cache@v2

- name: Install cargo make
uses: davidB/rust-cargo-make@v1

- uses: actions/setup-node@v3
with:
node-version: 18
Expand Down
Loading

0 comments on commit 8da7f16

Please sign in to comment.