genlayer-js 0.4.6 → 0.4.7
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/CHANGELOG.md +2 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/transactions/actions.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -291,7 +291,7 @@ async function sleep(ms) {
|
|
|
291
291
|
var transactionActions = (client) => ({
|
|
292
292
|
waitForTransactionReceipt: async ({
|
|
293
293
|
hash,
|
|
294
|
-
status = "
|
|
294
|
+
status = "ACCEPTED" /* ACCEPTED */,
|
|
295
295
|
interval = transactionsConfig.waitInterval,
|
|
296
296
|
retries = transactionsConfig.retries
|
|
297
297
|
}) => {
|
package/dist/index.js
CHANGED
|
@@ -291,7 +291,7 @@ async function sleep(ms) {
|
|
|
291
291
|
var transactionActions = (client) => ({
|
|
292
292
|
waitForTransactionReceipt: async ({
|
|
293
293
|
hash,
|
|
294
|
-
status = "
|
|
294
|
+
status = "ACCEPTED" /* ACCEPTED */,
|
|
295
295
|
interval = transactionsConfig.waitInterval,
|
|
296
296
|
retries = transactionsConfig.retries
|
|
297
297
|
}) => {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ import {SimulatorChain} from "@/types";
|
|
|
7
7
|
export const transactionActions = (client: GenLayerClient<SimulatorChain>) => ({
|
|
8
8
|
waitForTransactionReceipt: async ({
|
|
9
9
|
hash,
|
|
10
|
-
status = TransactionStatus.
|
|
10
|
+
status = TransactionStatus.ACCEPTED,
|
|
11
11
|
interval = transactionsConfig.waitInterval,
|
|
12
12
|
retries = transactionsConfig.retries,
|
|
13
13
|
}: {
|