A plugin to correct common issues users experience while performing transactions.
npm install @wharfkit/transact-plugin-autocorrectA plugin to correct common issues users experience while performing transactions.
Install plugin.
```
yarn add @wharfkit/transact-plugin-autocorrect
Include when configuring the Session Kit:
`ts
import {TransactPluginAutoCorrect} from '@wharfkit/transact-plugin-autocorrect'
const kit = new SessionKit({
// ... your other options
transactPlugins: [new TransactPluginAutoCorrect()],
})
`
Or when you are manually configuring a Session:
`ts
import {TransactPluginAutoCorrect} from '@wharfkit/transact-plugin-autocorrect'
const session = new Session({
// ... your other options
transactPlugins: [new TransactPluginAutoCorrect()],
})
`
You need Make, node.js and yarn installed.
Clone the repository and run make to checkout all dependencies and build the project. See the Makefile for other useful targets. Before submitting a pull request make sure to run make lint`.
---
Made with ☕️ & ❤️ by Greymass, if you find this useful please consider supporting us.