|
|
|
@ -27,26 +27,34 @@ export default class SendTransactionScreen extends PersistentForm { |
|
|
|
|
blockGasLimit: PropTypes.string, |
|
|
|
|
conversionRate: PropTypes.number, |
|
|
|
|
editingTransactionId: PropTypes.string, |
|
|
|
|
fetchBasicGasEstimates: PropTypes.func.isRequired, |
|
|
|
|
from: PropTypes.object, |
|
|
|
|
gasLimit: PropTypes.string, |
|
|
|
|
gasPrice: PropTypes.string, |
|
|
|
|
gasTotal: PropTypes.string, |
|
|
|
|
to: PropTypes.string, |
|
|
|
|
history: PropTypes.object, |
|
|
|
|
network: PropTypes.string, |
|
|
|
|
primaryCurrency: PropTypes.string, |
|
|
|
|
recentBlocks: PropTypes.array, |
|
|
|
|
resetSendState: PropTypes.func.isRequired, |
|
|
|
|
selectedAddress: PropTypes.string, |
|
|
|
|
selectedToken: PropTypes.object, |
|
|
|
|
showHexData: PropTypes.bool, |
|
|
|
|
to: PropTypes.string, |
|
|
|
|
toNickname: PropTypes.string, |
|
|
|
|
tokens: PropTypes.array, |
|
|
|
|
tokenBalance: PropTypes.string, |
|
|
|
|
tokenContract: PropTypes.object, |
|
|
|
|
fetchBasicGasEstimates: PropTypes.func, |
|
|
|
|
updateAndSetGasTotal: PropTypes.func, |
|
|
|
|
updateSendErrors: PropTypes.func, |
|
|
|
|
updateSendTokenBalance: PropTypes.func, |
|
|
|
|
scanQrCode: PropTypes.func, |
|
|
|
|
qrCodeDetected: PropTypes.func, |
|
|
|
|
updateAndSetGasLimit: PropTypes.func.isRequired, |
|
|
|
|
updateSendEnsResolution: PropTypes.func.isRequired, |
|
|
|
|
updateSendEnsResolutionError: PropTypes.func.isRequired, |
|
|
|
|
updateSendErrors: PropTypes.func.isRequired, |
|
|
|
|
updateSendTo: PropTypes.func.isRequired, |
|
|
|
|
updateSendTokenBalance: PropTypes.func.isRequired, |
|
|
|
|
updateToNicknameIfNecessary: PropTypes.func.isRequired, |
|
|
|
|
scanQrCode: PropTypes.func.isRequired, |
|
|
|
|
qrCodeDetected: PropTypes.func.isRequired, |
|
|
|
|
qrCodeData: PropTypes.object, |
|
|
|
|
ensResolution: PropTypes.string, |
|
|
|
|
ensResolutionError: PropTypes.string, |
|
|
|
|