WIP commit: fix fetching safe, next problem: funds.toNumber is not a function
This commit is contained in:
parent
78dc0d7bb0
commit
659eb9e48c
|
@ -44,7 +44,9 @@ const styles = () => ({
|
|||
},
|
||||
})
|
||||
|
||||
const Layout = openHoc(({ open, toggle, clickAway, classes, providerInfo, providerDetails }: Props) => (
|
||||
const Layout = openHoc(({
|
||||
open, toggle, clickAway, classes, providerInfo, providerDetails,
|
||||
}: Props) => (
|
||||
<React.Fragment>
|
||||
<Row className={classes.summary}>
|
||||
<Col start="xs" middle="xs" className={classes.logo}>
|
||||
|
|
|
@ -34,8 +34,11 @@ export const createSafe = async (values: Object, userAccount: string, addSafe: A
|
|||
await initContracts()
|
||||
const safe = await deploySafeContract(accounts, numConfirmations, userAccount)
|
||||
checkReceiptStatus(safe.tx)
|
||||
console.log(safe)
|
||||
const param = safe.logs[0].args.proxy
|
||||
const safeContract = GnosisSafe.at(param)
|
||||
console.log(param)
|
||||
const safeContract = await GnosisSafe.at(param)
|
||||
console.log(safeContract)
|
||||
|
||||
addSafe(name, safeContract.address, numConfirmations, owners, accounts)
|
||||
|
||||
|
|
Loading…
Reference in New Issue