diff --git a/src/createRollup.integration.test.ts b/src/createRollup.integration.test.ts index a9644657..9f30b032 100644 --- a/src/createRollup.integration.test.ts +++ b/src/createRollup.integration.test.ts @@ -85,4 +85,13 @@ describe(`create an AnyTrust chain that uses a custom gas token`, async () => { // assert the core contracts were successfully obtained expect(createRollupInformation.coreContracts).toBeDefined(); }); + + it(`finds the transaction hash that created a specified deployed rollup contract`, async () => { + const transactionHash = await createRollupFetchTransactionHash({ + rollup: createRollupInformation.coreContracts.rollup, + publicClient: parentChainPublicClient, + }); + + expect(transactionHash).toEqual(createRollupInformation.transactionReceipt.transactionHash); + }); }); diff --git a/src/createRollupGetRetryablesFees.unit.test.ts b/src/createRollupGetRetryablesFees.unit.test.ts index 70c92cab..45b740a0 100644 --- a/src/createRollupGetRetryablesFees.unit.test.ts +++ b/src/createRollupGetRetryablesFees.unit.test.ts @@ -19,7 +19,7 @@ it('successfully fetches retryable fees for an eth-based chain', async () => { expect(fees).toBeGreaterThanOrEqual(124708400000000000n); }); -it.only('successfully fetches retryable fees for a custom gas token chain', async () => { +it('successfully fetches retryable fees for a custom gas token chain', async () => { const fees = await createRollupGetRetryablesFees(sepoliaClient, { account: '0x38f918D0E9F1b721EDaA41302E399fa1B79333a9', nativeToken: '0x0625afb445c3b6b7b929342a04a22599fd5dbb59',