safe-react/.flowconfig
Mikhail Mikheev bc7d5836f6
Feature #180: Predict transaction nonce (#293)
* Dep bump

* Fetch transactions when safe view is mounted

* eslint fix

* Calculate new tx nonce from latest tx in service

* Fix tx cancellation, allow passing nonce to createTransaction

* dep bump

* Refactor createTransaction/processTransaction to use object as argument

* Adopting transactions table to new send tx flow with predicted nonces

* dep bump, disable esModule in file-loader options after new v5 release

* Don't show older tx annotation for already executed txs

* sort tx by nonce

* get new safe nonce after tx execution

* Bugfixes

* remove whitespace for showOlderTxAnnotation
2019-12-12 12:30:27 +04:00

36 lines
712 B
Plaintext

[ignore]
<PROJECT_ROOT>/migrations/**/.*
<PROJECT_ROOT>/contracts/**/.*
<PROJECT_ROOT>/scripts/**/.*
<PROJECT_ROOT>/public/**/.*
<PROJECT_ROOT>/babel.config.js
<PROJECT_ROOT>/jest.config.js
<PROJECT_ROOT>/truffle.js
[untyped]
<PROJECT_ROOT>/config/**/.*
[declarations]
<PROJECT_ROOT>/node_modules/**/.*
<PROJECT_ROOT>/flow-typed/**/.*
[include]
<PROJECT_ROOT>/src/**/.*
[libs]
<PROJECT_ROOT>/flow-typed/**/.*
[lints]
[options]
module.file_ext=.js
module.file_ext=.json
module.file_ext=.jsx
module.file_ext=.css
module.file_ext=.scss
module.name_mapper='^~' ->'<PROJECT_ROOT>/src'
module.name_mapper='^#' ->'<PROJECT_ROOT>/safe-contracts/build/contracts'
module.name_mapper='.*\(.s?css\)' -> '{}'
[strict]