wsm-form
v0.0.46
Published
This module adds capabilities to web apps built with [Webstudio](https://webstudio.so) to invoke smart contract methods on any EVM compatible blockchain network.
Downloads
20
Readme
Webstudio Form Module
This module adds capabilities to web apps built with Webstudio to invoke smart contract methods on any EVM compatible blockchain network.
Testing and Building Module
npm i
npm run test
npm run build
Publish to NPMJS
npm publish
Importing Dependency in Webstudio
Add it to the project, this is compatible with grapesjs
as well.
npm i --save wsm-form@latest
To import in the editor add the file and include it as a Plugin
import PluginForm from "wsm-form"
const editor = grapesjs.init({
container: "#gjs",
plugins: [
PluginForm
],
})