Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7285292
Refactoring + initial implementation of NEAR Intents
vitaliybezz Oct 21, 2025
f24f620
More improvements
vitaliybezz Oct 22, 2025
1ee71dc
Merge remote-tracking branch 'origin/dev' into feat/liquidator-intents
vitaliybezz Oct 22, 2025
b841600
More improvements
vitaliybezz Oct 28, 2025
aeb1831
Merge remote-tracking branch 'origin/dev' into feat/liquidator-intents
vitaliybezz Oct 28, 2025
bc765b0
Add LST oracle prices supporr
vitaliybezz Oct 28, 2025
e350ffb
Implement intents 1click
vitaliybezz Oct 30, 2025
149344d
Refactor liquidator, remove pre-swap step
vitaliybezz Oct 31, 2025
e9a9ff3
Implement post liquidation step
vitaliybezz Oct 31, 2025
23c59c7
Merge remote-tracking branch 'origin/dev' into feat/liquidator-intents
vitaliybezz Oct 31, 2025
9af76a3
Improve oneclick implementation
vitaliybezz Oct 31, 2025
6833297
Add ref swap, run nep141 liquidation using ref, nep24 using 1click
vitaliybezz Nov 4, 2025
1cdaacc
Improve liquidation strategy
vitaliybezz Nov 4, 2025
b60efbe
Refactor Rhea to Ref
vitaliybezz Nov 4, 2025
3bde037
Add docker and overall cleanup
vitaliybezz Nov 5, 2025
6620fd6
Fix check failures
vitaliybezz Nov 5, 2025
e7aa4c4
Fix failing tests
vitaliybezz Nov 5, 2025
30adbfc
Fix review comments
vitaliybezz Nov 6, 2025
0a4967f
Fix fmt
vitaliybezz Nov 6, 2025
3f1f0cc
Improve rebalancer logging
vitaliybezz Nov 6, 2025
0dc82f2
Address code review comments
vitaliybezz Nov 7, 2025
bb52e10
Address code review comments
vitaliybezz Nov 7, 2025
c74a326
Address code review comments
vitaliybezz Nov 10, 2025
880d399
Fix fmt and clippy warnings
vitaliybezz Nov 10, 2025
1ebf3db
Address code review comments, part 4
vitaliybezz Nov 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ jobs:
uses: actions/checkout@v4
- uses: ./.github/actions/rust
- name: Install cargo-nextest
# https://nexte.st/docs/installation/pre-built-binaries/#linux-x86_64
run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
uses: taiki-e/install-action@v2
with:
tool: nextest
- name: Install cargo-near
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/download/cargo-near-v0.16.1/cargo-near-installer.sh | sh
- name: Run tests
Expand All @@ -75,12 +76,9 @@ jobs:
components: llvm-tools-preview

- name: Install tools
run: |
# Install cargo-llvm-cov for coverage
curl -LsSf https://github.com/taiki-e/cargo-llvm-cov/releases/latest/download/cargo-llvm-cov-x86_64-unknown-linux-gnu.tar.gz | tar xzf - -C ~/.cargo/bin

# Install cargo-nextest for faster testing
curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ~/.cargo/bin
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov,nextest

- name: Run tests with coverage
env:
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,9 @@
# OS
.DS_Store

# Environment files
.env
.env.local

# documentation site
_site/
Loading
Loading