40 lines
1.2 KiB
Go
40 lines
1.2 KiB
Go
package pathprocessor
|
|
|
|
import (
|
|
"fmt"
|
|
"math/big"
|
|
"strings"
|
|
|
|
ethTypes "github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/status-im/status-go/account"
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
)
|
|
|
|
func getSigner(chainID uint64, from types.Address, verifiedAccount *account.SelectedExtKey) bind.SignerFn {
|
|
return func(addr common.Address, tx *ethTypes.Transaction) (*ethTypes.Transaction, error) {
|
|
s := ethTypes.NewLondonSigner(new(big.Int).SetUint64(chainID))
|
|
return ethTypes.SignTx(tx, s, verifiedAccount.AccountKey.PrivateKey)
|
|
}
|
|
}
|
|
|
|
func makeKey(fromChain, toChain uint64, fromTokenSymbol, toTokenSymbol string, amount *big.Int) string {
|
|
key := fmt.Sprintf("%d-%d", fromChain, toChain)
|
|
if fromTokenSymbol != "" || toTokenSymbol != "" {
|
|
key = fmt.Sprintf("%s-%s-%s", key, fromTokenSymbol, toTokenSymbol)
|
|
}
|
|
if amount != nil {
|
|
key = fmt.Sprintf("%s-%s", key, amount.String())
|
|
}
|
|
return key
|
|
}
|
|
|
|
func getNameFromEnsUsername(ensUsername string) string {
|
|
if strings.HasSuffix(ensUsername, StatusDomain) {
|
|
return ensUsername[:len(ensUsername)-len(StatusDomain)]
|
|
}
|
|
return ensUsername
|
|
}
|