Skip to content

Commit

Permalink
[Gemstone] Add support code for BSC staking (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xh3rman committed May 17, 2024
1 parent cca4c9d commit 896d900
Show file tree
Hide file tree
Showing 17 changed files with 749 additions and 24 deletions.
152 changes: 152 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 @@ -39,6 +39,7 @@ members = [
"crates/gem_cosmos",
"crates/gem_chain_rpc",
"crates/gem_ton",
"crates/gem_bsc",

"crates/swap_oneinch",
"crates/swap_aftermath",
Expand Down
11 changes: 11 additions & 0 deletions crates/gem_bsc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "gem_bsc"
version = { workspace = true }
edition = { workspace = true }

[dependencies]

hex = { workspace = true }
itoa = { workspace = true }
anyhow = { workspace = true }
alloy-core = { version = "0.7.0", features = ["sol-types", "json-abi"] }
1 change: 1 addition & 0 deletions crates/gem_bsc/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod stake_hub;
Loading

0 comments on commit 896d900

Please sign in to comment.