@streamflow/common 11.0.4 → 11.1.0-alpha.p335.b571df3
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/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +1 -1
- package/dist/cjs/solana/index.cjs.map +1 -1
- package/dist/cjs/solana/index.d.cts +4 -2
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/solana/index.d.ts +4 -2
- package/dist/esm/solana/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -1069,8 +1069,10 @@ interface IProgramAccount<T> {
|
|
|
1069
1069
|
declare class TransactionFailedError extends Error {
|
|
1070
1070
|
constructor(m: string);
|
|
1071
1071
|
}
|
|
1072
|
-
interface
|
|
1072
|
+
interface IPrepareResult {
|
|
1073
1073
|
ixs: TransactionInstruction[];
|
|
1074
|
+
}
|
|
1075
|
+
interface ITransactionResult extends IPrepareResult {
|
|
1074
1076
|
txId: string;
|
|
1075
1077
|
}
|
|
1076
1078
|
declare enum ICluster {
|
|
@@ -1333,4 +1335,4 @@ type UnwrapAutoSimulate<T extends IInteractExt = IInteractExt> = Omit<T, "comput
|
|
|
1333
1335
|
};
|
|
1334
1336
|
declare const unwrapExecutionParams: <T extends IInteractExt>({ computeLimit, ...rest }: T, connection: Connection) => UnwrapAutoSimulate<T>;
|
|
1335
1337
|
|
|
1336
|
-
export { type Account, type AtaParams, type CheckAssociatedTokenAccountsData, type ComputeLimitEstimate, type ComputePriceEstimate, type ConfirmationParams, ContractError, ICluster, type IInteractExt, type IProgramAccount, type ITransactionExt, type ITransactionExtResolved, type ITransactionResult, type IdlAccountsOfMethod, type IdlArgsOfMethod, type IdlInstruction, type PartnerOracle, type PartnerOracleAccounts, type PartnerOracleTypes, type ThrottleParams, type TransactionExecutionParams, TransactionFailedError, ata, ataBatchExist, buildPartnerOracle, buildSendThrottler, checkOrCreateAtaBatch, confirmAndEnsureTransaction, createAndEstimateTransaction, createAtaBatch, createVersionedTransaction, deserializeRawTransaction, enrichAtaParams, estimateComputeUnitPrice, executeMultipleTransactions, executeTransaction, generateCreateAtaBatchTx, getFilters, getMintAndProgram, getMultipleAccountsInfoBatched, getProgramAccounts, isSignerKeypair, isSignerWallet, isTransactionVersioned, pk, prepareBaseInstructions, prepareTransaction, prepareWrappedAccount, resolveTransactionAccounts, sendAndConfirmTransaction, signAndExecuteTransaction, signTransaction, simulateTransaction, unwrapExecutionParams };
|
|
1338
|
+
export { type Account, type AtaParams, type CheckAssociatedTokenAccountsData, type ComputeLimitEstimate, type ComputePriceEstimate, type ConfirmationParams, ContractError, ICluster, type IInteractExt, type IPrepareResult, type IProgramAccount, type ITransactionExt, type ITransactionExtResolved, type ITransactionResult, type IdlAccountsOfMethod, type IdlArgsOfMethod, type IdlInstruction, type PartnerOracle, type PartnerOracleAccounts, type PartnerOracleTypes, type ThrottleParams, type TransactionExecutionParams, TransactionFailedError, ata, ataBatchExist, buildPartnerOracle, buildSendThrottler, checkOrCreateAtaBatch, confirmAndEnsureTransaction, createAndEstimateTransaction, createAtaBatch, createVersionedTransaction, deserializeRawTransaction, enrichAtaParams, estimateComputeUnitPrice, executeMultipleTransactions, executeTransaction, generateCreateAtaBatchTx, getFilters, getMintAndProgram, getMultipleAccountsInfoBatched, getProgramAccounts, isSignerKeypair, isSignerWallet, isTransactionVersioned, pk, prepareBaseInstructions, prepareTransaction, prepareWrappedAccount, resolveTransactionAccounts, sendAndConfirmTransaction, signAndExecuteTransaction, signTransaction, simulateTransaction, unwrapExecutionParams };
|