Skip to content

Commit

Permalink
Updating rococo-faucet endpoint (#256)
Browse files Browse the repository at this point in the history
As we're now providing both web and matrix faucets for each network
(alongside these docs), we decided to drop "ink-docs" prefix, when
merging web and matrix rococo faucets.
New endpoint is already deployed and the old one will be disabled
afterwards.
  • Loading branch information
mutantcornholio committed Jul 10, 2023
1 parent 92c50bc commit 8ede0ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/testnet/Faucet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useMemo, useState } from 'react'
import ReCAPTCHA from 'react-google-recaptcha'

const RECAPTCHA_SITE_KEY = '6LdU5kckAAAAANktvvAKJ0auYUBRP0su94G7WXwe'
const FAUCET_URL = 'https://ink-docs-rococo-faucet.parity-testnet.parity.io/drip/web'
const FAUCET_URL = 'https://rococo-faucet.parity-testnet.parity.io/drip/web'

const Faucet = () => {
const [captcha, setCaptcha] = useState<string | null>(null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState } from 'react'
import ReCAPTCHA from 'react-google-recaptcha'

const RECAPTCHA_SITE_KEY = '6LdU5kckAAAAANktvvAKJ0auYUBRP0su94G7WXwe'
const FAUCET_URL = 'https://ink-docs-rococo-faucet.parity-testnet.parity.io/drip/web'
const FAUCET_URL = 'https://rococo-faucet.parity-testnet.parity.io/drip/web'

const Faucet = () => {
const [captcha, setCaptcha] = useState<string | null>(null)
Expand Down

0 comments on commit 8ede0ba

Please sign in to comment.