@crossmint/lobster.cash 0.1.1 → 0.3.0

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 CHANGED
@@ -18,7 +18,7 @@ The plugin no longer requires manual API key pasting.
18
18
  ## Installation
19
19
 
20
20
  ```bash
21
- openclaw plugins install @crossmint/openclaw-wallet
21
+ openclaw plugins install @crossmint/lobster.cash
22
22
  ```
23
23
 
24
24
  ## Configuration
@@ -29,7 +29,7 @@ Enable the plugin in `~/.openclaw/.openclaw.json5`:
29
29
  {
30
30
  plugins: {
31
31
  entries: {
32
- "openclaw-wallet": {
32
+ "lobster.cash": {
33
33
  enabled: true,
34
34
  config: {
35
35
  serverBaseUrl: "https://www.lobster.cash",
@@ -41,6 +41,8 @@ Enable the plugin in `~/.openclaw/.openclaw.json5`:
41
41
  }
42
42
  ```
43
43
 
44
+ If you previously installed an older build that used the `openclaw-wallet` id, remove that entry and extension to avoid duplicate plugin warnings.
45
+
44
46
  ## Setup Workflow
45
47
 
46
48
  ### Step 1: Start setup
package/index.ts CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  import { crossmintConfigSchema } from "./src/config.js";
13
13
 
14
14
  const plugin = {
15
- id: "openclaw-wallet",
15
+ id: "lobster.cash",
16
16
  name: "Crossmint Wallet",
17
17
  description:
18
18
  "Solana wallet integration with Crossmint. Manage wallets, check balances, and send tokens using delegated signing.",
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "openclaw-wallet",
2
+ "id": "lobster.cash",
3
3
  "name": "Crossmint",
4
4
  "description": "Solana wallet integration using Crossmint smart wallets with delegated signing.",
5
5
  "version": "0.3.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossmint/lobster.cash",
3
- "version": "0.1.1",
3
+ "version": "0.3.0",
4
4
  "description": "OpenClaw plugin for Solana wallet integration with Crossmint smart wallets",
5
5
  "type": "module",
6
6
  "main": "./index.ts",