nova-ui/types/store/store.ts

13 lines
343 B
TypeScript
Raw Normal View History

2022-12-04 09:02:30 +03:00
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
}