This commit is contained in:
2026-05-20 23:57:15 +02:00
parent fad7ec5107
commit 62831a0abe
56 changed files with 6603 additions and 114 deletions

View File

@@ -0,0 +1,34 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
/**
* Candidate account inferred from generic on-chain transaction evidence.
*/
export type Demo3OnchainDexCandidateAccount = {
/**
* Account address.
*/
address: string,
/**
* Account index in the transaction message when known.
*/
accountIndex: number | null,
/**
* Whether the account is writable in the transaction message when known.
*/
writable: boolean | null,
/**
* Whether the account is a signer in the transaction message when known.
*/
signer: boolean | null,
/**
* Generic role inferred by Demo3.
*/
inferredRole: string,
/**
* Confidence of the generic account inference.
*/
confidence: string,
/**
* Short reason explaining why the account is listed.
*/
reason: string, };