Skip to content

Commit

Permalink
replace goerli with sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
DonFungible committed Jan 5, 2024
1 parent 2b3e921 commit 79f0291
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/core-sdk/test/integration/platform.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { expect } from "chai";
import { StoryClient, StoryConfig, Client } from "../../src";
import { createFileReaderMock } from "../unit/testUtils";
import { goerli } from "viem/chains";
import { Hex, http } from "viem";
import { privateKeyToAccount } from "viem/accounts";

Expand All @@ -16,7 +15,7 @@ describe("Platform client integration tests", () => {

beforeEach(function () {
const config: StoryConfig = {
chain: goerli,
chainId: "sepolia",
transport: http(process.env.RPC_PROVIDER_URL),
account: privateKeyToAccount((process.env.WALLET_PRIVATE_KEY || "0x") as Hex),
};
Expand Down

0 comments on commit 79f0291

Please sign in to comment.