40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import {
|
|
AccessContractAction,
|
|
setInteractiveContract
|
|
} from 'actions/contracts';
|
|
import { showNotification } from 'actions/notifications';
|
|
import { isValidETHAddress } from 'libs/validators';
|
|
import { SagaIterator } from 'redux-saga';
|
|
import { put, takeEvery } from 'redux-saga/effects';
|
|
import translate from 'translations';
|
|
|
|
function* handleAccessContract(action: AccessContractAction): SagaIterator {
|
|
const contractFunctions: any[] = [];
|
|
|
|
if (!action.address || !isValidETHAddress(action.address)) {
|
|
yield put(showNotification('danger', translate('ERROR_5'), 5000));
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const abi = JSON.parse(action.abiJson);
|
|
if (abi.constructor !== Array) {
|
|
throw new Error('ABI JSON was not an array!');
|
|
}
|
|
|
|
abi.forEach(instruction => {
|
|
if (instruction.type === 'function') {
|
|
contractFunctions.push(instruction);
|
|
}
|
|
});
|
|
|
|
yield put(setInteractiveContract(contractFunctions));
|
|
} catch (err) {
|
|
yield put(showNotification('danger', translate('ERROR_26'), 5000));
|
|
}
|
|
}
|
|
|
|
export default function* contractsSaga(): SagaIterator {
|
|
yield takeEvery('ACCESS_CONTRACT', handleAccessContract);
|
|
}
|