@subql/common-solana 1.0.1 → 1.0.2-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/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
+ ### Fixed
9
+ - Fix templates not included in published package (#14)
10
+
11
+ ### Changed
12
+ - Update @subql dependencies (#14)
8
13
 
9
14
  ## [1.0.1] - 2025-07-01
10
15
  ### Changed
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-0",
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-0",
21
21
  "codama": "^1.2.11",
22
22
  "js-yaml": "^4.1.0",
23
23
  "pino": "^6.13.3",
@@ -44,9 +44,11 @@
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",
50
51
  "LICENSE"
51
- ]
52
+ ],
53
+ "stableVersion": "1.0.1"
52
54
  }
@@ -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
+ <% }); %>