Skip to content

Commit

Permalink
fix: link OP sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
theocdl committed Mar 28, 2024
1 parent cc4c26b commit e9a0081
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ export async function run(): Promise<void> {

const take = await pattini.take(issueNumber, amount, recipientAddress)
const takeReceipt = await take.wait(1)
const message = `The wallet address ${recipientAddress} has been set to an issue. https://sepolia-optimism.etherscan.io/address/${takeReceipt.hash}`
const message = `The wallet address ${recipientAddress} has been set to an issue. https://sepolia-optimism.etherscan.io/tx/${takeReceipt.hash}`
console.log(message)
} else if (action === 'pull_request') {
const pay = await pattini.pay(issueNumber, parseInt(pullRequestNumber))
const payReceipt = await pay.wait(1)
const message = `The person who created the ${issueNumberDataSplit} branch has just received a reward. https://sepolia-optimism.etherscan.io/address/${payReceipt.hash}`
const message = `The person who created the ${issueNumberDataSplit} branch has just received a reward. https://sepolia-optimism.etherscan.io/tx/${payReceipt.hash}`
console.log(message)
}
} catch (error) {
Expand Down

0 comments on commit e9a0081

Please sign in to comment.