Skip to content

Commit

Permalink
update supported chains
Browse files Browse the repository at this point in the history
  • Loading branch information
dennohpeter committed Jul 15, 2024
1 parent 0fc88b5 commit 3bebab3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#### Features

- [ ] Add support for `spotSend` on exchange
- [ ] Update supported chains
4 changes: 2 additions & 2 deletions examples/info/perps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ pub async fn main() {

let user = wallet.address();

let info = Hyperliquid::new(Chain::Dev);
let info = Hyperliquid::new(Chain::ArbitrumTestnet);

let exchange = Hyperliquid::new(Chain::Dev);
let exchange = Hyperliquid::new(Chain::ArbitrumTestnet);

let now = SystemTime::now()
.duration_since(SystemTime::UNIX_EPOCH)
Expand Down
2 changes: 1 addition & 1 deletion examples/subaccount.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async fn main() {
.unwrap(),
);

let exchange: Exchange = Hyperliquid::new(Chain::Dev);
let exchange: Exchange = Hyperliquid::new(Chain::ArbitrumTestnet);

println!("Creating subaccount...");
let name = {
Expand Down

0 comments on commit 3bebab3

Please sign in to comment.