@solana/web3.js 1.43.5 → 1.43.6
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/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js.map +1 -1
- package/package.json +1 -1
- package/src/transaction.ts +5 -0
package/package.json
CHANGED
package/src/transaction.ts
CHANGED
|
@@ -142,6 +142,11 @@ export type TransactionCtorFields_DEPRECATED = {
|
|
|
142
142
|
recentBlockhash?: Blockhash;
|
|
143
143
|
};
|
|
144
144
|
|
|
145
|
+
// For backward compatibility; an unfortunate consequence of being
|
|
146
|
+
// forced to over-export types by the documentation generator.
|
|
147
|
+
// See https://github.com/solana-labs/solana/pull/25820
|
|
148
|
+
export type TransactionCtorFields = TransactionCtorFields_DEPRECATED;
|
|
149
|
+
|
|
145
150
|
/**
|
|
146
151
|
* List of Transaction object fields that may be initialized at construction
|
|
147
152
|
*/
|