Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
6ba0c08
adjust to return messages
noopseth Apr 19, 2025
573360f
add openapi stuff
noopseth Apr 19, 2025
88c3f3c
remove ci
noopseth Apr 20, 2025
8bfe018
Merge pull request #1 from flywheel-trade/clearing-out
Apr 20, 2025
64560a3
update message hashing
noopseth Apr 21, 2025
80f63f0
add deserialize
noopseth Apr 21, 2025
503b332
.
noopseth Apr 21, 2025
316ded6
refine singing
noopseth Apr 22, 2025
f509452
adjust cfg flags
noopseth Apr 22, 2025
5c35ef8
mod visibility
noopseth Apr 22, 2025
524eb87
Merge pull request #2 from flywheel-trade/add-singing
noopseth Apr 22, 2025
cadf895
remove decimals
noopseth Apr 22, 2025
27c978b
add limit
noopseth Apr 23, 2025
aa48ade
readd wallet sign
noopseth Apr 23, 2025
7803793
return message as h256
noopseth Apr 23, 2025
61b16da
return action
noopseth Apr 23, 2025
32f50cc
return nonce
noopseth Apr 23, 2025
9a4c271
change structure
noopseth Apr 23, 2025
f0d99cd
hardcode none
noopseth Apr 23, 2025
a072cc5
remove hardcoded nonce
noopseth Apr 23, 2025
59937cb
remove wallets
noopseth Apr 23, 2025
962d139
sx and px as string
noopseth Apr 23, 2025
7ae86ce
add update leverage
noopseth Apr 24, 2025
eb0fa2a
add action hasher
noopseth Apr 24, 2025
9c56cab
accept reduce falg
noopseth Apr 25, 2025
6360fd4
cancel orders
noopseth Apr 25, 2025
9234698
add tpsl params
noopseth May 2, 2025
fb56b44
.
noopseth May 2, 2025
5ea8927
.
noopseth May 2, 2025
cf56954
update for cosmetics
noopseth May 13, 2025
92dcd87
add spot transfer
noopseth May 17, 2025
2f73b6f
set signature chain id
noopseth May 18, 2025
37570cf
remove signing chain
noopseth May 18, 2025
70d5326
readd ws
noopseth May 25, 2025
09de655
Merge branch 'master' of github.com:hyperliquid-dex/hyperliquid-rust-…
noopseth May 25, 2025
fb277eb
Merge pull request #5 from avydotxyz/hyperliquid-dex-master
noopseth May 25, 2025
fff7339
adjust file structures to our standart
noopseth May 25, 2025
e2489f7
add exponential backoff on ws
noopseth May 26, 2025
0ad0482
update ws to work as static
noopseth May 26, 2025
8bef1e0
add perp dex class transfer
noopseth Jun 12, 2025
320a2d5
update amount to string
noopseth Jun 12, 2025
6ef9de1
.
noopseth Jun 12, 2025
3440df5
add usdc class transfer
noopseth Jun 14, 2025
eba5e35
fix eip type
noopseth Jun 14, 2025
62a97cb
fix class trasnfer struct
noopseth Jun 14, 2025
195fe42
pass nonce
noopseth Jun 14, 2025
cc577cf
refacot to correctly hash user action
noopseth Jun 14, 2025
52f872b
fix error handling
noopseth Jun 14, 2025
077a00c
impletement 712 for dex transfer
noopseth Jun 14, 2025
ec71cb2
add builder fee hash
noopseth Jun 23, 2025
5f9db19
hash as address
noopseth Jun 25, 2025
00e94bc
fix build
noopseth Jun 25, 2025
1da2eee
add mainnet feautre
noopseth Jul 5, 2025
327d1c0
update perp transfer to send asset
noopseth Jul 7, 2025
5639231
fix asset send hashing
noopseth Jul 7, 2025
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
20 changes: 0 additions & 20 deletions .github/workflows/master.yml

This file was deleted.

25 changes: 15 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,27 @@ documentation = "https://github.com/hyperliquid-dex/hyperliquid-rust-sdk"
repository = "https://github.com/hyperliquid-dex/hyperliquid-rust-sdk"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
mainnet = []
testnet = []

[dependencies]
chrono = "0.4.26"
env_logger = "0.10.0"
ethers = {version = "2.0.14", features = ["eip712", "abigen"]}
env_logger = "0.11.8"
ethers = { version = "2.0.14", features = ["eip712", "abigen"] }
futures-util = "0.3.28"
hex = "0.4.3"
http = "0.2.9"
lazy_static = "1.3"
log = "0.4.19"
rand = "0.8.5"
reqwest = "0.11.18"
serde = {version = "1.0.175", features = ["derive"]}
rand = "0.9.1"
serde = { version = "1.0.175", features = ["derive"] }
serde_json = "1.0.103"
rmp-serde = "1.0.0"
thiserror = "1.0.44"
tokio = {version = "1.29.1", features = ["full"]}
tokio-tungstenite = {version = "0.20.0", features = ["native-tls"]}
uuid = {version = "1.6.1", features = ["v4"]}
thiserror = "2.0.12"
tokio = { version = "1.29.1", features = ["full"] }
tokio-tungstenite = { version = "0.26.2", features = ["native-tls"] }
uuid = { version = "1.16.0", features = ["v4", "serde"] }
utoipa = { version = "5", features = ["axum_extras", "chrono", "uuid"] }
utoipa-axum = "0.2"
utoipa-swagger-ui = { version = "9.0.1", features = ["axum"] }
17 changes: 0 additions & 17 deletions ci.sh

This file was deleted.

49 changes: 0 additions & 49 deletions src/bin/agent.rs

This file was deleted.

25 changes: 0 additions & 25 deletions src/bin/approve_builder_fee.rs

This file was deleted.

25 changes: 0 additions & 25 deletions src/bin/bridge_withdraw.rs

This file was deleted.

25 changes: 0 additions & 25 deletions src/bin/class_transfer.rs

This file was deleted.

185 changes: 0 additions & 185 deletions src/bin/info.rs

This file was deleted.

Loading