mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-12 18:06:47 +01:00
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package tasker
|
|
|
|
import (
|
|
"crypto/ecdsa"
|
|
"encoding/json"
|
|
"math/big"
|
|
"time"
|
|
|
|
"github.com/celo-org/celo-blockchain/common"
|
|
)
|
|
|
|
type (
|
|
QueueName string
|
|
TaskName string
|
|
)
|
|
|
|
type SystemContainer struct {
|
|
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 (
|
|
PrepareAccountTask TaskName = "sys:prepare_account"
|
|
GiftGasTask TaskName = "sys:gift_gas"
|
|
GiftTokenTask TaskName = "sys:gift_token"
|
|
RefillGasTask TaskName = "admin:refill_gas"
|
|
SweepGasTask TaskName = "admin:sweep_gas"
|
|
AdminTokenApprovalTask TaskName = "admin:token_approval"
|
|
TransferTokenTask TaskName = "usr:transfer_token"
|
|
TxDispatchTask TaskName = "rpc:dispatch"
|
|
)
|
|
|
|
const (
|
|
HighPriority QueueName = "high_priority"
|
|
DefaultPriority QueueName = "default_priority"
|
|
)
|