@worldcoin/minikit-js 1.9.8 → 1.9.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/build/{chunk-Q55KYUW6.js → chunk-XFGJKKI2.js} +1476 -1086
- package/build/index.cjs +1713 -1292
- package/build/index.d.cts +495 -486
- package/build/index.d.ts +495 -486
- package/build/index.js +71 -9
- package/build/minikit-provider.cjs +1174 -816
- package/build/minikit-provider.js +1 -1
- package/index.ts +12 -3
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -30,3 +30,10 @@ To quick start with a template, run:
|
|
|
30
30
|
This will create a new directory called `my-first-mini-app` with a basic template setup.
|
|
31
31
|
|
|
32
32
|
Take a look at the in the template for more information.
|
|
33
|
+
|
|
34
|
+
## Contributing
|
|
35
|
+
|
|
36
|
+
### Adding a New Command
|
|
37
|
+
|
|
38
|
+
1. Create `commands/new-command.ts` — define all types (input, payload, response, errors) and implementation in one file
|
|
39
|
+
2. Update `commands/index.ts` — add to the enum and wire up in `createCommands`/`createAsyncCommands`
|