Skip to content

Commit

Permalink
Merge pull request #40 from neutron-org/feat/proposal-votes
Browse files Browse the repository at this point in the history
Add query for proposal voters
  • Loading branch information
pr0n00gler authored Apr 11, 2024
2 parents 0c46fb6 + c5ad141 commit 064fcbf
Show file tree
Hide file tree
Showing 13 changed files with 290 additions and 101 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
inputs:
toolchain:
description: 'Default Rust Toolchain'
default: "1.68.2"
default: "1.73.0"
required: true
type: string
target:
Expand All @@ -31,7 +31,7 @@ on:
type: string

env:
TOOLCHAIN: ${{ inputs.toolchain || '1.68.2' }}
TOOLCHAIN: ${{ inputs.toolchain || '1.73.0' }}
TARGET: ${{ inputs.target || 'wasm32-unknown-unknown' }}
REF: ${{ github.event_name == 'push' && github.ref || inputs.branch || 'main' }}
ID: ${{ inputs.id || 'scheduled' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.68.2
toolchain: 1.73.0
components: clippy
profile: minimal
override: true
Expand All @@ -31,7 +31,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.68.2
toolchain: 1.73.0
components: rustfmt
profile: minimal
override: true
Expand All @@ -49,7 +49,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.68.2
toolchain: 1.73.0
profile: minimal
- run: cargo fetch --verbose
- run: cargo build
Expand Down
97 changes: 44 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ incremental = false
overflow-checks = true

[workspace.dependencies]
neutron-sdk = { git = "https://github.com/neutron-org/neutron-sdk.git", branch = "main" }
prost = "0.12.1"
prost-types = "0.12.1"
neutron-sdk = { package = "neutron-sdk", git = "https://github.com/neutron-org/neutron-sdk", branch = "feat/proposal-votes" }
prost = "0.12.4"
prost-types = "0.12.4"
cosmos-sdk-proto = { version = "0.20.0", default-features = false }
cosmwasm-std = { version = "1.4.1", features = [
"stargate",
Expand Down
15 changes: 0 additions & 15 deletions artifacts/checksums.txt

This file was deleted.

2 changes: 1 addition & 1 deletion contracts/dex_stargate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ cw2 = "1.1.1"
schemars = "0.8.15"
serde = { version = "1.0.188", default-features = false, features = ["derive"] }
prost = "0.12.3"
prost-types = "0.12.1"
prost-types = "0.12.3"
cosmos-sdk-proto = { version = "0.20.0", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion contracts/neutron_interchain_queries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cosmwasm-std = { workspace = true }
cosmwasm-std = { workspace = true, features = ["stargate", "staking"] }
cw2 = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
Expand Down
Loading

0 comments on commit 064fcbf

Please sign in to comment.