2020-05-13 01:11:10 +03:00
|
|
|
import { createAction } from '@reduxjs/toolkit'
|
2021-09-22 00:45:24 +03:00
|
|
|
import { TradeType } from '@uniswap/sdk-core'
|
2021-09-22 02:21:28 +03:00
|
|
|
|
2021-09-22 00:45:24 +03:00
|
|
|
import { VoteOption } from '../governance/types'
|
2020-05-13 01:11:10 +03:00
|
|
|
|
2020-05-13 17:59:51 +03:00
|
|
|
export interface SerializableTransactionReceipt {
|
|
|
|
to: string
|
|
|
|
from: string
|
|
|
|
contractAddress: string
|
|
|
|
transactionIndex: number
|
|
|
|
blockHash: string
|
|
|
|
transactionHash: string
|
|
|
|
blockNumber: number
|
|
|
|
status?: number
|
|
|
|
}
|
|
|
|
|
2021-09-22 00:45:24 +03:00
|
|
|
/**
|
|
|
|
* Be careful adding to this enum, always assign a unique value (typescript will not prevent duplicate values).
|
|
|
|
* These values is persisted in state and if you change the value it will cause errors
|
|
|
|
*/
|
|
|
|
export enum TransactionType {
|
|
|
|
APPROVAL = 0,
|
|
|
|
SWAP = 1,
|
|
|
|
DEPOSIT_LIQUIDITY_STAKING = 2,
|
|
|
|
WITHDRAW_LIQUIDITY_STAKING = 3,
|
|
|
|
CLAIM = 4,
|
|
|
|
VOTE = 5,
|
|
|
|
DELEGATE = 6,
|
|
|
|
WRAP = 7,
|
|
|
|
CREATE_V3_POOL = 8,
|
|
|
|
ADD_LIQUIDITY_V3_POOL = 9,
|
|
|
|
ADD_LIQUIDITY_V2_POOL = 10,
|
|
|
|
MIGRATE_LIQUIDITY_V3 = 11,
|
|
|
|
COLLECT_FEES = 12,
|
|
|
|
REMOVE_LIQUIDITY_V3 = 13,
|
|
|
|
SUBMIT_PROPOSAL = 14,
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface BaseTransactionInfo {
|
|
|
|
type: TransactionType
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface VoteTransactionInfo extends BaseTransactionInfo {
|
|
|
|
type: TransactionType.VOTE
|
|
|
|
governorAddress: string
|
|
|
|
proposalId: number
|
|
|
|
decision: VoteOption
|
|
|
|
reason: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface DelegateTransactionInfo extends BaseTransactionInfo {
|
|
|
|
type: TransactionType.DELEGATE
|
|
|
|
delegatee: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ApproveTransactionInfo extends BaseTransactionInfo {
|
|
|
|
type: TransactionType.APPROVAL
|
|
|
|
tokenAddress: string
|
|
|
|
spender: string
|
|
|
|
}
|
|
|
|
|
|
|
|
interface BaseSwapTransactionInfo extends BaseTransactionInfo {
|
|
|
|
type: TransactionType.SWAP
|
|
|
|
tradeType: TradeType
|
|
|
|
inputCurrencyId: string
|
|
|
|
outputCurrencyId: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ExactInputSwapTransactionInfo extends BaseSwapTransactionInfo {
|
|
|
|
tradeType: TradeType.EXACT_INPUT
|
|
|
|
inputCurrencyAmountRaw: string
|
|
|
|
expectedOutputCurrencyAmountRaw: string
|
|
|
|
minimumOutputCurrencyAmountRaw: string
|
|
|
|
}
|
|
|
|
export interface ExactOutputSwapTransactionInfo extends BaseSwapTransactionInfo {
|
|
|
|
tradeType: TradeType.EXACT_OUTPUT
|
|
|
|
outputCurrencyAmountRaw: string
|
|
|
|
expectedInputCurrencyAmountRaw: string
|
|
|
|
maximumInputCurrencyAmountRaw: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface DepositLiquidityStakingTransactionInfo {
|
|
|
|
type: TransactionType.DEPOSIT_LIQUIDITY_STAKING
|
|
|
|
token0Address: string
|
|
|
|
token1Address: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface WithdrawLiquidityStakingTransactionInfo {
|
|
|
|
type: TransactionType.WITHDRAW_LIQUIDITY_STAKING
|
|
|
|
token0Address: string
|
|
|
|
token1Address: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface WrapTransactionInfo {
|
|
|
|
type: TransactionType.WRAP
|
|
|
|
unwrapped: boolean
|
|
|
|
currencyAmountRaw: string
|
2021-12-22 22:25:10 +03:00
|
|
|
chainId?: number
|
2021-09-22 00:45:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ClaimTransactionInfo {
|
|
|
|
type: TransactionType.CLAIM
|
|
|
|
recipient: string
|
|
|
|
uniAmountRaw?: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateV3PoolTransactionInfo {
|
|
|
|
type: TransactionType.CREATE_V3_POOL
|
|
|
|
baseCurrencyId: string
|
|
|
|
quoteCurrencyId: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AddLiquidityV3PoolTransactionInfo {
|
|
|
|
type: TransactionType.ADD_LIQUIDITY_V3_POOL
|
|
|
|
createPool: boolean
|
|
|
|
baseCurrencyId: string
|
|
|
|
quoteCurrencyId: string
|
|
|
|
feeAmount: number
|
|
|
|
expectedAmountBaseRaw: string
|
|
|
|
expectedAmountQuoteRaw: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AddLiquidityV2PoolTransactionInfo {
|
|
|
|
type: TransactionType.ADD_LIQUIDITY_V2_POOL
|
|
|
|
baseCurrencyId: string
|
|
|
|
quoteCurrencyId: string
|
|
|
|
expectedAmountBaseRaw: string
|
|
|
|
expectedAmountQuoteRaw: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MigrateV2LiquidityToV3TransactionInfo {
|
|
|
|
type: TransactionType.MIGRATE_LIQUIDITY_V3
|
|
|
|
baseCurrencyId: string
|
|
|
|
quoteCurrencyId: string
|
|
|
|
isFork: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CollectFeesTransactionInfo {
|
|
|
|
type: TransactionType.COLLECT_FEES
|
|
|
|
currencyId0: string
|
|
|
|
currencyId1: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RemoveLiquidityV3TransactionInfo {
|
|
|
|
type: TransactionType.REMOVE_LIQUIDITY_V3
|
|
|
|
baseCurrencyId: string
|
|
|
|
quoteCurrencyId: string
|
|
|
|
expectedAmountBaseRaw: string
|
|
|
|
expectedAmountQuoteRaw: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SubmitProposalTransactionInfo {
|
|
|
|
type: TransactionType.SUBMIT_PROPOSAL
|
|
|
|
}
|
|
|
|
|
|
|
|
export type TransactionInfo =
|
|
|
|
| ApproveTransactionInfo
|
|
|
|
| ExactOutputSwapTransactionInfo
|
|
|
|
| ExactInputSwapTransactionInfo
|
|
|
|
| ClaimTransactionInfo
|
|
|
|
| VoteTransactionInfo
|
|
|
|
| DelegateTransactionInfo
|
|
|
|
| DepositLiquidityStakingTransactionInfo
|
|
|
|
| WithdrawLiquidityStakingTransactionInfo
|
|
|
|
| WrapTransactionInfo
|
|
|
|
| CreateV3PoolTransactionInfo
|
|
|
|
| AddLiquidityV3PoolTransactionInfo
|
|
|
|
| AddLiquidityV2PoolTransactionInfo
|
|
|
|
| MigrateV2LiquidityToV3TransactionInfo
|
|
|
|
| CollectFeesTransactionInfo
|
|
|
|
| RemoveLiquidityV3TransactionInfo
|
|
|
|
| SubmitProposalTransactionInfo
|
|
|
|
|
2021-09-28 22:36:33 +03:00
|
|
|
export const addTransaction = createAction<{
|
|
|
|
chainId: number
|
|
|
|
hash: string
|
|
|
|
from: string
|
|
|
|
info: TransactionInfo
|
|
|
|
}>('transactions/addTransaction')
|
2021-05-20 19:21:40 +03:00
|
|
|
export const clearAllTransactions = createAction<{ chainId: number }>('transactions/clearAllTransactions')
|
2020-05-13 17:59:51 +03:00
|
|
|
export const finalizeTransaction = createAction<{
|
2021-05-20 19:21:40 +03:00
|
|
|
chainId: number
|
2020-05-13 17:59:51 +03:00
|
|
|
hash: string
|
|
|
|
receipt: SerializableTransactionReceipt
|
2020-07-27 02:07:02 +03:00
|
|
|
}>('transactions/finalizeTransaction')
|
|
|
|
export const checkedTransaction = createAction<{
|
2021-05-20 19:21:40 +03:00
|
|
|
chainId: number
|
2020-07-27 02:07:02 +03:00
|
|
|
hash: string
|
|
|
|
blockNumber: number
|
|
|
|
}>('transactions/checkedTransaction')
|