Skip to content

Commit

Permalink
Fix up ethers issue
Browse files Browse the repository at this point in the history
  • Loading branch information
elvijsTDL committed Mar 4, 2024
1 parent 4681367 commit a7f8c75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/daily-slack-bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -1454,7 +1454,7 @@ async function sendMessageToSlack(data) {

async function getSuperTokenLogicAddress(network) {
const rpcUrl = "https://rpc-endpoints.superfluid.dev/" + network.name;
const provider = new ethers.providers.JsonRpcProvider(rpcUrl);
const provider = new ethers.JsonRpcProvider(rpcUrl);
const contract = new ethers.Contract(
network.contractsV1.superTokenFactory,
superTokenFactoryABI,
Expand All @@ -1469,7 +1469,7 @@ async function getSuperTokenLogicAddress(network) {

async function getGovernanceAddress(network) {
const rpcUrl = "https://rpc-endpoints.superfluid.dev/" + network.name;
const provider = new ethers.providers.JsonRpcProvider(rpcUrl);
const provider = new ethers.JsonRpcProvider(rpcUrl);
const contract = new ethers.Contract(
network.contractsV1.host,
hostABI,
Expand Down

0 comments on commit a7f8c75

Please sign in to comment.