Skip to content

Commit 54b83ba

Browse files
authored
solana: missing export for InstructionRecord (#427)
* fix(solana-typegen): missing export for InstructionRecord * changes
1 parent dff3a8f commit 54b83ba

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"changes": [
3+
{
4+
"packageName": "@subsquid/solana-typegen",
5+
"comment": "export InstructionRecord interface",
6+
"type": "patch"
7+
}
8+
],
9+
"packageName": "@subsquid/solana-typegen",
10+
}

solana/solana-typegen/src/abi.support.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type Base58Bytes = string & {}
99
export const DATA_SYM = Symbol.for('SQD_SVM_DATA')
1010

1111

12-
interface InstructionRecord {
12+
export interface InstructionRecord {
1313
accounts: Base58Bytes[]
1414
data: Base58Bytes
1515
[DATA_SYM]?: Uint8Array

0 commit comments

Comments
 (0)