-
Notifications
You must be signed in to change notification settings - Fork 985
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement getSuggestedRoutes in the wallet Send Flow
Signed-off-by: Brian Sztamfater <brian@status.im>
- Loading branch information
1 parent
de4e233
commit 4c604ab
Showing
14 changed files
with
199 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
(ns status-im2.contexts.wallet.send.events | ||
(:require | ||
[status-im2.constants :as constants] | ||
[taoensso.timbre :as log] | ||
[utils.datetime :as datetime] | ||
[utils.money :as money] | ||
[utils.number] | ||
[utils.re-frame :as rf])) | ||
|
||
(rf/reg-event-fx :wallet/suggested-routes-success | ||
(fn [{:keys [db]} [suggested-routes timestamp]] | ||
(when (= (get-in db [:wallet :ui :send :suggested-routes-call-timestamp]) timestamp) | ||
{:db (-> db | ||
(assoc-in [:wallet :ui :send :suggested-routes] suggested-routes) | ||
(assoc-in [:wallet :ui :send :route] (first (:Best suggested-routes))) | ||
(assoc-in [:wallet :ui :send :loading-suggested-routes?] false))}))) | ||
|
||
(rf/reg-event-fx :wallet/suggested-routes-error | ||
(fn [{:keys [db]} [_error]] | ||
{:db (-> db | ||
(update-in [:wallet :ui :send] dissoc :suggested-routes) | ||
(update-in [:wallet :ui :send] dissoc :route) | ||
(assoc-in [:wallet :ui :send :loading-suggested-routes?] false))})) | ||
|
||
(rf/reg-event-fx :wallet/clean-suggested-routes | ||
(fn [{:keys [db]}] | ||
{:db (-> db | ||
(update-in [:wallet :ui :send] dissoc :suggested-routes) | ||
(update-in [:wallet :ui :send] dissoc :route) | ||
(update-in [:wallet :ui :send] dissoc :loading-suggested-routes?))})) | ||
|
||
(rf/reg-event-fx :wallet/select-send-address | ||
(fn [{:keys [db]} [address]] | ||
{:db (assoc-in db [:wallet :ui :send :to-address] address)})) | ||
|
||
(rf/reg-event-fx :wallet/send-select-token | ||
(fn [{:keys [db]} [token stack-id]] | ||
{:db (assoc-in db [:wallet :ui :send :token] token) | ||
:fx [[:navigate-to-within-stack [:wallet-send-input-amount stack-id]]]})) | ||
|
||
(rf/reg-event-fx :wallet/get-suggested-routes | ||
(fn [{:keys [db]} [amount]] | ||
(let [wallet-address (get-in db [:wallet :current-viewing-account-address]) | ||
token (get-in db [:wallet :ui :send :token]) | ||
to-address (get-in db [:wallet :ui :send :to-address]) | ||
token-decimal (:decimals token) | ||
token-id (:symbol token) | ||
network-preferences [constants/mainnet-chain-id] ; TODO: don't hardcode network preferences | ||
gas-rates constants/gas-rate-low | ||
amount-in (money/mul (money/bignumber amount) | ||
(money/from-decimal token-decimal)) | ||
from-address wallet-address | ||
request-params [constants/send-type-transfer | ||
from-address | ||
to-address | ||
(money/to-hex amount-in) | ||
token-id | ||
[] | ||
[] | ||
network-preferences | ||
gas-rates | ||
{}] | ||
timestamp (datetime/timestamp)] | ||
{:db (-> db | ||
(assoc-in [:wallet :ui :send :loading-suggested-routes?] true) | ||
(assoc-in [:wallet :ui :send :suggested-routes-call-timestamp] | ||
timestamp)) | ||
:json-rpc/call [{:method "wallet_getSuggestedRoutes" | ||
:params request-params | ||
:on-success (fn [suggested-routes] | ||
(rf/dispatch [:wallet/suggested-routes-success suggested-routes | ||
timestamp])) | ||
:on-error (fn [error] | ||
(rf/dispatch [:wallet/suggested-routes-error error]) | ||
(log/error "failed to get suggested routes" | ||
{:event :wallet/get-suggested-routes | ||
:error error | ||
:params request-params}))}]}))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.