Refactor web3Wrapper to a separate package

This commit is contained in:
Leonid Logvinov
2017-12-06 20:55:09 +03:00
parent 598f1dd2d8
commit f1b267cc9f
69 changed files with 366 additions and 275 deletions

View File

@@ -20,7 +20,7 @@ interface LifeCycleRaisedButtonProps {
labelReady: React.ReactNode|string;
labelLoading: React.ReactNode|string;
labelComplete: React.ReactNode|string;
onClickAsyncFn: () => boolean;
onClickAsyncFn: () => Promise<boolean>;
backgroundColor?: string;
labelColor?: string;
}