Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ac6e9a4
docs: interest-rate kink model parameters and curve reference for len…
Jun 30, 2026
bbb075c
Remove stray fix_rate_model.rs file that was causing CI failures
Jul 5, 2026
82a0deb
Fix: Remove duplicate rounding_strategy module declaration
Jul 5, 2026
36d9fe6
fix: wire upgrade_governance_test into lib.rs (#1590)
TheShnider Jul 24, 2026
41909ea
Add trivial main function to scaling_demo example (fix Cargo example …
Devadakene Jul 24, 2026
e986045
docs: correct get_debt_balance -> get_debt_position in REPAY_SEMANTIC…
brodapeethar Jul 24, 2026
4887860
docs: rewrite docs/multisig.md to match real stellarlend-multisig API…
Joyyyb Jul 24, 2026
312e3ee
test: add clamp_rate floor/ceiling tests with docs (#1586)
Michael997glitch Jul 24, 2026
9c54851
Add: added missing return type to AMM reentrancy guard helper so its …
Namiiikaze Jul 24, 2026
78f3316
feat: initialize stellarlend-amm contract package with Soroban depend…
dot-enny Jul 24, 2026
1848a0d
feat(bridge): rewrite validator-rotation/quorum-proof to use env.stor…
vic2430 Jul 24, 2026
70e00ee
fix(#1454): consolidate require_admin into admin.rs; fix oracle.rs br…
Samuelaladesiun3334 Jul 24, 2026
62751af
fix: remove stale non-Soroban merge_grants entrypoint (#1580)
ositaemmanuel653-netizen Jul 24, 2026
a6b029a
fix: call update_and_get_rate to apply rate smoothing (#1579)
Jo-anny Jul 24, 2026
15680f6
fix: wire up oracle_max_move_test.rs in lib.rs (#1578)
Jo-anny Jul 24, 2026
630c3cc
feat(hello-world): implement flash loan module (#1577)
ayandipe Jul 24, 2026
7d788bc
close #1506: lending math.rs: the entire pure-math module (compute_he…
Primex-Tech Jul 24, 2026
24f5c11
remove dead code: eliminate unused migration functions and borrower r…
Ova-Klik Jul 24, 2026
e312fab
fix(multisig): bound ttl_ledgers and use saturating_add (#1523)
laxjovial Jul 24, 2026
30e6357
close #1504: lending debt.rs: settle_accrual_split() constructs DebtP…
Primex-Tech Jul 24, 2026
d24918c
fix(governance): use vote_token balance for weighted voting and propo…
Carlys17 Jul 24, 2026
27e61ca
fix(vesting): replace unchecked as u64 cast with checked i128 arithme…
Carlys17 Jul 24, 2026
2f48853
Replace .expect() with .ok_or(LendingError::Overflow)? in withdraw (#…
Mayorlay Jul 24, 2026
7ff5b42
test(amm): wire error code tests (#1491)
maixuancanh Jul 24, 2026
b777fe5
Fix/flash loan emergency check (#1489)
Mayorlay Jul 24, 2026
dcac64c
feat(lending): require initialization before any state-mutating entry…
Muhammadcodes112 Jul 24, 2026
ceb872e
feat(amm): add get_swap_quote read-only view with tests and docs (#1388)
ZEMAD0N26 Jul 24, 2026
db7c455
docs: add cross-asset health-factor spec with a verifying doc-test (#…
victortanimu05-stack Jul 24, 2026
0f83aaa
test: add calculate_utilization clamp tests with docs (#1384)
emickwrld Jul 24, 2026
d910937
STORAGE_TIER_REFERENCE.md (#1593)
Riel101 Jul 24, 2026
f7f43be
Add oracle payload test (#1591)
Devadakene Jul 24, 2026
473046b
feat(lending): wire missing_price_test into the build (#1519)
ZEMAD0N26 Jul 24, 2026
1bba9c0
fix: remove orphaned contracts/lending/scr dead code (#1490)
euniceamoni Jul 24, 2026
f510074
hello-world: events.rs uses a 10-character symbol_short!, exceeding …
Johnpii1 Jul 24, 2026
9daa11d
feat: add batch_execute to multisig contract with tests and docs (#1402)
VeronicDev Jul 24, 2026
16e90f0
fix: overflow-safe vesting vested_at computation with tests and docs …
idrisososanwo Jul 24, 2026
96dcaad
Merge remote-tracking branch 'origin/main' into pr-1393
Jagadeeshftw Jul 24, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Run clippy
run: |
cd stellar-lend/contracts/lending
cargo clippy --lib --all-features -- -D warnings -A deprecated -A dead_code -A unused-imports -A unused-attributes -A clippy::inconsistent-digit-grouping -A clippy::manual-range-contains -A clippy::unnecessary-cast
cargo clippy --lib --all-features -- -D warnings -A deprecated -A dead_code -A unused-imports -A unused-attributes -A clippy::inconsistent-digit-grouping -A clippy::manual-range-contains -A clippy::unnecessary-cast -A clippy::too-many-arguments -A clippy::enum_variant_names

- name: Build project
run: |
Expand Down
3 changes: 0 additions & 3 deletions contracts/lending/scr/README.md

This file was deleted.

184 changes: 0 additions & 184 deletions contracts/lending/scr/lib.rs

This file was deleted.

76 changes: 0 additions & 76 deletions contracts/lending/scr/test.rs

This file was deleted.

1 change: 1 addition & 0 deletions docs/INDEX.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Covers the `initialize` single-call guard, the `require_admin` helper, the two-s
- [Cross-Asset Rules](CROSS_ASSET_RULES.md)
- [Zero Amount Semantics](ZERO_AMOUNT_SEMANTICS.md)
- [View Schema Versioning Policy](VIEW_SCHEMA_VERSIONING_POLICY.md)
- [Interest Rate Kink Model](../stellar-lend/contracts/lending/RATE_MODEL.md)

Covers protocol-level parameters such as collateral ratios, liquidation thresholds, and limits enforced by the lending system.

Expand Down
Loading
Loading