@@ -74,7 +74,7 @@ useHead({
7474const isLoading = ref (false )
7575const address = ref (" " )
7676const account = ref ()
77- const networks = [" Mocha" , " Arabica" , " Mammoth " ]
77+ const networks = [" Mocha" , " Arabica" ]
7878const network = ref ((networks .find ((n ) => n === getNetworkName ()) || networks[0 ]).toLowerCase ())
7979
8080const isNetworkSelectorOpen = ref (false )
@@ -166,8 +166,7 @@ const handleExecute = async () => {
166166const handleReturnTokensClick = () => {
167167 if (
168168 (useServerURL ().includes (" mocha" ) && network .value === " mocha" ) ||
169- (useServerURL ().includes (" arabica" ) && network .value === " arabica" ) ||
170- (useServerURL ().includes (" mammoth" ) && network .value === " mammoth" )
169+ (useServerURL ().includes (" arabica" ) && network .value === " arabica" )
171170 ) {
172171 cacheStore .current .address = { hash: faucetAddress () }
173172 modalsStore .open (" send" )
@@ -237,7 +236,7 @@ watch(
237236await refreshFaucetBalance ()
238237onMounted (() => {
239238 if (
240- (useServerURL ().includes (" mocha" ) || useServerURL ().includes (" arabica" ) || useServerURL (). includes ( " mammoth " ) ) &&
239+ (useServerURL ().includes (" mocha" ) || useServerURL ().includes (" arabica" )) &&
241240 appStore .address
242241 ) {
243242 address .value = appStore .address
@@ -338,7 +337,7 @@ onMounted(() => {
338337 : loading= " isLoading"
339338 : disabled= " validation.type === 'error' || !address"
340339 >
341- {{ ` Recieve ${ network === " mammoth " ? 100 : 1 } TIA` }}
340+ Recieve 1 TIA
342341 < / Button>
343342 < / Flex>
344343 < / Flex>
@@ -494,11 +493,7 @@ onMounted(() => {
494493
495494 < Flex id= " 2" : class = " [$style.answer, openedQuestion === 2 && $style.answer_extended]" >
496495 < Text size= " 13" weight= " 500" color= " tertiary" height= " 160" >
497- {{
498- ` You can request testnet tokens by entering your Celestia testnet address, and clicking the "Receive ${
499- network === " mammoth" ? 100 : 1
500- } TIA" button. Tokens will be sent to your wallet within a few moments.`
501- }}
496+ You can request testnet tokens by entering your Celestia testnet address, and clicking the " Receive TIA" button . Tokens will be sent to your wallet within a few moments.
502497 < / Text >
503498 < / Flex>
504499
@@ -520,7 +515,7 @@ onMounted(() => {
520515 < Text size= " 13" weight= " 500" color= " tertiary" height= " 160" >
521516 To ensure fair distribution and prevent abuse, the faucet has the following limitations: < br / >
522517 & nbsp;& nbsp;• You can receive
523- < b> 100 TIA for Mammoth network and 1 TIA for other testnets per request< / b> .< br / >
518+ < b> 1 TIA for all testnets per request< / b> .< br / >
524519 & nbsp;& nbsp;• You can request tokens < b> only once per hour< / b> per
525520 < b> IP address or wallet address< / b> .< br / >
526521 & nbsp;& nbsp;• If you reach the limit, you will need to wait before requesting again.
0 commit comments