2022-11-30 10:51:24 +01:00
|
|
|
package tasker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"encoding/json"
|
|
|
|
"math/big"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/celo-org/celo-blockchain/common"
|
2022-12-01 14:07:22 +01:00
|
|
|
"github.com/grassrootseconomics/w3-celo-patch"
|
2022-11-30 10:51:24 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
QueueName string
|
|
|
|
TaskName string
|
|
|
|
)
|
|
|
|
|
|
|
|
type SystemContainer struct {
|
2022-12-01 14:07:22 +01:00
|
|
|
Abis map[string]*w3.Func
|
2023-02-15 08:05:43 +01:00
|
|
|
AccountIndexContract common.Address
|
|
|
|
GasFaucetContract common.Address
|
2022-11-30 10:51:24 +01:00
|
|
|
GasRefillThreshold *big.Int
|
|
|
|
GasRefillValue *big.Int
|
|
|
|
GiftableGasValue *big.Int
|
|
|
|
GiftableToken common.Address
|
|
|
|
GiftableTokenValue *big.Int
|
|
|
|
LockPrefix string
|
|
|
|
LockTimeout time.Duration
|
|
|
|
PrivateKey *ecdsa.PrivateKey
|
|
|
|
PublicKey string
|
|
|
|
TokenDecimals int
|
|
|
|
TokenTransferGasLimit uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Task struct {
|
|
|
|
Id string `json:"id"`
|
|
|
|
Payload json.RawMessage `json:"payload"`
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2023-02-20 10:56:30 +01:00
|
|
|
AccountPrepareTask TaskName = "sys:prepare_account"
|
|
|
|
AccountRegisterTask TaskName = "sys:register_account"
|
|
|
|
AccountGiftGasTask TaskName = "sys:gift_gas"
|
|
|
|
AccountGiftVoucherTask TaskName = "sys:gift_token"
|
|
|
|
AccountRefillGasTask TaskName = "sys:refill_gas"
|
2023-02-15 08:05:43 +01:00
|
|
|
SignTransferTask TaskName = "usr:sign_transfer"
|
2023-02-20 10:56:30 +01:00
|
|
|
DispatchTxTask TaskName = "rpc:dispatch"
|
2022-11-30 10:51:24 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
HighPriority QueueName = "high_priority"
|
|
|
|
DefaultPriority QueueName = "default_priority"
|
|
|
|
)
|