mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
21 lines
536 B
JavaScript
21 lines
536 B
JavaScript
const uri = 'https://faucet.metamask.io/'
|
|
const METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'
|
|
const env = process.env.METAMASK_ENV
|
|
|
|
module.exports = function (address) {
|
|
// Don't faucet in development or test
|
|
if (METAMASK_DEBUG === true || env === 'test') return
|
|
global.log.info('auto-fauceting:', address)
|
|
const data = address
|
|
const headers = new Headers()
|
|
headers.append('Content-type', 'application/rawdata')
|
|
fetch(uri, {
|
|
method: 'POST',
|
|
headers,
|
|
body: data,
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
}
|