get a substring of last 40 chars when getting proxy from storage

This commit is contained in:
mmv 2019-05-31 22:32:25 +04:00
parent 031766fbce
commit 05573407a5
3 changed files with 9 additions and 3 deletions

View File

@ -41,7 +41,7 @@ const OpenPaper = ({
<Block style={containerStyle} className={`${classes.container} ${padding ? classes.padding : ''}`}>
{children}
</Block>
{ controls }
{controls}
</Paper>
)
}

View File

@ -1,6 +1,5 @@
// @flow
import * as React from 'react'
import contract from 'truffle-contract'
import { withStyles } from '@material-ui/core/styles'
import Field from '~/components/forms/Field'
import {
@ -63,7 +62,13 @@ export const safeFieldsValidation = async (values: Object) => {
// check mastercopy
const proxyAddressFromStorage = await web3.eth.getStorageAt(safeAddress, 0)
const checksummedProxyAddress = web3.utils.toChecksumAddress(proxyAddressFromStorage)
// https://www.reddit.com/r/ethereum/comments/6l3da1/how_long_are_ethereum_addresses/
// ganache returns plain address
// rinkeby returns 0x0000000000000+{40 address charachers}
// address comes last so we just get last 40 charachers (1byte = 2hex chars)
const checksummedProxyAddress = web3.utils.toChecksumAddress(
`0x${proxyAddressFromStorage.substr(proxyAddressFromStorage.length - 40)}`,
)
const safeMaster = await getSafeMasterContract()
const masterCopy = safeMaster.address

View File

@ -116,6 +116,7 @@ export default createMuiTheme({
order: 0,
marginTop: '0px',
backgroundColor: '#EAE9EF',
zIndex: 1, // for firefox
},
},
MuiInput: {