-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement message v0 decompilation
- Loading branch information
Showing
7 changed files
with
593 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export * from './constants'; | ||
export * from './expiry-custom-errors'; | ||
export * from './legacy'; | ||
export * from './message'; | ||
export * from './versioned'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
import { | ||
AccountKeysFromLookups, | ||
MessageAccountKeys, | ||
} from '../message/account-keys'; | ||
import assert from '../utils/assert'; | ||
import {toBuffer} from '../utils/to-buffer'; | ||
import {Blockhash} from '../blockhash'; | ||
import {Message, MessageV0, VersionedMessage} from '../message'; | ||
import {AddressLookupTableAccount} from '../programs'; | ||
import {AccountMeta, TransactionInstruction} from './legacy'; | ||
|
||
export type TransactionMessageArgs = { | ||
accountKeys: MessageAccountKeys; | ||
instructions: Array<TransactionInstruction>; | ||
recentBlockhash: Blockhash; | ||
}; | ||
|
||
export type DecompileArgs = | ||
| { | ||
accountKeysFromLookups: AccountKeysFromLookups; | ||
} | ||
| { | ||
addressLookupTableAccounts: AddressLookupTableAccount[]; | ||
}; | ||
|
||
export class TransactionMessage { | ||
accountKeys: MessageAccountKeys; | ||
instructions: Array<TransactionInstruction>; | ||
recentBlockhash: Blockhash; | ||
|
||
constructor(args: TransactionMessageArgs) { | ||
this.accountKeys = args.accountKeys; | ||
this.instructions = args.instructions; | ||
this.recentBlockhash = args.recentBlockhash; | ||
} | ||
|
||
static decompile( | ||
message: VersionedMessage, | ||
args?: DecompileArgs, | ||
): TransactionMessage { | ||
const {header, compiledInstructions, recentBlockhash} = message; | ||
|
||
const { | ||
numRequiredSignatures, | ||
numReadonlySignedAccounts, | ||
numReadonlyUnsignedAccounts, | ||
} = header; | ||
|
||
const numWritableSignedAccounts = | ||
numRequiredSignatures - numReadonlySignedAccounts; | ||
assert(numWritableSignedAccounts > 0, 'Message header is invalid'); | ||
|
||
const numWritableUnsignedAccounts = | ||
message.staticAccountKeys.length - numReadonlyUnsignedAccounts; | ||
assert(numWritableUnsignedAccounts >= 0, 'Message header is invalid'); | ||
|
||
const accountKeys = message.getAccountKeys(args); | ||
const instructions: TransactionInstruction[] = []; | ||
for (const compiledIx of compiledInstructions) { | ||
const keys: AccountMeta[] = []; | ||
|
||
for (const keyIndex of compiledIx.accountKeyIndexes) { | ||
const pubkey = accountKeys.get(keyIndex); | ||
if (pubkey === undefined) { | ||
throw new Error( | ||
`Failed to find key for account key index ${keyIndex}`, | ||
); | ||
} | ||
|
||
const isSigner = keyIndex < numRequiredSignatures; | ||
|
||
let isWritable; | ||
if (isSigner) { | ||
isWritable = keyIndex < numWritableSignedAccounts; | ||
} else if (keyIndex < accountKeys.staticAccountKeys.length) { | ||
isWritable = | ||
keyIndex - numRequiredSignatures < numWritableUnsignedAccounts; | ||
} else { | ||
isWritable = | ||
keyIndex - accountKeys.staticAccountKeys.length < | ||
// accountKeysFromLookups cannot be undefined because we already found a pubkey for this index above | ||
accountKeys.accountKeysFromLookups!.writable.length; | ||
} | ||
|
||
keys.push({ | ||
pubkey, | ||
isSigner: keyIndex < header.numRequiredSignatures, | ||
isWritable, | ||
}); | ||
} | ||
|
||
const programId = accountKeys.get(compiledIx.programIdIndex); | ||
if (programId === undefined) { | ||
throw new Error( | ||
`Failed to find program id for program id index ${compiledIx.programIdIndex}`, | ||
); | ||
} | ||
|
||
instructions.push( | ||
new TransactionInstruction({ | ||
programId, | ||
data: toBuffer(compiledIx.data), | ||
keys, | ||
}), | ||
); | ||
} | ||
|
||
return new TransactionMessage({ | ||
accountKeys, | ||
instructions, | ||
recentBlockhash, | ||
}); | ||
} | ||
|
||
compileToLegacyMessage(): Message { | ||
const payerKey = this.accountKeys.get(0); | ||
if (payerKey === undefined) { | ||
throw new Error( | ||
'Failed to compile message because no account keys were found', | ||
); | ||
} | ||
|
||
return Message.compile({ | ||
payerKey, | ||
recentBlockhash: this.recentBlockhash, | ||
instructions: this.instructions, | ||
}); | ||
} | ||
|
||
compileToV0Message( | ||
addressLookupTableAccounts?: AddressLookupTableAccount[], | ||
): MessageV0 { | ||
const payerKey = this.accountKeys.get(0); | ||
if (payerKey === undefined) { | ||
throw new Error( | ||
'Failed to compile message because no account keys were found', | ||
); | ||
} | ||
|
||
return MessageV0.compile({ | ||
payerKey, | ||
recentBlockhash: this.recentBlockhash, | ||
instructions: this.instructions, | ||
addressLookupTableAccounts, | ||
}); | ||
} | ||
} |
Oops, something went wrong.