@paulstinchcombe/gasless-nft-tx 0.4.1 → 0.4.3

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -271,6 +271,8 @@ Check the `examples/` directory for complete working examples:
271
271
  ### KAMI NFT Examples
272
272
 
273
273
  - `mint-with-tokenid-example.ts` - 🆕 **Minting with enhanced token info (all KAMI handlers)**
274
+ - `check-library-deployment.ts` - 🆕 **Verify KAMI libraries are deployed**
275
+ - `nextjs-kami-config.ts` - 🆕 **Next.js helper for loading libraries from environment**
274
276
  - `kami-payment-example.ts` - Complete KAMI payment flow with ERC20 tokens
275
277
  - `deploy-shared-libraries-example.ts` - Deploy and share KAMI libraries (44-66% gas savings)
276
278
 
@@ -349,6 +351,8 @@ pnpm run dev
349
351
  - 📊 **[Gas Savings Analysis](./docs/KAMI_GAS_SAVINGS_ANALYSIS.md)** - Detailed cost breakdown (saves 44-66%!)
350
352
  - 📘 **[KAMI Operations Guide](./docs/KAMI_OPERATIONS.md)** - Complete operations reference (UPDATED v0.4.0)
351
353
  - 📚 **[Library Sharing Guide](./docs/KAMI_LIBRARY_SHARING.md)** - Maximize efficiency
354
+ - 🔍 **[Library Verification Guide](./docs/LIBRARY_VERIFICATION_GUIDE.md)** - Check if libraries are deployed
355
+ - 🆕 **[Next.js Library Deployment](./docs/NEXTJS_LIBRARY_DEPLOYMENT.md)** - **Using libraries in Next.js APIs**
352
356
  - 🚀 **[Quick Start](./docs/KAMI_QUICK_START.md)** - Get started in 5 minutes
353
357
  - 🔧 **[Deployment Notes](./docs/KAMI_DEPLOYMENT_NOTES.md)** - Production considerations
354
358
  - 💡 **[Mint with TokenId Example](./examples/mint-with-tokenid-example.ts)** - Get token info from mints
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paulstinchcombe/gasless-nft-tx",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "Library for gasless NFT transactions using SimpleAccount operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",