diff --git a/discord-bot/.env.example b/discord-bot/.env.example index 2403a74..fd4fe25 100644 --- a/discord-bot/.env.example +++ b/discord-bot/.env.example @@ -8,8 +8,8 @@ CLIENT_ID="" CONTRACT_ADDRESS="" PRIVATE_KEY="" -# Subspace EVM-Domain Token Symbol, RPC Endpoint and Blockscout Explorer URL -TOKEN_SYMBOL="tSSC" +# Autonomys EVM-Domain Token Symbol, RPC Endpoint and Blockscout Explorer URL +TOKEN_SYMBOL="tAI3" RPC_ENDPOINT="" EXPLORER_URL="https://blockscout.subspace.network" diff --git a/discord-bot/package.json b/discord-bot/package.json index f60bffa..3bc3ddf 100644 --- a/discord-bot/package.json +++ b/discord-bot/package.json @@ -1,6 +1,6 @@ { "name": "discord-bot", - "description": "Discord bot to interact with the Subspace faucet", + "description": "Discord bot to interact with the Autonomys faucet", "version": "1.0.0", "keywords": [], "main": "src/index.js", @@ -15,8 +15,8 @@ }, "license": "ISC", "author": { - "name": "Subspace.network", - "url": "https://subspace.network" + "name": "Autonomys Network", + "url": "https://autonomys.xyz" }, "homepage": "https://github.com/autonomys/faucet#readme", "dependencies": { diff --git a/discord-bot/src/utils/slack.ts b/discord-bot/src/utils/slack.ts index 1270d78..8cbccfb 100644 --- a/discord-bot/src/utils/slack.ts +++ b/discord-bot/src/utils/slack.ts @@ -85,7 +85,7 @@ export const buildSlackStatsMessage = ( type: 'section', text: { type: 'mrkdwn', - text: `This week total requests: ${requestCount} :subspace-hype:`, + text: `This week total requests: ${requestCount} :autonomys:`, }, }, { @@ -105,7 +105,7 @@ export const buildSlackStatsMessage = ( text: { type: 'mrkdwn', text: `Current total requests: ${requestCount} ${ - requestCount > 100 ? ':subspace-hype:' : ':subheart-black:' + requestCount > 100 ? ':autonomys:' : ':auto-heart:' }`, }, }, @@ -113,7 +113,7 @@ export const buildSlackStatsMessage = ( type: 'section', text: { type: 'mrkdwn', - text: `Unique addresses: ${uniqueAddresses} :subheart-white:`, + text: `Unique addresses: ${uniqueAddresses} :auto-heart:`, }, }, )