-
Notifications
You must be signed in to change notification settings - Fork 50
Core yielder #962
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
Merged
Merged
Core yielder #962
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
3ef6103
Add earn/yield primitive types and FFI bindings
gemdev111 9926529
Add earn transaction facade in EVM preload and gateway
gemdev111 a27b6f4
Update mod.rs
gemdev111 ebb9859
Cleanup
gemdev111 bc7a9c9
Updates typeshare
gemdev111 6673baa
Add DelegationValidator::stake constructor
gemdev111 86adfc6
Update mod.rs
gemdev111 f38c13e
Update mod.rs
gemdev111 a4dd1fd
Update preload_mapper.rs
gemdev111 c1ce831
EarnProviderType->StakeProviderType
gemdev111 db9f41d
Fix collapsible_if clippy warning in gem_evm preload_mapper
gemdev111 85dad64
Rename EarnData to ContractCallData
gemdev111 3f7e4c1
Merge branch 'main' into core-yielder
gemdev111 276eb80
remove unused earn_transaction
gemdev111 113a7da
fix tests
gemdev111 53fd3a4
Update mod.rs
gemdev111 c7d86d6
Update preload_mapper.rs
gemdev111 6f76f91
Merge commit '3c0010d' into core-yielder
gemdev111 a80b223
Add new_approval and use decode_hex import
gemdev111 3c9c168
Merge branch 'main' into core-yielder
gemdev111 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using
todo!()in a daemon service is risky as it will cause a panic if anEarnDepositorEarnWithdrawtransaction is encountered. It's better to handle these types gracefully, for example by returning a generic message or a specific error, to ensure service stability.