docs update

This commit is contained in:
Aleksandr Kraiz
2023-02-21 11:45:00 +04:00
parent d1fb90cc3c
commit 0b014ed058

View File

@@ -33,6 +33,7 @@ Orions SDK is free to use and does not require an API key or registration. Re
- [High level methods](#high-level-methods)
- [Get assets](#get-assets)
- [Get pairs](#get-pairs)
- [Get Orion Bridge history](#get-orion-bridge-history)
- [Withdraw](#withdraw)
- [Deposit](#deposit)
- [Get swap info](#get-swap-info)
@@ -139,6 +140,14 @@ const pairs = await orion.getPairs("spot"); // 'spot' | 'futures'
// }
```
### Get Orion Bridge history
```ts
const bridgeHistory = await orion.bridge.getHistory(
"0x0000000000000000000000000000000000000000"
);
```
### Withdraw
```ts