Skip to content

Commit

Permalink
Merge pull request #51 from Levana-Protocol/new-contract
Browse files Browse the repository at this point in the history
New contract for QA
  • Loading branch information
snoyberg authored Oct 14, 2024
2 parents fb76db7 + 9ddb8e8 commit b24b924
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 36 deletions.
1 change: 0 additions & 1 deletion .ci/commit-check.awk

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/committer_check.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/contracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
- uses: taiki-e/install-action@v2
with:
tool: [email protected]
- name: Check commit
run: just check-commits
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.75.0
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/config/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const ENV: Environment = match(window.location.host)
export const IS_TESTNET = ENV === "testnet"

export const CONTRACT_ADDRESS = IS_TESTNET
? "neutron1jgjhevvfslekq4407cup5nzekf966pcm5wgr2w72hnluyknrxkqsdr8ltn"
? "neutron1qtkqp9dmfl4wnsrs0kvywvcnfnkj5kwxfm2zdqedagvr52ju270q7tx7cr"
: "neutron14r4gqjhnuxzwcmypjle9grlksvjeyyy0mrw0965rdz5v3v5wcv6qjf8w55"

export const QUERIER_ADDRESS = IS_TESTNET
Expand Down
6 changes: 0 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,3 @@ cargo-compile:
# cargo test
cargo-test:
cd contract && cargo test --locked

# Check commits
check-commits:
git fetch origin main --depth=1
git log --pretty=format:"%ae" $(git branch --show-current)...origin/main > email
awk -f ./.ci/commit-check.awk email

0 comments on commit b24b924

Please sign in to comment.