Skip to content

Commit ad6a63c

Browse files
committed
almost done generating sdk
1 parent 545278c commit ad6a63c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+3883
-37
lines changed

.cargo/programs.env

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
REWARD_PROGRAM_ID=Fv9aHCgvPQSr4jg9W8eTS6Ys1SNmh2qjyATrbsjEMaSH
2+
RESTAKING_PROGRAM_ID=6Weyp6uFyjJ3pzYz7XbXvCPAyvzLUhESEhHarFRm53Nb
3+
VAULT_PROGRAM_ID=4vB3bvqKEmxV68J7XtS1HqZomjok4ZXc1ELJH9p1K1D2
4+
WEIGHT_TABLE_ID=ENHcxLEWQxRyS8VbC7Pb6GKc739vVaBZ2toJvQSL68vM

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target
22

3-
.developer
3+
.developer
4+
node_modules

Cargo.lock

+111-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[workspace]
22
members = [
33
"cli",
4-
"integration_tests",
54
"reward_core",
65
"reward_program",
76
"reward_sdk",
87
"weight_table_core",
98
"weight_table_program",
10-
"weight_table_sdk"
9+
"weight_table_sdk",
10+
"shank_cli",
11+
"integration_tests"
1112
]
1213

1314
resolver = "2"
@@ -69,9 +70,11 @@ tokio = { version = "1.36.0", features = ["full"] }
6970
jito-weight-table-core = { path = "./weight_table_core", version="0.0.1"}
7071
jito-weight-table-program = { path = "./weight_table_program", version="0.0.1"}
7172
jito-weight-table-sdk = { path = "./weight_table_sdk", version="0.0.1"}
73+
jito-weight-table-client = { path = "./clients/rust/weight_table_client", version="0.0.1"}
7274
jito-reward-core = { path = "./reward_core", version = "=0.0.1" }
7375
jito-reward-program = { path = "./reward_program", version = "=0.0.1" }
7476
jito-reward-sdk = { path = "./reward_sdk", version = "=0.0.1" }
77+
jito-reward-shank-cli = { path = "./shank_cli", version = "=0.0.1" }
7578
jito-bytemuck = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
7679
jito-account-traits-derive = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
7780
jito-jsm-core = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/**
2+
* This code was AUTOGENERATED using the kinobi library.
3+
* Please DO NOT EDIT THIS FILE, instead use visitors
4+
* to add features, then rerun kinobi to update it.
5+
*
6+
* @see https://github.com/kinobi-so/kinobi
7+
*/
8+
9+
export * from './weightTable';

0 commit comments

Comments
 (0)