Skip to content

Commit

Permalink
add set_price_extra ix
Browse files Browse the repository at this point in the history
  • Loading branch information
bonedaddy committed Jul 23, 2022
1 parent 3d5939f commit 84da383
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sighashdb"
version = "0.1.34"
version = "0.1.35"
edition = "2021"
authors = ["Tulip Protocol"]
description = "sighashdb is a collection of anchor instruction sighashes commonly seen acrossa variety of anchor based programs"
Expand Down
4 changes: 4 additions & 0 deletions db/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,8 @@ impl GlobalSighashDB {
"create_user_farm_obligation" => Some([193, 96, 101, 180, 136, 210, 148, 120]),
"close_position_info_account" => Some([44, 205, 56, 239, 135, 45, 94, 116]),
"create_user_farm" => Some([229, 49, 30, 92, 43, 69, 49, 220]),
"set_price_extra" => Some([209, 65, 58, 32, 52, 135, 176, 148]),

_ => None,
}
}
Expand Down Expand Up @@ -381,6 +383,8 @@ impl GlobalSighashDB {
}
[44, 205, 56, 239, 135, 45, 94, 116] => Some("close_position_info_account".to_string()),
[229, 49, 30, 92, 43, 69, 49, 220] => Some("create_user_farm".to_string()),
[209, 65, 58, 32, 52, 135, 176, 148] => Some("set_price_extra".to_string()),

_ => None,
}
}
Expand Down

0 comments on commit 84da383

Please sign in to comment.