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