@streamflow/common 12.1.1 → 12.2.1-alpha.p361.abedd84
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 +4 -3
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/solana/index.cjs +4 -3
- package/dist/cjs/solana/index.cjs.map +1 -1
- package/dist/cjs/solana/index.d.cts +4 -6
- package/dist/cjs/solana/rpc/index.cjs.map +1 -1
- package/dist/esm/index.js +4 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/solana/index.d.ts +4 -6
- package/dist/esm/solana/index.js +4 -3
- package/dist/esm/solana/index.js.map +1 -1
- package/dist/esm/solana/rpc/index.js.map +1 -1
- package/package.json +10 -5
package/dist/cjs/index.cjs
CHANGED
|
@@ -58,7 +58,7 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
58
58
|
|
|
59
59
|
// ../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.js
|
|
60
60
|
var require_eventemitter3 = __commonJS({
|
|
61
|
-
"../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.js"(exports, module) {
|
|
61
|
+
"../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.js"(exports$1, module) {
|
|
62
62
|
var has = Object.prototype.hasOwnProperty;
|
|
63
63
|
var prefix2 = "~";
|
|
64
64
|
function Events() {
|
|
@@ -1837,7 +1837,7 @@ async function executeTransaction(connection, tx, confirmationParams, transactio
|
|
|
1837
1837
|
}
|
|
1838
1838
|
return sendAndConfirmTransaction(connection, tx, confirmationParams, transactionExecutionParams);
|
|
1839
1839
|
}
|
|
1840
|
-
async function executeMultipleTransactions(connection, txs, confirmationParams, { sendRate = 1, sendThrottler, ...throttlingParams }) {
|
|
1840
|
+
async function executeMultipleTransactions(connection, txs, confirmationParams, { sendRate = 1, sendThrottler, skipSimulation, ...throttlingParams }) {
|
|
1841
1841
|
if (!sendThrottler) {
|
|
1842
1842
|
sendThrottler = buildSendThrottler(sendRate);
|
|
1843
1843
|
}
|
|
@@ -1846,7 +1846,8 @@ async function executeMultipleTransactions(connection, txs, confirmationParams,
|
|
|
1846
1846
|
(tx) => executeTransaction(connection, tx, confirmationParams, {
|
|
1847
1847
|
...throttlingParams,
|
|
1848
1848
|
sendRate,
|
|
1849
|
-
sendThrottler
|
|
1849
|
+
sendThrottler,
|
|
1850
|
+
skipSimulation
|
|
1850
1851
|
})
|
|
1851
1852
|
)
|
|
1852
1853
|
);
|