We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fcf65e commit 564c306Copy full SHA for 564c306
modules/sdk-coin-hbar/src/hbar.ts
@@ -71,10 +71,9 @@ interface RawTransactionData {
71
}>;
72
};
73
74
- // These are any[] because they're only used to verify existence, not to access contents
75
- instructions?: any[];
76
- innerInstructions?: any[];
77
- scheduledTransactionBody?: any;
+ instructions?: unknown[];
+ innerInstructions?: unknown[];
+ scheduledTransactionBody?: unknown;
78
}
79
export interface HbarSignTransactionOptions extends SignTransactionOptions {
80
txPrebuild: TransactionPrebuild;
0 commit comments