Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

tools.ts 416B

12345678910111213141516
  1. import axios from 'axios';
  2. type Wallet = {secret: string, address:string }
  3. export const makeTestnetWallet = async () : Promise<Wallet> => {
  4. try{
  5. const response = await axios.post('https://faucet.altnet.rippletest.net/accounts', {})
  6. return ({
  7. secret: response.data.seed,
  8. address: response.data.account.address
  9. })
  10. }catch(e){
  11. console.log(e)
  12. }
  13. }