@subql/common-solana 1.0.1 → 1.0.2

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/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.0.2] - 2025-07-24
10
+ ### Fixed
11
+ - Fix templates not included in published package (#14)
12
+
13
+ ### Changed
14
+ - Update @subql dependencies (#14)
15
+
9
16
  ## [1.0.1] - 2025-07-01
10
17
  ### Changed
11
18
  - Update `@subql/common` (#12)
@@ -14,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
21
  ### Changed
15
22
  - Initial release
16
23
 
17
- [Unreleased]: https://github.com/subquery/subql-solana/compare/common-solana/1.0.1...HEAD
24
+ [Unreleased]: https://github.com/subquery/subql-solana/compare/common-solana/1.0.2...HEAD
25
+ [1.0.2]: https://github.com/subquery/subql-solana/compare/common-solana/1.0.1...common-solana/1.0.2
18
26
  [1.0.1]: https://github.com/subquery/subql-solana/compare/common-solana/1.0.0...common-solana/1.0.1
19
27
  [1.0.0]: https://github.com/subquery/subql-solana/releases/tag/common-solana/1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/common-solana",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf dist && tsc -b",
@@ -16,8 +16,8 @@
16
16
  "dependencies": {
17
17
  "@codama/nodes-from-anchor": "^1.1.11",
18
18
  "@codama/renderers-js": "^1.2.10",
19
- "@subql/common": "^5.7.0",
20
- "@subql/types-solana": "1.0.1",
19
+ "@subql/common": "^5.7.3",
20
+ "@subql/types-solana": "1.0.2",
21
21
  "codama": "^1.2.11",
22
22
  "js-yaml": "^4.1.0",
23
23
  "pino": "^6.13.3",
@@ -44,6 +44,7 @@
44
44
  "!/dist/**/*.test.js",
45
45
  "!/dist/**/*.test.d.ts",
46
46
  "!/dist/**/*.test.js.map",
47
+ "/templates",
47
48
  "package.json",
48
49
  "README.md",
49
50
  "CHANGELOG.md",
@@ -0,0 +1,10 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+
3
+ // Auto-generated , DO NOT EDIT
4
+ import { SolanaInstruction, SolanaLogMessage } from '@subql/types-solana';
5
+
6
+ import {<% props.instructions.forEach(function(inst){ %><%= inst %>InstructionDataArgs, <% }); %>} from '../program-interfaces/<%=props.name%>/instructions';
7
+
8
+ <% props.instructions.forEach(function(inst){ %>
9
+ export type <%=inst %>Instruction = SolanaInstruction<<%=inst%>InstructionDataArgs>;
10
+ <% }); %>