@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
|
@@ -57,7 +57,7 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
57
57
|
|
|
58
58
|
// ../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.js
|
|
59
59
|
var require_eventemitter3 = __commonJS({
|
|
60
|
-
"../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.js"(exports, module) {
|
|
60
|
+
"../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.js"(exports$1, module) {
|
|
61
61
|
var has = Object.prototype.hasOwnProperty;
|
|
62
62
|
var prefix2 = "~";
|
|
63
63
|
function Events() {
|
|
@@ -1800,7 +1800,7 @@ async function executeTransaction(connection, tx, confirmationParams, transactio
|
|
|
1800
1800
|
}
|
|
1801
1801
|
return sendAndConfirmTransaction(connection, tx, confirmationParams, transactionExecutionParams);
|
|
1802
1802
|
}
|
|
1803
|
-
async function executeMultipleTransactions(connection, txs, confirmationParams, { sendRate = 1, sendThrottler, ...throttlingParams }) {
|
|
1803
|
+
async function executeMultipleTransactions(connection, txs, confirmationParams, { sendRate = 1, sendThrottler, skipSimulation, ...throttlingParams }) {
|
|
1804
1804
|
if (!sendThrottler) {
|
|
1805
1805
|
sendThrottler = buildSendThrottler(sendRate);
|
|
1806
1806
|
}
|
|
@@ -1809,7 +1809,8 @@ async function executeMultipleTransactions(connection, txs, confirmationParams,
|
|
|
1809
1809
|
(tx) => executeTransaction(connection, tx, confirmationParams, {
|
|
1810
1810
|
...throttlingParams,
|
|
1811
1811
|
sendRate,
|
|
1812
|
-
sendThrottler
|
|
1812
|
+
sendThrottler,
|
|
1813
|
+
skipSimulation
|
|
1813
1814
|
})
|
|
1814
1815
|
)
|
|
1815
1816
|
);
|