Skip to content

Commit

Permalink
change to holesky.
Browse files Browse the repository at this point in the history
  • Loading branch information
PayFv authored Jan 17, 2024
1 parent eb3794b commit c312f98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commands/faucet.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
if (receipt.status === 'success') {
const embed = new EmbedBuilder()
.setColor('#3BA55C')
.setDescription(`[View on Goeril etherscan](https://goerli.etherscan.io/tx/${receipt.message})`);
.setDescription(`[View on holesky etherscan](https://holesky.etherscan.io/tx/${receipt.message})`);
return interaction.followUp({ content: 'Transaction for DVT token created.', embeds: [embed] });
}
return interaction.followUp('Failed to send DVT token');
Expand Down
2 changes: 1 addition & 1 deletion utils/sendNetworkToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = async (toAddress) => {

web3.eth.sendSignedTransaction(signedTX.rawTransaction)
.on('transactionHash', (hash) => {
console.log(`Transaction: https://goerli.etherscan.io/tx/${hash}`);
console.log(`Transaction: https://holesky.etherscan.io/tx/${hash}`);
resolve({ status: 'success', message: hash });
})
.on('error', (error) => {
Expand Down

0 comments on commit c312f98

Please sign in to comment.