Last active
April 26, 2019 21:39
-
-
Save alexytiger/fbefda7212adf5d472c823c99f177c86 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const init = createAction('[Web3/Provider] Init'); | |
export const initSuccess = createAction('[Web3/Provider] Init Success'); | |
export const account = createAction('[Web3/Provider] Account', props<{ address: string }>()); | |
export const balance = createAction('[Web3/Provider] Balance'); | |
export const balanceSuccess = createAction('[Web3/Provider] Balance Success', props<{ balance: string }>()); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment