mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
31 lines
647 B
Go
31 lines
647 B
Go
|
package pathprocessor
|
||
|
|
||
|
import (
|
||
|
"math/big"
|
||
|
|
||
|
"github.com/ethereum/go-ethereum/common"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ZeroAddress = common.Address{}
|
||
|
ZeroBigIntValue = big.NewInt(0)
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
IncreaseEstimatedGasFactor = 1.1
|
||
|
|
||
|
EthSymbol = "ETH"
|
||
|
SntSymbol = "SNT"
|
||
|
SttSymbol = "STT"
|
||
|
|
||
|
ProcessorTransferName = "Transfer"
|
||
|
ProcessorBridgeHopName = "Hop"
|
||
|
ProcessorBridgeCelerName = "CBridge"
|
||
|
ProcessorSwapParaswapName = "Paraswap"
|
||
|
ProcessorERC721Name = "ERC721Transfer"
|
||
|
ProcessorERC1155Name = "ERC1155Transfer"
|
||
|
ProcessorENSRegisterName = "ENSRegister"
|
||
|
ProcessorENSReleaseName = "ENSRelease"
|
||
|
ProcessorENSPublicKeyName = "ENSPublicKey"
|
||
|
)
|