mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +00:00
efccac79ad
* Refactor BaseNode to be an interface INode * Initial contract commit * Remove redundant fallback ABI function * First working iteration of Contract generator to be used in ENS branch * Hide abi to clean up logging output * Strip 0x prefix from output decode * Handle unnamed output params * Implement ability to supply output mappings to ABI functions * Fix null case in outputMapping * Add flow typing * Add .call method to functions * Partial commit for type refactor * Temp contract type fix -- waiting for NPM modularization * Misc. Optimizations to tsconfig + webpack * Convert Contracts to TS * Remove nested prop passing from contracts, get rid of contract reducers / sagas / redux state * Add disclaimer modal to footer * Remove duplicate code & unnecessary styles * Add contracts to nav * Wrap Contracts in App * Add ether/hex validation override for contract creation calls * First iteration of working deploy contract * Delete routing file that shouldnt exist * Revert "Misc. Optimizations to tsconfig + webpack" This reverts commit 70cba3a07f4255153a9e277b3c41032a4b661c94. * Cleanup HOC code * Fix formatting noise * remove un-used css style * Remove deterministic contract address computation * Remove empty files * Cleanup contract * Add call request to node interface * Fix output mapping types * Revert destructuring overboard * Add sendCallRequest to rpcNode class and add typing * Use enum for selecting ABI methods * Fix tslint error & add media query for modals * Nest Media Query * Fix contracts to include new router fixes * Add transaction capability to contracts * Get ABI parsing + contract calls almost fully integrated using dynamic contract parser lib * Refactor contract deploy to have a reusable HOC for contract interact * Move modal and tx comparasion up file tree * Include ABI outputs in display * Cleanup privaite/public members * Remove broadcasting step from a contract transaction * Update TX contract components to inter-op with interact and deploy * Finish contracts-interact functionality * Add transaction capability to contracts * Cleanup privaite/public members * Remove broadcasting step from a contract transaction * Apply James's CSS fix * Cleanup uneeded types * Remove unecessary class * Add UI side validation and helper utils, addresess PR comments * Fix spacing + remove unused imports / types * Fix spacing + remove unused imports / types * Address PR comments * Actually address PR comments * Actually address PR comments
26 lines
768 B
TypeScript
26 lines
768 B
TypeScript
// Application styles must come first in order, to allow for overrides
|
|
import 'assets/styles/etherwallet-master.less';
|
|
import 'font-awesome/scss/font-awesome.scss';
|
|
import 'sass/styles.scss';
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
import Root from './Root';
|
|
import createHistory from 'history/createBrowserHistory';
|
|
import { configuredStore } from './store';
|
|
|
|
const history = createHistory();
|
|
|
|
const appEl = document.getElementById('app');
|
|
|
|
render(<Root store={configuredStore} history={history} />, appEl);
|
|
|
|
if (module.hot) {
|
|
module.hot.accept('reducers', () =>
|
|
configuredStore.replaceReducer(require('reducers'))
|
|
);
|
|
|
|
module.hot.accept('./Root', () => {
|
|
render(<Root store={configuredStore} history={history} />, appEl);
|
|
});
|
|
}
|