@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 +4 -2
- package/index.ts +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
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/
|
|
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
|
-
"
|
|
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: "
|
|
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.",
|
package/openclaw.plugin.json
CHANGED