Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
36f4267
Feat(programs): implement gas-station
gBaGu Nov 18, 2022
65cb293
Feat(programs): implement gas-station tests + small fixes
gBaGu Nov 24, 2022
72ca2c8
Feat(programs): refactoring
gBaGu Nov 24, 2022
9a32ac4
Feat(programs): add math checks, add test
gBaGu Nov 28, 2022
20ee799
Feat(programs): fix register payer test
gBaGu Nov 28, 2022
6161fcc
Merge branch 'develop' into feature-add-program-gas-station
gBaGu Dec 1, 2022
7e3c365
Feat(programs): integrate gas-station into bridge
gBaGu Dec 5, 2022
15f4b76
Chore(deps): switch to no_std borsh version
gBaGu Dec 9, 2022
a18dfef
Fix(deps): make evm dependencies optional for sdk
gBaGu Dec 12, 2022
7bc4d70
Fix(gas-station): copy evm types to gas station crate
gBaGu Dec 12, 2022
b21d662
Feat(gas-station): check evm accounts, check rent exemption, add tests
gBaGu Dec 13, 2022
490f16e
Feat(gas-station): disallow big transaction
gBaGu Dec 15, 2022
9f48a31
Feat(gas-station): fix clippy
gBaGu Dec 15, 2022
3761db1
Feat(gas-station): bump bpf version
gBaGu Jan 5, 2023
b7bed61
Feat(gas-station): add CLI command to register payer
gBaGu Jan 17, 2023
723331b
Feat(gas-station): add readme; change bridge command line args
gBaGu Jan 18, 2023
d5cd1fe
Feat(gas-station): improove logging, fix naming, change CLI args, fix…
gBaGu Jan 25, 2023
3b53bad
Feat(gas-station): add usage to script
gBaGu Jan 26, 2023
0331138
Feat(gas-station): add instruction to update filters, add tests, add …
gBaGu Jan 27, 2023
f25aa85
Merge branch 'develop' into feature-add-program-gas-station
gBaGu Feb 13, 2023
cabfaf1
Feat(evm-bridge): fix clippy
gBaGu Feb 27, 2023
4674bb2
Merge branch 'develop' into feature-add-program-gas-station
gBaGu Mar 8, 2023
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
21 changes: 21 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ members = [
"evm-utils/evm-block-recovery",
"evm-utils/evm-bridge",
"evm-utils/programs/evm_loader",
"evm-utils/programs/gas_station",
"evm-utils/evm-state",
"evm-utils/evm-rpc",
"poh",
Expand Down
1 change: 1 addition & 0 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] }
thiserror = "1.0.30"
tiny-bip39 = "0.8.2"

evm-gas-station = { path = "../evm-utils/programs/gas_station" }
evm-state = { path = "../evm-utils/evm-state" }
evm-rpc = { path = "../evm-utils/evm-rpc" }
solana-evm-loader-program = { path = "../evm-utils/programs/evm_loader" }
Expand Down
2 changes: 1 addition & 1 deletion cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ pub fn parse_command(
}
("transfer", Some(matches)) => parse_transfer(matches, default_signer, wallet_manager),
//
("evm", Some(matches)) => parse_evm_subcommand(matches),
("evm", Some(matches)) => parse_evm_subcommand(matches, default_signer, wallet_manager),
//
("", None) => {
eprintln!("{}", matches.usage());
Expand Down
Loading