@faremeter/wallet-solana-squads 0.13.0 → 0.14.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.
Files changed (2) hide show
  1. package/README.md +41 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # @faremeter/wallet-solana-squads
2
+
3
+ Solana Squads Protocol multisig wallet integration for DAO and shared treasury payments.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm install @faremeter/wallet-solana-squads
9
+ ```
10
+
11
+ ## Features
12
+
13
+ - Multisig wallet support
14
+ - Squads Protocol integration
15
+ - Proposal and approval flow
16
+ - Threshold signatures
17
+
18
+ ## API Reference
19
+
20
+ <!-- TSDOC_START -->
21
+
22
+ ## Functions
23
+
24
+ - [createSquadsWallet](#createsquadswallet)
25
+
26
+ ### createSquadsWallet
27
+
28
+ | Function | Type |
29
+ | -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
30
+ | `createSquadsWallet` | `(network: string, connection: Connection, keypair: Keypair, multisigPda: PublicKey, squadMember: Keypair) => Promise<{ network: string; publicKey: PublicKey; buildTransaction: (instructions: TransactionInstruction[]) => Promise<...>; }>` |
31
+
32
+ <!-- TSDOC_END -->
33
+
34
+ ## Related Packages
35
+
36
+ - [@faremeter/payment-solana](https://www.npmjs.com/package/@faremeter/payment-solana) - Solana payment handler
37
+ - [@faremeter/fetch](https://www.npmjs.com/package/@faremeter/fetch) - Client fetch wrapper
38
+
39
+ ## License
40
+
41
+ LGPL-3.0-only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faremeter/wallet-solana-squads",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "Solana Squads Protocol multisig wallet integration for DAO and shared treasury payments",
5
5
  "keywords": [
6
6
  "faremeter",
@@ -27,7 +27,7 @@
27
27
  "typescript": "5.9.3",
28
28
  "typescript-eslint": "8.42.0",
29
29
  "typescript-language-server": "4.4.0",
30
- "@faremeter/fetch": "^0.13.0"
30
+ "@faremeter/fetch": "^0.14.0"
31
31
  },
32
32
  "dependencies": {
33
33
  "@logtape/logtape": "1.0.4",
@@ -35,6 +35,6 @@
35
35
  "@sqds/multisig": "^2.1.4",
36
36
  "bs58": "6.0.0",
37
37
  "fastestsmallesttextencoderdecoder": "^1.0.22",
38
- "@faremeter/types": "^0.13.0"
38
+ "@faremeter/types": "^0.14.0"
39
39
  }
40
40
  }