nova-ui/types/store/store.ts
2022-12-04 07:02:30 +01:00

13 lines
343 B
TypeScript

import { WalletState, AccountState, RelayerState, GasPriceState, ApplicationState, TransactionState } from '@/types'
export interface RootState {
root: boolean
version: string
wallet: WalletState
account: AccountState
relayer: RelayerState
gasPrice: GasPriceState
application: ApplicationState
transaction: TransactionState
}