forked from neonevm/neon-evm
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NDEV-1837 Solana composability (#251)
* NDEV-1837 Call solana programs * NDEV-1837 Implement instruction to execute transaction with call solana programs * NDEV-1837 Add emulation of calls to external Solana programs * NDEV-1837 Extract SolanaEmulator to separate file * NDEV-1837 Add solana_emulator to API/CLI (multithread environment) * NDEV-1837 Fix format * NDEV-1837 Fix clippy errors * NDEV-1837 Format fix * NDEV-1837 Use solana_emulator to get config from historical EvmLoader * NDEV-1837 Review fixes * NDEV-1837 Review fixes * NDEV-1837 Format after review fixes * NDEV-1837 Implement charging payer account before executing external instruction * NDEV-1837 Fix tests * Update call_solana.sol * Update mod.rs * NDEV-1837 Fix review comments * update version to 1.9.0-dev * NDEV-1837 Implement deserialize instruction in Solidity form * NDEV-1837 Implement return_data * NDEV-1837 Fix `external_solana_calls` field inside EmulatorState * NDEV-1837 Fix format --------- Co-authored-by: Semen Medvedev <[email protected]> Co-authored-by: OlehSyzonov <[email protected]>
- Loading branch information
1 parent
9b55e5e
commit 1efefb6
Showing
40 changed files
with
3,613 additions
and
1,345 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "neon-cli" | ||
version = "1.7.0-dev" | ||
version = "1.9.0-dev" | ||
authors = ["NeonLabs Maintainers <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains 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 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 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 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 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.