@joai/warps-adapter-solana 1.0.0-beta.23 → 1.0.0-beta.25

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/dist/index.d.cts CHANGED
@@ -65,6 +65,8 @@ declare module '@solana/kit' {
65
65
  signMessage: (message: Uint8Array) => Promise<Uint8Array>
66
66
  signTransaction: (transaction: unknown) => Promise<unknown>
67
67
  }>
68
+
69
+ export function isDurableNonceTransaction(transaction: any): boolean
68
70
  }
69
71
 
70
72
  declare module '@x402/svm/exact/client' {
package/dist/index.d.ts CHANGED
@@ -65,6 +65,8 @@ declare module '@solana/kit' {
65
65
  signMessage: (message: Uint8Array) => Promise<Uint8Array>
66
66
  signTransaction: (transaction: unknown) => Promise<unknown>
67
67
  }>
68
+
69
+ export function isDurableNonceTransaction(transaction: any): boolean
68
70
  }
69
71
 
70
72
  declare module '@x402/svm/exact/client' {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joai/warps-adapter-solana",
3
- "version": "1.0.0-beta.23",
3
+ "version": "1.0.0-beta.25",
4
4
  "description": "Solana adapter for Warps SDK",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -36,12 +36,13 @@
36
36
  "access": "public"
37
37
  },
38
38
  "dependencies": {
39
+ "@joai/warps": "^3.0.0-beta.201",
39
40
  "@scure/bip39": "^2.0.1",
41
+ "@solana-program/compute-budget": "^0.11.0",
40
42
  "@solana/kit": "^5.3.0",
41
43
  "@solana/spl-token": "^0.4.14",
42
44
  "@solana/web3.js": "^1.98.4",
43
- "@joai/warps": "^3.0.0-beta.198",
44
- "@x402/svm": "^2.1.0",
45
+ "@x402/svm": "^2.2.0",
45
46
  "bs58": "^6.0.0",
46
47
  "tweetnacl": "^1.0.3"
47
48
  }