@atomiqlabs/chain-solana 12.0.13 → 12.0.15
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/LICENSE +201 -201
- package/dist/index.d.ts +29 -29
- package/dist/index.js +45 -45
- package/dist/solana/SolanaChainType.d.ts +11 -11
- package/dist/solana/SolanaChainType.js +2 -2
- package/dist/solana/SolanaChains.d.ts +20 -20
- package/dist/solana/SolanaChains.js +25 -25
- package/dist/solana/SolanaInitializer.d.ts +18 -18
- package/dist/solana/SolanaInitializer.js +63 -63
- package/dist/solana/btcrelay/SolanaBtcRelay.d.ts +228 -228
- package/dist/solana/btcrelay/SolanaBtcRelay.js +441 -441
- package/dist/solana/btcrelay/headers/SolanaBtcHeader.d.ts +29 -29
- package/dist/solana/btcrelay/headers/SolanaBtcHeader.js +34 -34
- package/dist/solana/btcrelay/headers/SolanaBtcStoredHeader.d.ts +46 -46
- package/dist/solana/btcrelay/headers/SolanaBtcStoredHeader.js +78 -78
- package/dist/solana/btcrelay/program/programIdl.json +671 -671
- package/dist/solana/chain/SolanaAction.d.ts +26 -26
- package/dist/solana/chain/SolanaAction.js +86 -86
- package/dist/solana/chain/SolanaChainInterface.d.ts +65 -65
- package/dist/solana/chain/SolanaChainInterface.js +125 -125
- package/dist/solana/chain/SolanaModule.d.ts +14 -14
- package/dist/solana/chain/SolanaModule.js +13 -13
- package/dist/solana/chain/modules/SolanaAddresses.d.ts +8 -8
- package/dist/solana/chain/modules/SolanaAddresses.js +22 -22
- package/dist/solana/chain/modules/SolanaBlocks.d.ts +28 -28
- package/dist/solana/chain/modules/SolanaBlocks.js +72 -72
- package/dist/solana/chain/modules/SolanaEvents.d.ts +68 -68
- package/dist/solana/chain/modules/SolanaEvents.js +238 -225
- package/dist/solana/chain/modules/SolanaFees.d.ts +121 -121
- package/dist/solana/chain/modules/SolanaFees.js +379 -379
- package/dist/solana/chain/modules/SolanaSignatures.d.ts +23 -23
- package/dist/solana/chain/modules/SolanaSignatures.js +39 -39
- package/dist/solana/chain/modules/SolanaSlots.d.ts +31 -31
- package/dist/solana/chain/modules/SolanaSlots.js +68 -68
- package/dist/solana/chain/modules/SolanaTokens.d.ts +136 -136
- package/dist/solana/chain/modules/SolanaTokens.js +248 -248
- package/dist/solana/chain/modules/SolanaTransactions.d.ts +124 -124
- package/dist/solana/chain/modules/SolanaTransactions.js +323 -323
- package/dist/solana/events/SolanaChainEvents.d.ts +88 -88
- package/dist/solana/events/SolanaChainEvents.js +256 -256
- package/dist/solana/events/SolanaChainEventsBrowser.d.ts +75 -75
- package/dist/solana/events/SolanaChainEventsBrowser.js +172 -172
- package/dist/solana/program/SolanaProgramBase.d.ts +40 -40
- package/dist/solana/program/SolanaProgramBase.js +43 -43
- package/dist/solana/program/SolanaProgramModule.d.ts +8 -8
- package/dist/solana/program/SolanaProgramModule.js +11 -11
- package/dist/solana/program/modules/SolanaProgramEvents.d.ts +53 -53
- package/dist/solana/program/modules/SolanaProgramEvents.js +114 -114
- package/dist/solana/swaps/SolanaSwapData.d.ts +71 -71
- package/dist/solana/swaps/SolanaSwapData.js +292 -292
- package/dist/solana/swaps/SolanaSwapModule.d.ts +10 -10
- package/dist/solana/swaps/SolanaSwapModule.js +11 -11
- package/dist/solana/swaps/SolanaSwapProgram.d.ts +224 -224
- package/dist/solana/swaps/SolanaSwapProgram.js +570 -570
- package/dist/solana/swaps/SwapTypeEnum.d.ts +11 -11
- package/dist/solana/swaps/SwapTypeEnum.js +42 -42
- package/dist/solana/swaps/modules/SolanaDataAccount.d.ts +94 -94
- package/dist/solana/swaps/modules/SolanaDataAccount.js +231 -231
- package/dist/solana/swaps/modules/SolanaLpVault.d.ts +71 -71
- package/dist/solana/swaps/modules/SolanaLpVault.js +173 -173
- package/dist/solana/swaps/modules/SwapClaim.d.ts +129 -129
- package/dist/solana/swaps/modules/SwapClaim.js +291 -291
- package/dist/solana/swaps/modules/SwapInit.d.ts +217 -217
- package/dist/solana/swaps/modules/SwapInit.js +519 -519
- package/dist/solana/swaps/modules/SwapRefund.d.ts +82 -82
- package/dist/solana/swaps/modules/SwapRefund.js +262 -262
- package/dist/solana/swaps/programIdl.json +945 -945
- package/dist/solana/swaps/programTypes.d.ts +943 -943
- package/dist/solana/swaps/programTypes.js +945 -945
- package/dist/solana/wallet/SolanaKeypairWallet.d.ts +9 -9
- package/dist/solana/wallet/SolanaKeypairWallet.js +33 -33
- package/dist/solana/wallet/SolanaSigner.d.ts +11 -11
- package/dist/solana/wallet/SolanaSigner.js +17 -17
- package/dist/utils/Utils.d.ts +53 -53
- package/dist/utils/Utils.js +170 -170
- package/package.json +41 -41
- package/src/index.ts +36 -36
- package/src/solana/SolanaChainType.ts +27 -27
- package/src/solana/SolanaChains.ts +23 -23
- package/src/solana/SolanaInitializer.ts +102 -102
- package/src/solana/btcrelay/SolanaBtcRelay.ts +589 -589
- package/src/solana/btcrelay/headers/SolanaBtcHeader.ts +57 -57
- package/src/solana/btcrelay/headers/SolanaBtcStoredHeader.ts +102 -102
- package/src/solana/btcrelay/program/programIdl.json +670 -670
- package/src/solana/chain/SolanaAction.ts +108 -108
- package/src/solana/chain/SolanaChainInterface.ts +192 -192
- package/src/solana/chain/SolanaModule.ts +20 -20
- package/src/solana/chain/modules/SolanaAddresses.ts +20 -20
- package/src/solana/chain/modules/SolanaBlocks.ts +78 -78
- package/src/solana/chain/modules/SolanaEvents.ts +270 -256
- package/src/solana/chain/modules/SolanaFees.ts +450 -450
- package/src/solana/chain/modules/SolanaSignatures.ts +39 -39
- package/src/solana/chain/modules/SolanaSlots.ts +82 -82
- package/src/solana/chain/modules/SolanaTokens.ts +307 -307
- package/src/solana/chain/modules/SolanaTransactions.ts +365 -365
- package/src/solana/events/SolanaChainEvents.ts +299 -299
- package/src/solana/events/SolanaChainEventsBrowser.ts +209 -209
- package/src/solana/program/SolanaProgramBase.ts +79 -79
- package/src/solana/program/SolanaProgramModule.ts +15 -15
- package/src/solana/program/modules/SolanaProgramEvents.ts +155 -155
- package/src/solana/swaps/SolanaSwapData.ts +430 -430
- package/src/solana/swaps/SolanaSwapModule.ts +16 -16
- package/src/solana/swaps/SolanaSwapProgram.ts +854 -854
- package/src/solana/swaps/SwapTypeEnum.ts +29 -29
- package/src/solana/swaps/modules/SolanaDataAccount.ts +307 -307
- package/src/solana/swaps/modules/SolanaLpVault.ts +215 -215
- package/src/solana/swaps/modules/SwapClaim.ts +389 -389
- package/src/solana/swaps/modules/SwapInit.ts +663 -663
- package/src/solana/swaps/modules/SwapRefund.ts +323 -323
- package/src/solana/swaps/programIdl.json +944 -944
- package/src/solana/swaps/programTypes.ts +1885 -1885
- package/src/solana/wallet/SolanaKeypairWallet.ts +36 -36
- package/src/solana/wallet/SolanaSigner.ts +24 -24
- package/src/utils/Utils.ts +180 -180
|
@@ -1,156 +1,156 @@
|
|
|
1
|
-
import {SolanaEvents} from "../../chain/modules/SolanaEvents";
|
|
2
|
-
import {BorshCoder, DecodeType, Event, EventParser, Idl, IdlTypes, Instruction} from "@coral-xyz/anchor";
|
|
3
|
-
import {IdlField, IdlInstruction} from "@coral-xyz/anchor/dist/cjs/idl";
|
|
4
|
-
import {
|
|
5
|
-
ConfirmedSignatureInfo,
|
|
6
|
-
ParsedMessage, ParsedTransactionWithMeta,
|
|
7
|
-
PartiallyDecodedInstruction,
|
|
8
|
-
PublicKey,
|
|
9
|
-
VersionedTransaction, VersionedTransactionResponse
|
|
10
|
-
} from "@solana/web3.js";
|
|
11
|
-
import {SolanaProgramBase} from "../SolanaProgramBase";
|
|
12
|
-
import {SolanaChainInterface} from "../../chain/SolanaChainInterface";
|
|
13
|
-
|
|
14
|
-
type DecodedFieldOrNull<D, Defined> = D extends IdlField ? DecodeType<D["type"], Defined> : unknown;
|
|
15
|
-
type ArgsTuple<A extends IdlField[], Defined> = {
|
|
16
|
-
[K in A[number]["name"]]: DecodedFieldOrNull<Extract<A[number], { name: K }>, Defined>
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export type InstructionWithAccounts<IDL extends Idl> = SingleInstructionWithAccounts<IDL["instructions"][number], IDL>;
|
|
20
|
-
|
|
21
|
-
export type SingleInstructionWithAccounts<I extends IdlInstruction, IDL extends Idl> = {
|
|
22
|
-
name: I["name"],
|
|
23
|
-
accounts: {
|
|
24
|
-
[key in I["accounts"][number]["name"]]: PublicKey
|
|
25
|
-
},
|
|
26
|
-
data: ArgsTuple<I["args"], IdlTypes<IDL>>
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export type ProgramEvent<IDL extends Idl> = Event<IDL["events"][number], Record<string, any>>;
|
|
30
|
-
|
|
31
|
-
export class SolanaProgramEvents<IDL extends Idl> extends SolanaEvents {
|
|
32
|
-
|
|
33
|
-
private readonly programCoder: BorshCoder;
|
|
34
|
-
private readonly eventParser: EventParser;
|
|
35
|
-
private readonly program: SolanaProgramBase<IDL>;
|
|
36
|
-
private readonly nameMappedInstructions: {[name: string]: IdlInstruction};
|
|
37
|
-
|
|
38
|
-
constructor(chain: SolanaChainInterface, program: SolanaProgramBase<IDL>) {
|
|
39
|
-
super(chain);
|
|
40
|
-
this.program = program;
|
|
41
|
-
this.programCoder = new BorshCoder(program.program.idl);
|
|
42
|
-
this.eventParser = new EventParser(program.program.programId, this.programCoder);
|
|
43
|
-
this.nameMappedInstructions = {};
|
|
44
|
-
for(let ix of program.program.idl.instructions) {
|
|
45
|
-
this.nameMappedInstructions[ix.name] = ix;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
/**
|
|
50
|
-
* Runs a search backwards in time, processing the events for a specific topic public key
|
|
51
|
-
*
|
|
52
|
-
* @param topicKey
|
|
53
|
-
* @param processor called for every event, should return a value if the correct event was found, or null
|
|
54
|
-
* if the search should continue
|
|
55
|
-
* @param abortSignal
|
|
56
|
-
* @param logBatchSize how many signatures should be fetched in one getSignaturesForAddress call
|
|
57
|
-
* @param startBlockheight
|
|
58
|
-
*/
|
|
59
|
-
public findInEvents<T>(
|
|
60
|
-
topicKey: PublicKey,
|
|
61
|
-
processor: (event: ProgramEvent<IDL>, tx: ParsedTransactionWithMeta) => Promise<T>,
|
|
62
|
-
abortSignal?: AbortSignal,
|
|
63
|
-
logBatchSize?: number,
|
|
64
|
-
startBlockheight?: number
|
|
65
|
-
): Promise<T> {
|
|
66
|
-
return this.findInSignatures<T>(topicKey, async (data: {signatures?: ConfirmedSignatureInfo[], txs?: ParsedTransactionWithMeta[]}) => {
|
|
67
|
-
if(data.signatures) {
|
|
68
|
-
for(let info of data.signatures) {
|
|
69
|
-
if(info.err) continue;
|
|
70
|
-
|
|
71
|
-
const tx = await this.connection.getParsedTransaction(info.signature, {
|
|
72
|
-
commitment: "confirmed",
|
|
73
|
-
maxSupportedTransactionVersion: 0
|
|
74
|
-
});
|
|
75
|
-
if(tx.meta.err) continue;
|
|
76
|
-
|
|
77
|
-
const events = this.parseLogs(tx.meta.logMessages);
|
|
78
|
-
events.reverse();
|
|
79
|
-
|
|
80
|
-
for(let event of events) {
|
|
81
|
-
if(abortSignal!=null) abortSignal.throwIfAborted();
|
|
82
|
-
const result: T = await processor(event, tx);
|
|
83
|
-
if(result!=null) return result;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
} else {
|
|
87
|
-
for(let tx of data.txs) {
|
|
88
|
-
if(tx.meta.err) continue;
|
|
89
|
-
|
|
90
|
-
const events = this.parseLogs(tx.meta.logMessages);
|
|
91
|
-
events.reverse();
|
|
92
|
-
|
|
93
|
-
for(let event of events) {
|
|
94
|
-
if(abortSignal!=null) abortSignal.throwIfAborted();
|
|
95
|
-
const result: T = await processor(event, tx);
|
|
96
|
-
if(result!=null) return result;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
}, abortSignal, logBatchSize, startBlockheight);
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Decodes the instructions for this program from the transaction, leaves null in the returned instructions array
|
|
105
|
-
* for every instruction that doesn't correspond to this program (as those are impossible to parse)
|
|
106
|
-
*
|
|
107
|
-
* @param transactionMessage
|
|
108
|
-
*/
|
|
109
|
-
public decodeInstructions(transactionMessage: ParsedMessage): InstructionWithAccounts<IDL>[] {
|
|
110
|
-
const instructions: InstructionWithAccounts<IDL>[] = [];
|
|
111
|
-
|
|
112
|
-
for(let _ix of transactionMessage.instructions) {
|
|
113
|
-
if(!_ix.programId.equals(this.program.program.programId)) {
|
|
114
|
-
instructions.push(null);
|
|
115
|
-
continue;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
const ix: PartiallyDecodedInstruction = _ix as PartiallyDecodedInstruction;
|
|
119
|
-
if(ix.data==null) continue;
|
|
120
|
-
|
|
121
|
-
const parsedIx: Instruction = this.programCoder.instruction.decode(ix.data, 'base58');
|
|
122
|
-
const accountsData = this.nameMappedInstructions[parsedIx.name];
|
|
123
|
-
let accounts: {[name: string]: PublicKey};
|
|
124
|
-
if(accountsData!=null && accountsData.accounts!=null) {
|
|
125
|
-
accounts = {};
|
|
126
|
-
for(let i=0;i<accountsData.accounts.length;i++) {
|
|
127
|
-
accounts[accountsData.accounts[i].name] = ix.accounts[i];
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
instructions.push({
|
|
131
|
-
name: parsedIx.name,
|
|
132
|
-
data: parsedIx.data as any,
|
|
133
|
-
accounts: accounts as any
|
|
134
|
-
});
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
return instructions;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
/**
|
|
141
|
-
* Parses program event related to this program from transaction logs
|
|
142
|
-
*
|
|
143
|
-
* @param logs
|
|
144
|
-
*/
|
|
145
|
-
public parseLogs(logs: string[]): ProgramEvent<IDL>[] {
|
|
146
|
-
const eventsGenerator = this.eventParser.parseLogs(logs);
|
|
147
|
-
|
|
148
|
-
const events: ProgramEvent<IDL>[] = [];
|
|
149
|
-
for(let log of eventsGenerator) {
|
|
150
|
-
events.push(log as ProgramEvent<IDL>);
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
return events;
|
|
154
|
-
}
|
|
155
|
-
|
|
1
|
+
import {SolanaEvents} from "../../chain/modules/SolanaEvents";
|
|
2
|
+
import {BorshCoder, DecodeType, Event, EventParser, Idl, IdlTypes, Instruction} from "@coral-xyz/anchor";
|
|
3
|
+
import {IdlField, IdlInstruction} from "@coral-xyz/anchor/dist/cjs/idl";
|
|
4
|
+
import {
|
|
5
|
+
ConfirmedSignatureInfo,
|
|
6
|
+
ParsedMessage, ParsedTransactionWithMeta,
|
|
7
|
+
PartiallyDecodedInstruction,
|
|
8
|
+
PublicKey,
|
|
9
|
+
VersionedTransaction, VersionedTransactionResponse
|
|
10
|
+
} from "@solana/web3.js";
|
|
11
|
+
import {SolanaProgramBase} from "../SolanaProgramBase";
|
|
12
|
+
import {SolanaChainInterface} from "../../chain/SolanaChainInterface";
|
|
13
|
+
|
|
14
|
+
type DecodedFieldOrNull<D, Defined> = D extends IdlField ? DecodeType<D["type"], Defined> : unknown;
|
|
15
|
+
type ArgsTuple<A extends IdlField[], Defined> = {
|
|
16
|
+
[K in A[number]["name"]]: DecodedFieldOrNull<Extract<A[number], { name: K }>, Defined>
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export type InstructionWithAccounts<IDL extends Idl> = SingleInstructionWithAccounts<IDL["instructions"][number], IDL>;
|
|
20
|
+
|
|
21
|
+
export type SingleInstructionWithAccounts<I extends IdlInstruction, IDL extends Idl> = {
|
|
22
|
+
name: I["name"],
|
|
23
|
+
accounts: {
|
|
24
|
+
[key in I["accounts"][number]["name"]]: PublicKey
|
|
25
|
+
},
|
|
26
|
+
data: ArgsTuple<I["args"], IdlTypes<IDL>>
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export type ProgramEvent<IDL extends Idl> = Event<IDL["events"][number], Record<string, any>>;
|
|
30
|
+
|
|
31
|
+
export class SolanaProgramEvents<IDL extends Idl> extends SolanaEvents {
|
|
32
|
+
|
|
33
|
+
private readonly programCoder: BorshCoder;
|
|
34
|
+
private readonly eventParser: EventParser;
|
|
35
|
+
private readonly program: SolanaProgramBase<IDL>;
|
|
36
|
+
private readonly nameMappedInstructions: {[name: string]: IdlInstruction};
|
|
37
|
+
|
|
38
|
+
constructor(chain: SolanaChainInterface, program: SolanaProgramBase<IDL>) {
|
|
39
|
+
super(chain);
|
|
40
|
+
this.program = program;
|
|
41
|
+
this.programCoder = new BorshCoder(program.program.idl);
|
|
42
|
+
this.eventParser = new EventParser(program.program.programId, this.programCoder);
|
|
43
|
+
this.nameMappedInstructions = {};
|
|
44
|
+
for(let ix of program.program.idl.instructions) {
|
|
45
|
+
this.nameMappedInstructions[ix.name] = ix;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Runs a search backwards in time, processing the events for a specific topic public key
|
|
51
|
+
*
|
|
52
|
+
* @param topicKey
|
|
53
|
+
* @param processor called for every event, should return a value if the correct event was found, or null
|
|
54
|
+
* if the search should continue
|
|
55
|
+
* @param abortSignal
|
|
56
|
+
* @param logBatchSize how many signatures should be fetched in one getSignaturesForAddress call
|
|
57
|
+
* @param startBlockheight
|
|
58
|
+
*/
|
|
59
|
+
public findInEvents<T>(
|
|
60
|
+
topicKey: PublicKey,
|
|
61
|
+
processor: (event: ProgramEvent<IDL>, tx: ParsedTransactionWithMeta) => Promise<T>,
|
|
62
|
+
abortSignal?: AbortSignal,
|
|
63
|
+
logBatchSize?: number,
|
|
64
|
+
startBlockheight?: number
|
|
65
|
+
): Promise<T> {
|
|
66
|
+
return this.findInSignatures<T>(topicKey, async (data: {signatures?: ConfirmedSignatureInfo[], txs?: ParsedTransactionWithMeta[]}) => {
|
|
67
|
+
if(data.signatures) {
|
|
68
|
+
for(let info of data.signatures) {
|
|
69
|
+
if(info.err) continue;
|
|
70
|
+
|
|
71
|
+
const tx = await this.connection.getParsedTransaction(info.signature, {
|
|
72
|
+
commitment: "confirmed",
|
|
73
|
+
maxSupportedTransactionVersion: 0
|
|
74
|
+
});
|
|
75
|
+
if(tx.meta.err) continue;
|
|
76
|
+
|
|
77
|
+
const events = this.parseLogs(tx.meta.logMessages);
|
|
78
|
+
events.reverse();
|
|
79
|
+
|
|
80
|
+
for(let event of events) {
|
|
81
|
+
if(abortSignal!=null) abortSignal.throwIfAborted();
|
|
82
|
+
const result: T = await processor(event, tx);
|
|
83
|
+
if(result!=null) return result;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
} else {
|
|
87
|
+
for(let tx of data.txs) {
|
|
88
|
+
if(tx.meta.err) continue;
|
|
89
|
+
|
|
90
|
+
const events = this.parseLogs(tx.meta.logMessages);
|
|
91
|
+
events.reverse();
|
|
92
|
+
|
|
93
|
+
for(let event of events) {
|
|
94
|
+
if(abortSignal!=null) abortSignal.throwIfAborted();
|
|
95
|
+
const result: T = await processor(event, tx);
|
|
96
|
+
if(result!=null) return result;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}, abortSignal, logBatchSize, startBlockheight);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Decodes the instructions for this program from the transaction, leaves null in the returned instructions array
|
|
105
|
+
* for every instruction that doesn't correspond to this program (as those are impossible to parse)
|
|
106
|
+
*
|
|
107
|
+
* @param transactionMessage
|
|
108
|
+
*/
|
|
109
|
+
public decodeInstructions(transactionMessage: ParsedMessage): InstructionWithAccounts<IDL>[] {
|
|
110
|
+
const instructions: InstructionWithAccounts<IDL>[] = [];
|
|
111
|
+
|
|
112
|
+
for(let _ix of transactionMessage.instructions) {
|
|
113
|
+
if(!_ix.programId.equals(this.program.program.programId)) {
|
|
114
|
+
instructions.push(null);
|
|
115
|
+
continue;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const ix: PartiallyDecodedInstruction = _ix as PartiallyDecodedInstruction;
|
|
119
|
+
if(ix.data==null) continue;
|
|
120
|
+
|
|
121
|
+
const parsedIx: Instruction = this.programCoder.instruction.decode(ix.data, 'base58');
|
|
122
|
+
const accountsData = this.nameMappedInstructions[parsedIx.name];
|
|
123
|
+
let accounts: {[name: string]: PublicKey};
|
|
124
|
+
if(accountsData!=null && accountsData.accounts!=null) {
|
|
125
|
+
accounts = {};
|
|
126
|
+
for(let i=0;i<accountsData.accounts.length;i++) {
|
|
127
|
+
accounts[accountsData.accounts[i].name] = ix.accounts[i];
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
instructions.push({
|
|
131
|
+
name: parsedIx.name,
|
|
132
|
+
data: parsedIx.data as any,
|
|
133
|
+
accounts: accounts as any
|
|
134
|
+
});
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
return instructions;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Parses program event related to this program from transaction logs
|
|
142
|
+
*
|
|
143
|
+
* @param logs
|
|
144
|
+
*/
|
|
145
|
+
public parseLogs(logs: string[]): ProgramEvent<IDL>[] {
|
|
146
|
+
const eventsGenerator = this.eventParser.parseLogs(logs);
|
|
147
|
+
|
|
148
|
+
const events: ProgramEvent<IDL>[] = [];
|
|
149
|
+
for(let log of eventsGenerator) {
|
|
150
|
+
events.push(log as ProgramEvent<IDL>);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
return events;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
156
|
}
|