You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6-9Lines changed: 6 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,19 +18,16 @@
18
18
19
19
### Changed
20
20
21
-
- Decouple `createTransfer` and `createTrade` from waiting for completion, in favor of a separate `wait` method.
22
-
This allows for developers to have reference to the transfer and trade objects in the case where
23
-
there is a timeout while waiting for them to confirm/fail on-chain.
24
-
- Update `reload()` method to work with both External and Wallet address.
25
-
- Update `createStakingOperation` logic to make sure we only pull in newer unsigned txs from the server.
26
-
This is especially important for External Address use-case where tx signing and broadcast status is maintained on client side, and we risk overwriting the existing txs.
27
-
- Increase default timeout for `createStakingOperation` to 10 min.
28
-
29
-
### Changed
30
21
- The `createTransfer` and `createTrade` functions no longer wait for the transactions to confirm or
31
22
fail on-chain.
32
23
- Now they return a `Transfer` and `Trade` object respectively, which support the `wait`
33
24
function, e.g. `await transfer.wait()`.
25
+
- This ensures that the developer has a reference to the object in case there is a timeout while
26
+
waiting to land on-chain.
27
+
- Update `reload()` method to work with both External and Wallet address.
28
+
- Update `createStakingOperation` logic to make sure we only pull in newer unsigned txs from the server.
29
+
This is especially important for External Address use-case where tx signing and broadcast status is maintained on client side, and we risk overwriting the existing txs.
30
+
- Increase default timeout for `createStakingOperation` to 10 min.
0 commit comments