Skip to content

Commit

Permalink
fix chainId
Browse files Browse the repository at this point in the history
  • Loading branch information
DonFungible committed Feb 2, 2024
1 parent f7d26af commit 6fd8d19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core-sdk/test/integration/permission.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe("Permission Functions", () => {

before(function () {
const config: StoryConfig = {
chain: sepolia,
chainId: "sepolia",
transport: http(process.env.RPC_PROVIDER_URL),
account: privateKeyToAccount((process.env.WALLET_PRIVATE_KEY || "0x") as Hex),
};
Expand Down
1 change: 1 addition & 0 deletions packages/core-sdk/test/integration/tagging.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ describe("Tagging Functions", () => {

before(function () {
const config: StoryConfig = {
chainId: "sepolia",
transport: http(process.env.RPC_PROVIDER_URL),
account: privateKeyToAccount((process.env.WALLET_PRIVATE_KEY || "0x") as Hex),
};
Expand Down
1 change: 1 addition & 0 deletions packages/core-sdk/test/integration/taggingReadOnly.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("Tagging Indexer Functions", () => {

before(function () {
const config: StoryConfig = {
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 6fd8d19

Please sign in to comment.