Nicholas Dudfield
e27eb4f12d
fix: bump numFeatures to 116 for nestedmultisign + ioulockedbalanceinvariant
2026-04-29 15:25:23 +07:00
Nicholas Dudfield
37bfa0af49
Merge remote-tracking branch 'origin/multi-sig-nested-squash' into multisign-xahaud-pr-squashed
2026-04-29 15:14:51 +07:00
Nicholas Dudfield
69b82beafa
Merge remote-tracking branch 'origin/dev' into multisign-xahaud-pr-squashed
...
# Conflicts:
# include/xrpl/protocol/detail/features.macro
2026-04-29 15:10:20 +07:00
tequ
9d4e507675
Treat suspicious gcov hit counts as coverage warnings ( #737 )
2026-04-29 17:06:44 +10:00
tequ
49fd0c33b5
fixIOULockedBalanceInvariant Amendment ( #732 )
2026-04-29 17:05:18 +10:00
tequ
0ffb6e8c21
Replace vendored magic_enum header with Conan package dependency ( #727 )
2026-04-29 17:00:25 +10:00
tequ
61138058a6
Delete unused sfHookDefinition ( #715 )
2026-04-29 16:45:35 +10:00
tequ
8dd17973d0
Add hook header ls_flags.h and tx_flags.h ( #717 )
2026-04-29 16:41:52 +10:00
Niq Dudfield
198ff08ee5
Merge branch 'dev' into multi-sig-nested-squash
2026-04-29 12:16:17 +07:00
Nicholas Dudfield
d6aad6744e
chore: align nested multisign quorum terminology
2026-04-29 11:33:54 +07:00
Fomo
dd9e6053a0
fix: Expand the pathing tables and lower weight on sabbxd, also return up … ( #723 )
2026-04-29 14:28:00 +10:00
Nicholas Dudfield
339f1b7f6f
test: port nested multisign review coverage
2026-04-29 11:25:01 +07:00
Nicholas Dudfield
bb6553193e
fix: port nested multisign review fixes after dev merge
2026-04-29 11:01:41 +07:00
Nicholas Dudfield
ffcfd94327
Merge remote-tracking branch 'origin/dev' into multisign-xahaud-pr-squashed
...
# Conflicts:
# include/xrpl/protocol/Feature.h
# src/libxrpl/protocol/Feature.cpp
# src/test/jtx/multisign.h
# src/xrpld/app/tx/detail/Transactor.cpp
2026-04-29 11:00:14 +07:00
tequ
8c1be39f70
Fix LedgerNameSpace to ensure uniqueness ( #710 )
2026-04-29 12:01:57 +10:00
tequ
61d1d6e441
Add test for rejected Remit to AMM account ( #698 )
2026-04-29 11:20:13 +10:00
tequ
788ba43266
Refactor getFieldU16(sfTransactionType) with getTxnType() ( #711 )
2026-04-29 11:17:49 +10:00
tequ
55710c4baf
Disallow setting a AMM account as Issuer/Destination/Inform ( #709 )
2026-04-29 11:00:25 +10:00
tequ
7bf5bcaf20
Add new TSH tests ( #704 )
2026-04-29 10:40:50 +10:00
Niq Dudfield
9f2160f42e
fix: resolve switch fall-through in util_keylet unimplemented cases ( #701 )
2026-04-29 10:37:17 +10:00
tequ
ef7a03ec10
fix owner count assertion at XahauGenesis_test ( #688 )
2026-04-29 10:32:43 +10:00
tequ
6eb6c41ec6
fix: use OIDC token for Codecov uploads from fork PRs ( #736 )
2026-04-29 09:50:47 +10:00
tequ
9651f68b2e
Add coverage workflow ( #661 )
...
Co-authored-by: Bronek Kozicki <brok@incorrekt.com >
Co-authored-by: Niq Dudfield <ndudfield@gmail.com >
2026-04-28 18:29:09 +10:00
tequ
f1f44ae232
Build xahau.h from source and check in workflow https://github.com/Xahau/xahaud/pull/674
2026-04-28 18:28:59 +10:00
Alloy Networks
c461dd9055
change build instructions url
2026-04-28 18:23:32 +10:00
tequ
73cf6d34cd
Fix BEAST_ENHANCED_LOGGING not working and restore original behavior
2026-04-28 18:23:32 +10:00
tequ
ea92477d21
Test: hint build_test_hooks.sh when hook wasm is empty in hso()
2026-04-28 18:23:32 +10:00
Nicholas Dudfield
e4c7893bf0
Revert "chore: use improved levelization script with threading and argparse"
...
This reverts commit 5c1d7d9ae9 .
2026-04-28 18:23:32 +10:00
Nicholas Dudfield
ad9d6a6eb3
chore: use improved levelization script with threading and argparse
2026-04-28 18:23:32 +10:00
Nicholas Dudfield
dbbffd917e
chore: replace levelization shell script with python
...
Backport of XRPLF/rippled#6325 . The python version runs ~80x faster.
2026-04-28 18:23:31 +10:00
tequ
1d7c7e5603
enable ccache direct_mode
2026-04-28 18:23:31 +10:00
tequ
52843e2321
output ccache configuration in release-builder
2026-04-28 18:23:31 +10:00
tequ
6aabbc940b
fix: typo SignersListSet
2026-04-28 18:23:31 +10:00
tequ
3111ecea52
Update util_keylet fee test
2026-04-28 18:23:31 +10:00
tequ
1008508c9b
Updated tests to align with the changes merged into the dev branch.
2026-04-28 18:23:31 +10:00
tequ
58e278289b
Add tests for Hooks fee
2026-04-28 18:23:31 +10:00
tequ
d3d24f781b
Merge fixAMMClawbackRounding amendment into featureAMMClawback amendment
2026-04-28 18:23:31 +10:00
yinyiqian1
131d659032
fixAMMClawbackRounding: adjust last holder's LPToken balance ( #5513 )
...
Due to rounding, the LPTokenBalance of the last LP might not match the LP's trustline balance. This was fixed for `AMMWithdraw` in `fixAMMv1_1` by adjusting the LPTokenBalance to be the same as the trustline balance. Since `AMMClawback` is also performing a withdrawal, we need to adjust LPTokenBalance as well in `AMMClawback.`
This change includes:
1. Refactored `verifyAndAdjustLPTokenBalance` function in `AMMUtils`, which both`AMMWithdraw` and `AMMClawback` call to adjust LPTokenBalance.
2. Added the unit test `testLastHolderLPTokenBalance` to test the scenario.
3. Modify the existing unit tests for `fixAMMClawbackRounding`.
2026-04-28 18:23:31 +10:00
tequ
503dee619a
Merge fixAMMv1_3 amendment into featureAMM amendment
2026-04-28 18:23:31 +10:00
Gregory Tsipenyuk
1703d96a48
fix: Add AMMv1_3 amendment ( #5203 )
...
* Add AMM bid/create/deposit/swap/withdraw/vote invariants:
- Deposit, Withdrawal invariants: `sqrt(asset1Balance * asset2Balance) >= LPTokens`.
- Bid: `sqrt(asset1Balance * asset2Balance) > LPTokens` and the pool balances don't change.
- Create: `sqrt(asset1Balance * assetBalance2) == LPTokens`.
- Swap: `asset1BalanceAfter * asset2BalanceAfter >= asset1BalanceBefore * asset2BalanceBefore`
and `LPTokens` don't change.
- Vote: `LPTokens` and pool balances don't change.
- All AMM and swap transactions: amounts and tokens are greater than zero, except on withdrawal if all tokens
are withdrawn.
* Add AMM deposit and withdraw rounding to ensure AMM invariant:
- On deposit, tokens out are rounded downward and deposit amount is rounded upward.
- On withdrawal, tokens in are rounded upward and withdrawal amount is rounded downward.
* Add Order Book Offer invariant to verify consumed amounts. Consumed amounts are less than the offer.
* Fix Bid validation. `AuthAccount` can't have duplicate accounts or the submitter account.
2026-04-28 18:23:31 +10:00
tequ
8d08d8f1db
fix workflow
2026-02-20 09:11:47 +09:00
Nicholas Dudfield
fff46e3dd0
chore: clang-format
2026-02-20 08:22:49 +09:00
Nicholas Dudfield
52369f3ebb
fix: resolve merge issues from dev sync
...
- Add missing getHookOn declaration and implementation (build blocker)
- Add else branches for HookOnOutgoing/HookOnIncoming in hsoUPDATE path
- Guard unprotected optional dereferences in hsoINSTALL path
- Reorder features.macro per review (HookOnV2/HooksUpdate2 before fixHookAPI20251128)
2026-02-20 08:22:15 +09:00
tequ
57c4e3c9cc
Support new STIs for sto_* HookAPI ( #657 )
2026-02-20 08:18:45 +09:00
tequ
8e1ae86ce2
Add new keylets to util_keylet ( #533 )
2026-02-20 08:18:45 +09:00
tequ
bed5473540
Update CMake version to 3.25.3 in macOS workflow
2026-02-20 08:15:17 +09:00
tequ
de1f57819f
Fix differences such as LedgerHash that occurred due to NetworkID in ltFeeSettings
2026-02-20 08:15:16 +09:00
tequ
6dd6393bb8
Add ltORACLE for Remarks target ( #562 )
2026-02-20 08:15:16 +09:00
tequ
73861a4bfe
Conan Release Builder (2.4.0 sync) ( #528 )
2026-02-20 08:15:15 +09:00
tequ
5a2bf0e0b1
Add Remit test to AMM Account
2026-02-20 08:15:14 +09:00