73 lines
2.5 KiB
Go
73 lines
2.5 KiB
Go
package responses
|
|
|
|
import (
|
|
"github.com/status-im/status-go/errors"
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
"github.com/status-im/status-go/transactions"
|
|
)
|
|
|
|
type SendDetails struct {
|
|
Uuid string `json:"uuid"`
|
|
SendType int `json:"sendType"`
|
|
FromAddress types.Address `json:"fromAddress"`
|
|
ToAddress types.Address `json:"toAddress"`
|
|
FromToken string `json:"fromToken"`
|
|
ToToken string `json:"toToken"`
|
|
FromAmount string `json:"fromAmount"` // total amount
|
|
ToAmount string `json:"toAmount"`
|
|
OwnerTokenBeingSent bool `json:"ownerTokenBeingSent"`
|
|
ErrorResponse *errors.ErrorResponse `json:"errorResponse,omitempty"`
|
|
|
|
Username string `json:"username"`
|
|
PublicKey string `json:"publicKey"`
|
|
PackID string `json:"packId"`
|
|
}
|
|
|
|
type SigningDetails struct {
|
|
Address types.Address `json:"address"`
|
|
AddressPath string `json:"addressPath"`
|
|
KeyUid string `json:"keyUid"`
|
|
SignOnKeycard bool `json:"signOnKeycard"`
|
|
Hashes []types.Hash `json:"hashes"`
|
|
}
|
|
|
|
type RouterTransactionsForSigning struct {
|
|
SendDetails *SendDetails `json:"sendDetails"`
|
|
SigningDetails *SigningDetails `json:"signingDetails"`
|
|
}
|
|
|
|
type RouterSentTransaction struct {
|
|
FromAddress types.Address `json:"fromAddress"`
|
|
ToAddress types.Address `json:"toAddress"`
|
|
FromChain uint64 `json:"fromChain"`
|
|
ToChain uint64 `json:"toChain"`
|
|
FromToken string `json:"fromToken"`
|
|
ToToken string `json:"toToken"`
|
|
Amount string `json:"amount"` // amount of the transaction
|
|
Hash types.Hash `json:"hash"`
|
|
ApprovalTx bool `json:"approvalTx"`
|
|
}
|
|
|
|
type RouterSentTransactions struct {
|
|
SendDetails *SendDetails `json:"sendDetails"`
|
|
SentTransactions []*RouterSentTransaction `json:"sentTransactions"`
|
|
}
|
|
|
|
func NewRouterSentTransaction(sendArgs *transactions.SendTxArgs, hash types.Hash, approvalTx bool) *RouterSentTransaction {
|
|
addr := types.Address{}
|
|
if sendArgs.To != nil {
|
|
addr = *sendArgs.To
|
|
}
|
|
return &RouterSentTransaction{
|
|
FromAddress: sendArgs.From,
|
|
ToAddress: addr,
|
|
FromChain: sendArgs.FromChainID,
|
|
ToChain: sendArgs.ToChainID,
|
|
FromToken: sendArgs.FromTokenID,
|
|
ToToken: sendArgs.ToTokenID,
|
|
Amount: sendArgs.Value.String(),
|
|
Hash: hash,
|
|
ApprovalTx: approvalTx,
|
|
}
|
|
}
|