Skip to content

Instantly share code, notes, and snippets.

@alexytiger
Last active April 26, 2019 21:39
Show Gist options
  • Save alexytiger/fbefda7212adf5d472c823c99f177c86 to your computer and use it in GitHub Desktop.
Save alexytiger/fbefda7212adf5d472c823c99f177c86 to your computer and use it in GitHub Desktop.
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