@codama/renderers-js 1.2.5 → 1.2.7

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.
@@ -101,6 +101,6 @@ export function getAccountMetaFactory(
101
101
  }
102
102
 
103
103
  export function isTransactionSigner<TAddress extends string = string>(value: Address<TAddress> | ProgramDerivedAddress<TAddress> | TransactionSigner<TAddress>): value is TransactionSigner<TAddress> {
104
- return !!value && typeof value === 'object' && 'address' in value && web3JsIsTransactionSigner(value);
104
+ return !!value && typeof value === 'object' && 'address' in value && kitIsTransactionSigner(value);
105
105
  }
106
106
  {% endblock %}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codama/renderers-js",
3
- "version": "1.2.5",
4
- "description": "JavaScript renderer compatible with the Solana web3.js library",
3
+ "version": "1.2.7",
4
+ "description": "JavaScript renderer compatible with the Solana Kit library",
5
5
  "exports": {
6
6
  "types": "./dist/types/index.d.ts",
7
7
  "node": {
@@ -25,18 +25,17 @@
25
25
  "standard",
26
26
  "renderers",
27
27
  "js",
28
- "web3.js",
29
28
  "client"
30
29
  ],
31
30
  "dependencies": {
32
31
  "@solana/codecs-strings": "rc",
33
32
  "nunjucks": "^3.2.4",
34
- "prettier": "^3.5.1",
35
- "@codama/errors": "1.2.6",
36
- "@codama/nodes": "1.2.6",
37
- "@codama/nodes-from-anchor": "1.1.6",
38
- "@codama/renderers-core": "1.0.8",
39
- "@codama/visitors-core": "1.2.6"
33
+ "prettier": "^3.5.2",
34
+ "@codama/errors": "1.2.8",
35
+ "@codama/nodes": "1.2.8",
36
+ "@codama/visitors-core": "1.2.8",
37
+ "@codama/nodes-from-anchor": "1.1.8",
38
+ "@codama/renderers-core": "1.0.10"
40
39
  },
41
40
  "devDependencies": {
42
41
  "@types/nunjucks": "^3.2.6"