Advertisement
Guest User

Script pour obtenir un herotag

a guest
Feb 17th, 2022
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. #!/bin/bash
  2. PROXY="https://gateway.elrond.com"
  3. CHAIN_ID="1"
  4.  
  5. # A changer
  6. PEM="wallet-tuto.pem" # le chemin vers votre fichier PEM
  7. NAME="robin.elrond" # le herotag que vous voulez
  8.  
  9.     erdpy --verbose dns register --name=$NAME --recall-nonce \
  10.         --pem=$PEM \
  11.         --gas-limit=100000000 \
  12.         --proxy=$PROXY --chain=$CHAIN_ID \
  13.         --send
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement