Skip to content

Commit

Permalink
use arbitrum sepolia for all
Browse files Browse the repository at this point in the history
  • Loading branch information
spsjvc committed Feb 8, 2024
1 parent 8a25564 commit 79f882f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/createRollupPrepareTransactionRequest.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { it, expect } from 'vitest';
import { createPublicClient, http, zeroAddress } from 'viem';
import { arbitrumSepolia } from 'viem/chains';

import { nitroTestnodeL2 } from './chains';
import { generateChainId } from './utils';
import { prepareChainConfig } from './prepareChainConfig';
import { createRollupPrepareConfig } from './createRollupPrepareConfig';
Expand All @@ -13,7 +12,7 @@ import { getTestPrivateKeyAccount } from './testHelpers';
const deployer = getTestPrivateKeyAccount();

const publicClient = createPublicClient({
chain: nitroTestnodeL2,
chain: arbitrumSepolia,
transport: http(),
});

Expand Down Expand Up @@ -166,7 +165,7 @@ it(`fails to prepare transaction request if "params.nativeToken" doesn't use 18
nativeToken: '0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d',
},
account: deployer.address,
publicClient: arbitrumSepoliaPublicClient,
publicClient,
}),
).rejects.toThrowError(
`"params.nativeToken" can only be configured with a token that uses 18 decimals.`,
Expand Down

0 comments on commit 79f882f

Please sign in to comment.