2024-05-16 08:55:46 +00:00
|
|
|
package router
|
2024-05-14 19:11:16 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"math"
|
|
|
|
"math/big"
|
|
|
|
"sort"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
"github.com/status-im/status-go/params"
|
|
|
|
"github.com/status-im/status-go/services/wallet/async"
|
2024-06-05 07:56:02 +00:00
|
|
|
walletCommon "github.com/status-im/status-go/services/wallet/common"
|
2024-06-06 15:52:16 +00:00
|
|
|
"github.com/status-im/status-go/services/wallet/router/bridge"
|
2024-05-14 19:11:16 +00:00
|
|
|
walletToken "github.com/status-im/status-go/services/wallet/token"
|
|
|
|
)
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
var (
|
|
|
|
supportedNetworks = map[uint64]bool{
|
|
|
|
walletCommon.EthereumMainnet: true,
|
|
|
|
walletCommon.OptimismMainnet: true,
|
|
|
|
walletCommon.ArbitrumMainnet: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
supportedTestNetworks = map[uint64]bool{
|
|
|
|
walletCommon.EthereumSepolia: true,
|
|
|
|
walletCommon.OptimismSepolia: true,
|
|
|
|
walletCommon.ArbitrumSepolia: true,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2024-05-16 07:37:36 +00:00
|
|
|
type RouteInputParams struct {
|
2024-05-16 08:55:46 +00:00
|
|
|
SendType SendType `json:"sendType" validate:"required"`
|
|
|
|
AddrFrom common.Address `json:"addrFrom" validate:"required"`
|
|
|
|
AddrTo common.Address `json:"addrTo" validate:"required"`
|
|
|
|
AmountIn *hexutil.Big `json:"amountIn" validate:"required"`
|
|
|
|
TokenID string `json:"tokenID" validate:"required"`
|
2024-05-16 07:37:36 +00:00
|
|
|
ToTokenID string `json:"toTokenID"`
|
|
|
|
DisabledFromChainIDs []uint64 `json:"disabledFromChainIDs"`
|
|
|
|
DisabledToChaindIDs []uint64 `json:"disabledToChaindIDs"`
|
|
|
|
PreferedChainIDs []uint64 `json:"preferedChainIDs"`
|
2024-05-16 08:55:46 +00:00
|
|
|
GasFeeMode GasFeeMode `json:"gasFeeMode" validate:"required"`
|
2024-05-16 07:37:36 +00:00
|
|
|
FromLockedAmount map[uint64]*hexutil.Big `json:"fromLockedAmount"`
|
2024-05-16 08:55:46 +00:00
|
|
|
TestnetMode bool `json:"testnetMode"`
|
2024-06-05 07:56:02 +00:00
|
|
|
|
|
|
|
// For send types like EnsRegister, EnsRelease, EnsSetPubKey, StickersBuy
|
|
|
|
Username string `json:"username"`
|
|
|
|
PublicKey string `json:"publicKey"`
|
2024-05-16 07:37:36 +00:00
|
|
|
}
|
|
|
|
|
2024-05-14 19:11:16 +00:00
|
|
|
type PathV2 struct {
|
|
|
|
BridgeName string
|
2024-06-05 08:36:27 +00:00
|
|
|
FromChain *params.Network // Source chain
|
|
|
|
ToChain *params.Network // Destination chain
|
2024-05-14 19:11:16 +00:00
|
|
|
FromToken *walletToken.Token // Token on the source chain
|
|
|
|
AmountIn *hexutil.Big // Amount that will be sent from the source chain
|
|
|
|
AmountInLocked bool // Is the amount locked
|
|
|
|
AmountOut *hexutil.Big // Amount that will be received on the destination chain
|
|
|
|
|
|
|
|
SuggestedPriorityFees *PriorityFees // Suggested priority fees for the transaction
|
|
|
|
|
|
|
|
TxBaseFee *hexutil.Big // Base fee for the transaction
|
|
|
|
TxPriorityFee *hexutil.Big // Priority fee for the transaction, by default we're using the Medium priority fee
|
|
|
|
TxGasAmount uint64 // Gas used for the transaction
|
|
|
|
TxBonderFees *hexutil.Big // Bonder fees for the transaction - used for Hop bridge
|
|
|
|
TxTokenFees *hexutil.Big // Token fees for the transaction - used for bridges (represent the difference between the amount in and the amount out)
|
|
|
|
TxL1Fee *hexutil.Big // L1 fee for the transaction - used for for transactions placed on L2 chains
|
|
|
|
|
|
|
|
ApprovalRequired bool // Is approval required for the transaction
|
|
|
|
ApprovalAmountRequired *hexutil.Big // Amount required for the approval transaction
|
|
|
|
ApprovalContractAddress *common.Address // Address of the contract that needs to be approved
|
|
|
|
ApprovalBaseFee *hexutil.Big // Base fee for the approval transaction
|
|
|
|
ApprovalPriorityFee *hexutil.Big // Priority fee for the approval transaction
|
|
|
|
ApprovalGasAmount uint64 // Gas used for the approval transaction
|
|
|
|
ApprovalL1Fee *hexutil.Big // L1 fee for the approval transaction - used for for transactions placed on L2 chains
|
|
|
|
|
|
|
|
EstimatedTime TransactionEstimation
|
|
|
|
|
|
|
|
requiredTokenBalance *big.Int
|
|
|
|
requiredNativeBalance *big.Int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PathV2) Equal(o *PathV2) bool {
|
2024-06-05 08:36:27 +00:00
|
|
|
return p.FromChain.ChainID == o.FromChain.ChainID && p.ToChain.ChainID == o.ToChain.ChainID
|
2024-05-14 19:11:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type SuggestedRoutesV2 struct {
|
|
|
|
Best []*PathV2
|
|
|
|
Candidates []*PathV2
|
|
|
|
TokenPrice float64
|
|
|
|
NativeChainTokenPrice float64
|
|
|
|
}
|
|
|
|
|
|
|
|
type GraphV2 = []*NodeV2
|
|
|
|
|
|
|
|
type NodeV2 struct {
|
|
|
|
Path *PathV2
|
|
|
|
Children GraphV2
|
|
|
|
}
|
|
|
|
|
|
|
|
func newSuggestedRoutesV2(
|
|
|
|
amountIn *big.Int,
|
|
|
|
candidates []*PathV2,
|
|
|
|
fromLockedAmount map[uint64]*hexutil.Big,
|
|
|
|
tokenPrice float64,
|
|
|
|
nativeChainTokenPrice float64,
|
|
|
|
) *SuggestedRoutesV2 {
|
|
|
|
suggestedRoutes := &SuggestedRoutesV2{
|
|
|
|
Candidates: candidates,
|
|
|
|
Best: candidates,
|
|
|
|
TokenPrice: tokenPrice,
|
|
|
|
NativeChainTokenPrice: nativeChainTokenPrice,
|
|
|
|
}
|
|
|
|
if len(candidates) == 0 {
|
|
|
|
return suggestedRoutes
|
|
|
|
}
|
|
|
|
|
|
|
|
node := &NodeV2{
|
|
|
|
Path: nil,
|
|
|
|
Children: buildGraphV2(amountIn, candidates, 0, []uint64{}),
|
|
|
|
}
|
|
|
|
routes := node.buildAllRoutesV2()
|
|
|
|
routes = filterRoutesV2(routes, amountIn, fromLockedAmount)
|
|
|
|
best := findBestV2(routes, tokenPrice, nativeChainTokenPrice)
|
|
|
|
|
|
|
|
if len(best) > 0 {
|
|
|
|
sort.Slice(best, func(i, j int) bool {
|
|
|
|
return best[i].AmountInLocked
|
|
|
|
})
|
|
|
|
rest := new(big.Int).Set(amountIn)
|
|
|
|
for _, path := range best {
|
|
|
|
diff := new(big.Int).Sub(rest, path.AmountIn.ToInt())
|
2024-06-05 07:56:02 +00:00
|
|
|
if diff.Cmp(bridge.ZeroBigIntValue) >= 0 {
|
2024-05-14 19:11:16 +00:00
|
|
|
path.AmountIn = (*hexutil.Big)(path.AmountIn.ToInt())
|
|
|
|
} else {
|
|
|
|
path.AmountIn = (*hexutil.Big)(new(big.Int).Set(rest))
|
|
|
|
}
|
|
|
|
rest.Sub(rest, path.AmountIn.ToInt())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
suggestedRoutes.Best = best
|
|
|
|
return suggestedRoutes
|
|
|
|
}
|
|
|
|
|
|
|
|
func newNodeV2(path *PathV2) *NodeV2 {
|
|
|
|
return &NodeV2{Path: path, Children: make(GraphV2, 0)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func buildGraphV2(AmountIn *big.Int, routes []*PathV2, level int, sourceChainIDs []uint64) GraphV2 {
|
|
|
|
graph := make(GraphV2, 0)
|
|
|
|
for _, route := range routes {
|
|
|
|
found := false
|
|
|
|
for _, chainID := range sourceChainIDs {
|
2024-06-05 08:36:27 +00:00
|
|
|
if chainID == route.FromChain.ChainID {
|
2024-05-14 19:11:16 +00:00
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if found {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
node := newNodeV2(route)
|
|
|
|
|
|
|
|
newRoutes := make([]*PathV2, 0)
|
|
|
|
for _, r := range routes {
|
|
|
|
if route.Equal(r) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
newRoutes = append(newRoutes, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
newAmountIn := new(big.Int).Sub(AmountIn, route.AmountIn.ToInt())
|
|
|
|
if newAmountIn.Sign() > 0 {
|
|
|
|
newSourceChainIDs := make([]uint64, len(sourceChainIDs))
|
|
|
|
copy(newSourceChainIDs, sourceChainIDs)
|
2024-06-05 08:36:27 +00:00
|
|
|
newSourceChainIDs = append(newSourceChainIDs, route.FromChain.ChainID)
|
2024-05-14 19:11:16 +00:00
|
|
|
node.Children = buildGraphV2(newAmountIn, newRoutes, level+1, newSourceChainIDs)
|
|
|
|
|
|
|
|
if len(node.Children) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
graph = append(graph, node)
|
|
|
|
}
|
|
|
|
|
|
|
|
return graph
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n NodeV2) buildAllRoutesV2() [][]*PathV2 {
|
|
|
|
res := make([][]*PathV2, 0)
|
|
|
|
|
|
|
|
if len(n.Children) == 0 && n.Path != nil {
|
|
|
|
res = append(res, []*PathV2{n.Path})
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, node := range n.Children {
|
|
|
|
for _, route := range node.buildAllRoutesV2() {
|
|
|
|
extendedRoute := route
|
|
|
|
if n.Path != nil {
|
|
|
|
extendedRoute = append([]*PathV2{n.Path}, route...)
|
|
|
|
}
|
|
|
|
res = append(res, extendedRoute)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
func findBestV2(routes [][]*PathV2, tokenPrice float64, nativeChainTokenPrice float64) []*PathV2 {
|
|
|
|
var best []*PathV2
|
|
|
|
bestCost := big.NewFloat(math.Inf(1))
|
|
|
|
for _, route := range routes {
|
|
|
|
currentCost := big.NewFloat(0)
|
|
|
|
for _, path := range route {
|
2024-05-23 12:38:39 +00:00
|
|
|
tokenDenominator := big.NewFloat(math.Pow(10, float64(path.FromToken.Decimals)))
|
|
|
|
|
2024-05-21 14:33:36 +00:00
|
|
|
path.requiredTokenBalance = new(big.Int).Set(path.AmountIn.ToInt())
|
|
|
|
path.requiredNativeBalance = big.NewInt(0)
|
2024-05-14 19:11:16 +00:00
|
|
|
|
|
|
|
// ecaluate the cost of the path
|
|
|
|
pathCost := big.NewFloat(0)
|
|
|
|
nativeTokenPrice := new(big.Float).SetFloat64(nativeChainTokenPrice)
|
|
|
|
|
|
|
|
if path.TxBaseFee != nil && path.TxPriorityFee != nil {
|
|
|
|
feePerGas := new(big.Int).Add(path.TxBaseFee.ToInt(), path.TxPriorityFee.ToInt())
|
|
|
|
txFeeInWei := new(big.Int).Mul(feePerGas, big.NewInt(int64(path.TxGasAmount)))
|
|
|
|
txFeeInEth := gweiToEth(weiToGwei(txFeeInWei))
|
|
|
|
|
|
|
|
path.requiredNativeBalance.Add(path.requiredNativeBalance, txFeeInWei)
|
|
|
|
pathCost = new(big.Float).Mul(txFeeInEth, nativeTokenPrice)
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
if path.TxBonderFees != nil && path.TxBonderFees.ToInt().Cmp(bridge.ZeroBigIntValue) > 0 {
|
2024-05-23 12:38:39 +00:00
|
|
|
path.requiredTokenBalance.Add(path.requiredTokenBalance, path.TxBonderFees.ToInt())
|
|
|
|
pathCost.Add(pathCost, new(big.Float).Mul(
|
|
|
|
new(big.Float).Quo(new(big.Float).SetInt(path.TxBonderFees.ToInt()), tokenDenominator),
|
|
|
|
new(big.Float).SetFloat64(tokenPrice)))
|
2024-05-14 19:11:16 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
if path.TxL1Fee != nil && path.TxL1Fee.ToInt().Cmp(bridge.ZeroBigIntValue) > 0 {
|
2024-05-14 19:11:16 +00:00
|
|
|
l1FeeInWei := path.TxL1Fee.ToInt()
|
|
|
|
l1FeeInEth := gweiToEth(weiToGwei(l1FeeInWei))
|
|
|
|
|
|
|
|
path.requiredNativeBalance.Add(path.requiredNativeBalance, l1FeeInWei)
|
|
|
|
pathCost.Add(pathCost, new(big.Float).Mul(l1FeeInEth, nativeTokenPrice))
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
if path.TxTokenFees != nil && path.TxTokenFees.ToInt().Cmp(bridge.ZeroBigIntValue) > 0 && path.FromToken != nil {
|
2024-05-14 19:11:16 +00:00
|
|
|
path.requiredTokenBalance.Add(path.requiredTokenBalance, path.TxTokenFees.ToInt())
|
|
|
|
pathCost.Add(pathCost, new(big.Float).Mul(
|
2024-05-23 12:38:39 +00:00
|
|
|
new(big.Float).Quo(new(big.Float).SetInt(path.TxTokenFees.ToInt()), tokenDenominator),
|
2024-05-14 19:11:16 +00:00
|
|
|
new(big.Float).SetFloat64(tokenPrice)))
|
|
|
|
}
|
|
|
|
|
|
|
|
if path.ApprovalRequired {
|
|
|
|
if path.ApprovalBaseFee != nil && path.ApprovalPriorityFee != nil {
|
|
|
|
feePerGas := new(big.Int).Add(path.ApprovalBaseFee.ToInt(), path.ApprovalPriorityFee.ToInt())
|
|
|
|
txFeeInWei := new(big.Int).Mul(feePerGas, big.NewInt(int64(path.ApprovalGasAmount)))
|
|
|
|
txFeeInEth := gweiToEth(weiToGwei(txFeeInWei))
|
|
|
|
|
|
|
|
path.requiredNativeBalance.Add(path.requiredNativeBalance, txFeeInWei)
|
|
|
|
pathCost.Add(pathCost, new(big.Float).Mul(txFeeInEth, nativeTokenPrice))
|
|
|
|
}
|
|
|
|
|
|
|
|
if path.ApprovalL1Fee != nil {
|
|
|
|
l1FeeInWei := path.ApprovalL1Fee.ToInt()
|
|
|
|
l1FeeInEth := gweiToEth(weiToGwei(l1FeeInWei))
|
|
|
|
|
|
|
|
path.requiredNativeBalance.Add(path.requiredNativeBalance, l1FeeInWei)
|
|
|
|
pathCost.Add(pathCost, new(big.Float).Mul(l1FeeInEth, nativeTokenPrice))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
currentCost = new(big.Float).Add(currentCost, pathCost)
|
|
|
|
}
|
|
|
|
|
|
|
|
if currentCost.Cmp(bestCost) == -1 {
|
|
|
|
best = route
|
|
|
|
bestCost = currentCost
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return best
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
func validateInputData(input *RouteInputParams) error {
|
|
|
|
if input.SendType == ENSRegister {
|
|
|
|
if input.Username == "" || input.PublicKey == "" {
|
|
|
|
return errors.New("username and public key are required for ENSRegister")
|
|
|
|
}
|
|
|
|
if input.TestnetMode {
|
|
|
|
if input.TokenID != bridge.SttSymbol {
|
|
|
|
return errors.New("only STT is supported for ENSRegister on testnet")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if input.TokenID != bridge.SntSymbol {
|
|
|
|
return errors.New("only SNT is supported for ENSRegister")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-06-05 12:46:10 +00:00
|
|
|
if input.SendType == ENSRelease {
|
|
|
|
if input.Username == "" {
|
|
|
|
return errors.New("username is required for ENSRelease")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
if input.FromLockedAmount != nil && len(input.FromLockedAmount) > 0 {
|
|
|
|
for chainID, amount := range input.FromLockedAmount {
|
|
|
|
if input.TestnetMode {
|
|
|
|
if !supportedTestNetworks[chainID] {
|
|
|
|
return errors.New("locked amount is not supported for the selected network")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if !supportedNetworks[chainID] {
|
|
|
|
return errors.New("locked amount is not supported for the selected network")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if amount == nil || amount.ToInt().Sign() < 0 {
|
|
|
|
return errors.New("locked amount must be positive")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-05-16 08:55:46 +00:00
|
|
|
func (r *Router) SuggestedRoutesV2(ctx context.Context, input *RouteInputParams) (*SuggestedRoutesV2, error) {
|
2024-06-05 07:56:02 +00:00
|
|
|
err := validateInputData(input)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-05-16 08:55:46 +00:00
|
|
|
networks, err := r.rpcClient.NetworkManager.Get(false)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
group = async.NewAtomicGroup(ctx)
|
|
|
|
mu sync.Mutex
|
|
|
|
candidates = make([]*PathV2, 0)
|
|
|
|
)
|
|
|
|
|
|
|
|
for networkIdx := range networks {
|
|
|
|
network := networks[networkIdx]
|
2024-05-16 08:55:46 +00:00
|
|
|
if network.IsTest != input.TestnetMode {
|
2024-05-14 19:11:16 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-16 07:37:36 +00:00
|
|
|
if containsNetworkChainID(network, input.DisabledFromChainIDs) {
|
2024-05-14 19:11:16 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-16 07:37:36 +00:00
|
|
|
if !input.SendType.isAvailableFor(network) {
|
2024-05-14 19:11:16 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
var (
|
|
|
|
token *walletToken.Token
|
|
|
|
toToken *walletToken.Token
|
|
|
|
)
|
|
|
|
|
|
|
|
token = input.SendType.FindToken(r.tokenManager, r.collectiblesService, input.AddrFrom, network, input.TokenID)
|
2024-05-14 19:11:16 +00:00
|
|
|
if token == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-16 07:37:36 +00:00
|
|
|
if input.SendType == Swap {
|
2024-05-16 08:55:46 +00:00
|
|
|
toToken = input.SendType.FindToken(r.tokenManager, r.collectiblesService, common.Address{}, network, input.ToTokenID)
|
2024-05-14 19:11:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
amountLocked := false
|
2024-05-16 07:37:36 +00:00
|
|
|
amountToSend := input.AmountIn.ToInt()
|
|
|
|
if lockedAmount, ok := input.FromLockedAmount[network.ChainID]; ok {
|
2024-05-14 19:11:16 +00:00
|
|
|
amountToSend = lockedAmount.ToInt()
|
|
|
|
amountLocked = true
|
|
|
|
}
|
2024-05-16 07:37:36 +00:00
|
|
|
if len(input.FromLockedAmount) > 0 {
|
|
|
|
for chainID, lockedAmount := range input.FromLockedAmount {
|
2024-05-14 19:11:16 +00:00
|
|
|
if chainID == network.ChainID {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
amountToSend = new(big.Int).Sub(amountToSend, lockedAmount.ToInt())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
group.Add(func(c context.Context) error {
|
2024-05-16 08:55:46 +00:00
|
|
|
client, err := r.rpcClient.EthClient(network.ChainID)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
for _, brdg := range r.bridges {
|
|
|
|
if !input.SendType.canUseBridge(brdg) {
|
2024-05-14 19:11:16 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, dest := range networks {
|
2024-05-16 08:55:46 +00:00
|
|
|
if dest.IsTest != input.TestnetMode {
|
2024-05-14 19:11:16 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-16 10:22:32 +00:00
|
|
|
if !input.SendType.isAvailableFor(network) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if !input.SendType.isAvailableBetween(network, dest) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-16 07:37:36 +00:00
|
|
|
if len(input.PreferedChainIDs) > 0 && !containsNetworkChainID(dest, input.PreferedChainIDs) {
|
2024-05-14 19:11:16 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-16 07:37:36 +00:00
|
|
|
if containsNetworkChainID(dest, input.DisabledToChaindIDs) {
|
2024-05-14 19:11:16 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
bridgeParams := bridge.BridgeParams{
|
|
|
|
FromChain: network,
|
|
|
|
ToChain: dest,
|
|
|
|
FromToken: token,
|
|
|
|
ToToken: toToken,
|
|
|
|
ToAddr: input.AddrTo,
|
|
|
|
FromAddr: input.AddrFrom,
|
|
|
|
AmountIn: amountToSend,
|
|
|
|
|
|
|
|
Username: input.Username,
|
|
|
|
PublicKey: input.PublicKey,
|
|
|
|
}
|
|
|
|
|
|
|
|
can, err := brdg.AvailableFor(bridgeParams)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil || !can {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
bonderFees, tokenFees, err := brdg.CalculateFees(bridgeParams)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
gasLimit, err := brdg.EstimateGas(bridgeParams)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
2024-05-14 19:11:16 +00:00
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
approvalContractAddress, err := brdg.GetContractAddress(bridgeParams)
|
2024-05-23 12:38:39 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
approvalRequired, approvalAmountRequired, approvalGasLimit, l1ApprovalFee, err := r.requireApproval(ctx, input.SendType, &approvalContractAddress, input.AddrFrom, network, token, amountToSend)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var l1FeeWei uint64
|
2024-05-16 07:37:36 +00:00
|
|
|
if input.SendType.needL1Fee() {
|
2024-05-14 19:11:16 +00:00
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
txInputData, err := brdg.PackTxInputData(bridgeParams, "")
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-21 14:33:36 +00:00
|
|
|
l1FeeWei, _ = r.feesManager.GetL1Fee(ctx, network.ChainID, txInputData)
|
2024-05-14 19:11:16 +00:00
|
|
|
}
|
|
|
|
|
2024-05-16 08:55:46 +00:00
|
|
|
baseFee, err := r.feesManager.getBaseFee(ctx, client)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-16 08:55:46 +00:00
|
|
|
priorityFees, err := r.feesManager.getPriorityFees(ctx, client, baseFee)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
selctedPriorityFee := priorityFees.Medium
|
2024-05-16 07:37:36 +00:00
|
|
|
if input.GasFeeMode == GasFeeHigh {
|
2024-05-14 19:11:16 +00:00
|
|
|
selctedPriorityFee = priorityFees.High
|
2024-05-16 07:37:36 +00:00
|
|
|
} else if input.GasFeeMode == GasFeeLow {
|
2024-05-14 19:11:16 +00:00
|
|
|
selctedPriorityFee = priorityFees.Low
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
amountOut, err := brdg.CalculateAmountOut(bridgeParams)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
maxFeesPerGas := new(big.Float)
|
|
|
|
maxFeesPerGas.Add(new(big.Float).SetInt(baseFee), new(big.Float).SetInt(selctedPriorityFee))
|
2024-05-16 08:55:46 +00:00
|
|
|
estimatedTime := r.feesManager.TransactionEstimatedTime(ctx, network.ChainID, maxFeesPerGas)
|
2024-05-14 19:11:16 +00:00
|
|
|
if approvalRequired && estimatedTime < MoreThanFiveMinutes {
|
|
|
|
estimatedTime += 1
|
|
|
|
}
|
|
|
|
|
|
|
|
mu.Lock()
|
|
|
|
candidates = append(candidates, &PathV2{
|
2024-06-05 07:56:02 +00:00
|
|
|
BridgeName: brdg.Name(),
|
2024-06-05 08:36:27 +00:00
|
|
|
FromChain: network,
|
|
|
|
ToChain: network,
|
2024-05-14 19:11:16 +00:00
|
|
|
FromToken: token,
|
|
|
|
AmountIn: (*hexutil.Big)(amountToSend),
|
|
|
|
AmountInLocked: amountLocked,
|
|
|
|
AmountOut: (*hexutil.Big)(amountOut),
|
|
|
|
|
|
|
|
SuggestedPriorityFees: &priorityFees,
|
|
|
|
|
|
|
|
TxBaseFee: (*hexutil.Big)(baseFee),
|
|
|
|
TxPriorityFee: (*hexutil.Big)(selctedPriorityFee),
|
|
|
|
TxGasAmount: gasLimit,
|
|
|
|
TxBonderFees: (*hexutil.Big)(bonderFees),
|
|
|
|
TxTokenFees: (*hexutil.Big)(tokenFees),
|
|
|
|
TxL1Fee: (*hexutil.Big)(big.NewInt(int64(l1FeeWei))),
|
|
|
|
|
|
|
|
ApprovalRequired: approvalRequired,
|
|
|
|
ApprovalAmountRequired: (*hexutil.Big)(approvalAmountRequired),
|
2024-05-23 12:38:39 +00:00
|
|
|
ApprovalContractAddress: &approvalContractAddress,
|
2024-05-14 19:11:16 +00:00
|
|
|
ApprovalBaseFee: (*hexutil.Big)(baseFee),
|
|
|
|
ApprovalPriorityFee: (*hexutil.Big)(selctedPriorityFee),
|
|
|
|
ApprovalGasAmount: approvalGasLimit,
|
|
|
|
ApprovalL1Fee: (*hexutil.Big)(big.NewInt(int64(l1ApprovalFee))),
|
|
|
|
|
|
|
|
EstimatedTime: estimatedTime,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
mu.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
group.Wait()
|
|
|
|
|
2024-05-16 08:55:46 +00:00
|
|
|
prices, err := input.SendType.FetchPrices(r.marketManager, input.TokenID)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-05-16 07:37:36 +00:00
|
|
|
suggestedRoutes := newSuggestedRoutesV2(input.AmountIn.ToInt(), candidates, input.FromLockedAmount, prices[input.TokenID], prices["ETH"])
|
2024-05-14 19:11:16 +00:00
|
|
|
|
|
|
|
// check the best route for the required balances
|
|
|
|
for _, path := range suggestedRoutes.Best {
|
|
|
|
|
|
|
|
if path.requiredTokenBalance != nil && path.requiredTokenBalance.Cmp(big.NewInt(0)) > 0 {
|
|
|
|
tokenBalance := big.NewInt(1)
|
2024-05-16 07:37:36 +00:00
|
|
|
if input.SendType == ERC1155Transfer {
|
2024-06-05 08:36:27 +00:00
|
|
|
tokenBalance, err = r.getERC1155Balance(ctx, path.FromChain, path.FromToken, input.AddrFrom)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-05-16 07:37:36 +00:00
|
|
|
} else if input.SendType != ERC721Transfer {
|
2024-06-05 08:36:27 +00:00
|
|
|
tokenBalance, err = r.getBalance(ctx, path.FromChain, path.FromToken, input.AddrFrom)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if tokenBalance.Cmp(path.requiredTokenBalance) == -1 {
|
|
|
|
return suggestedRoutes, errors.New("not enough token balance")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-05 08:36:27 +00:00
|
|
|
nativeToken := r.tokenManager.FindToken(path.FromChain, path.FromChain.NativeCurrencySymbol)
|
2024-05-14 19:11:16 +00:00
|
|
|
if nativeToken == nil {
|
|
|
|
return nil, errors.New("native token not found")
|
|
|
|
}
|
|
|
|
|
2024-06-05 08:36:27 +00:00
|
|
|
nativeBalance, err := r.getBalance(ctx, path.FromChain, nativeToken, input.AddrFrom)
|
2024-05-14 19:11:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if nativeBalance.Cmp(path.requiredNativeBalance) == -1 {
|
|
|
|
return suggestedRoutes, errors.New("not enough native balance")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return suggestedRoutes, nil
|
|
|
|
}
|