Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support l2 plus #1157

Merged
merged 41 commits into from
Jan 14, 2025
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
6343017
feat: add simple tests
karlem Sep 25, 2024
3c18e12
feat: happy path with propagateAll
karlem Sep 26, 2024
a95fa93
feat: add more tests
karlem Oct 1, 2024
39b1a1c
feat: check for proper path propagation
karlem Oct 1, 2024
8fb277f
feat: added result paths to test
karlem Oct 2, 2024
e31475d
feat: add extra test and emits
karlem Oct 7, 2024
bb2b83c
feat: add missing actor tests + refactor
karlem Oct 8, 2024
0cb82a9
feat: move validation
karlem Oct 9, 2024
d2bfdd9
feat: commit cross messages does not revert & fix tests
karlem Oct 10, 2024
488a921
feat: remove logs
karlem Oct 10, 2024
b3c962a
feat: fix tests
karlem Oct 11, 2024
9287fe4
feat: fmt
karlem Oct 11, 2024
9d01bf8
feat: send across mixed token supplies
karlem Oct 11, 2024
142d4d8
feat: propagate top down automatically
karlem Oct 11, 2024
f677ef1
feat: fmt & lint
karlem Oct 11, 2024
807c030
feat: add extra check
karlem Oct 11, 2024
471e059
feat: fix test & lint
karlem Oct 14, 2024
e923695
feat: fix comments
karlem Oct 16, 2024
7b4d142
feat: fix comments
karlem Oct 24, 2024
9c98fe8
feat: change error message
karlem Oct 24, 2024
ffab27e
feat: make sure ID is the same cross network & fix down func
karlem Oct 28, 2024
a3b7fd0
feat: update from comments
karlem Oct 28, 2024
7e18939
feat: do not move funds with call kind
karlem Nov 27, 2024
9df5c8b
feat: rebase fixes
karlem Nov 27, 2024
5aff1b4
feat: fmt
karlem Nov 27, 2024
1f2ef32
feat: storage layout
karlem Nov 27, 2024
31b7766
feat: receipt - encode with selector
karlem Dec 4, 2024
0259a0e
feat: fix nonce issue and add tests
karlem Dec 5, 2024
de3e6b1
feat: linbt
karlem Dec 5, 2024
021ea53
feat: disable transfers for Call messages
karlem Dec 5, 2024
469c7bd
feat(node): support l2 utils (#1219)
cryptoAtwill Dec 6, 2024
b9b0dcb
feat(node): support l2 plus value transfer (#1240)
cryptoAtwill Dec 31, 2024
fab6ae5
chore(contracts): L3+ remove unnecessary `CrossMessageValidationOutco…
raulk Jan 2, 2025
73e7ef8
feat: consistent non clashing tracing id
karlem Jan 9, 2025
490ce5e
fix: test
karlem Jan 9, 2025
edae481
feat: add original nonce to fendermint
karlem Jan 9, 2025
f37b285
fix: build
karlem Jan 9, 2025
1a84b42
fix: rename nonce to local nonce
karlem Jan 10, 2025
b12e566
fix: formatter
karlem Jan 10, 2025
c387cdc
fix: build, test, storage
karlem Jan 10, 2025
22e5009
fix: storage layoyt
karlem Jan 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
Prev Previous commit
Next Next commit
fix: test
karlem committed Jan 9, 2025
commit 490ce5ed9c19e234455c55dc9134396d2b25efed
1 change: 1 addition & 0 deletions contracts/sdk/IpcContractUpgradeable.sol
Original file line number Diff line number Diff line change
@@ -91,6 +91,7 @@ abstract contract IpcExchangeUpgradeable is Initializable, IIpcHandler, OwnableU
from: to, // TODO: will anyway be replaced by sendContractXnetMessage.
to: to,
nonce: 0, // TODO: will be replaced.
originalNonce: 0, // TODO: will be replaced.
value: value,
message: abi.encode(callMsg)
})