mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-04-29 15:37:50 +00:00
* To simplify submit transaction requests by having only one version of them that supports both signed/unsigned transactions, the signed versions of them (submitSigned(), submitSignedReliable()) are deleted. * Their signed logic is merged into submit() and submitAndWait() (renamed from submitReliable()). * Change order of submit method params to be consistent. * Add a SubmitOptions method param to include options for wallet to sign a transaction, and booleans to autofill/failHard a transaction.
To run integration tests:
- Run rippled-standalone node, either in a docker container (preferred) or by installing rippled.
- With docker, run
docker run -p 6006:6006 -it natenichols/rippled-standalone:latest - Or download and build rippled and run
./rippled -a
- Run
npm test:integrationornpm test:browser
When editing integration tests:
- All imports should be from
xrpl-localinstead of../../src(browser tests need this)