選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

getTestnetWallet.js 430B

12345678910111213141516
  1. const fetch = require('node-fetch')
  2. const rawResponse = fetch('https://faucet.altnet.rippletest.net/accounts', {
  3. method: 'POST',
  4. headers: {
  5. 'Accept': 'application/json',
  6. 'Content-Type': 'application/json'
  7. },
  8. }).then(raw => {
  9. raw.json().then(content => {
  10. console.log ({
  11. secret: content.account.secret,
  12. address: content.account.address
  13. });
  14. })
  15. });