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

Handling AccountStoreUpdated events in the omni-executor #3217

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3e3ac95
updating metadata artifact
silva-fj Dec 19, 2024
fb07eb5
fixing solana transfer intent
silva-fj Dec 19, 2024
3edb86a
moving subxt to the workspace dependencies
silva-fj Dec 20, 2024
1106e9b
adding api-interface crate
silva-fj Dec 20, 2024
74cfba3
replacing subxt macro with the generated api-interface
silva-fj Dec 20, 2024
6c945ab
refactoring event_handler name to make it generic
silva-fj Dec 20, 2024
0a661a7
feat: add api-interface generation makefile targets
silva-fj Dec 20, 2024
0bc634a
refactoring listener, small improvement
silva-fj Dec 20, 2024
9b718a8
refactoring event_handler, preparation for adding more event handlers
silva-fj Dec 20, 2024
49293b4
make artifacts part of the api-interface
silva-fj Dec 23, 2024
de15da6
adding worker storage interface
silva-fj Dec 23, 2024
eb6a9a2
adding account_store storage
silva-fj Dec 23, 2024
b4fc65e
adding local dependencies
silva-fj Dec 23, 2024
2f984a4
refactoring account_store storage types
silva-fj Dec 23, 2024
f0a324a
Handling AccountStoreUpdated event
silva-fj Dec 23, 2024
07d047d
fixing fmt issue
silva-fj Dec 24, 2024
3fb618c
updating omni-executor Dockerfile
silva-fj Dec 24, 2024
c74dd96
Merge branch 'dev' into p-1250-handle-accountstoreupdated-related-eve…
silva-fj Dec 24, 2024
4d3c341
refactoring naming for metadata
silva-fj Dec 26, 2024
7587be3
updating api-interface's README
silva-fj Dec 26, 2024
11cb168
Merge branch 'dev' into p-1250-handle-accountstoreupdated-related-eve…
silva-fj Dec 26, 2024
25d674b
fixing typo
silva-fj Dec 31, 2024
9260da4
improve Makefile
silva-fj Dec 31, 2024
037fbe3
updating api-interface
silva-fj Dec 31, 2024
4efc120
updating docs
silva-fj Dec 31, 2024
9456801
Merge branch 'dev' into p-1250-handle-accountstoreupdated-related-eve…
silva-fj Dec 31, 2024
e584510
Revert "updating api-interface"
silva-fj Dec 31, 2024
0555be8
Merge branch 'dev' into p-1250-handle-accountstoreupdated-related-eve…
BillyWooo Jan 7, 2025
2083b15
Merge branch 'dev' into p-1250-handle-accountstoreupdated-related-eve…
BillyWooo Jan 7, 2025
69bd406
Merge branch 'dev' into p-1250-handle-accountstoreupdated-related-eve…
silva-fj Jan 8, 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
4 changes: 2 additions & 2 deletions common/primitives/core/src/intent.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::{AccountId, Address32, Balance};
use crate::{AccountId, Balance};
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
use scale_info::TypeInfo;
use sp_core::H160;
Expand Down Expand Up @@ -44,6 +44,6 @@ pub struct TransferNative {

#[derive(Encode, Decode, Debug, Clone, PartialEq, Eq, MaxEncodedLen, TypeInfo)]
pub struct TransferSolana {
pub to: Address32,
pub to: [u8; 32],
pub value: u64,
}
Loading
Loading