Skip to content

Automatic bidding for names and auto-renewal for Aeternity naming system

Notifications You must be signed in to change notification settings

DanielaIvanova/forever_aens

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ForeverAENS

Automatic bidding for Aeternity names and auto-renewal.

Description

ForeverAENS is a small showcase prototype project, which is built in Elixir, by using Aeternity Elixir SDK. This application automates all the activities, needed to "hold" a name in Aeternity blockchain, this app allows a user to:

  1. Preclaim and claim a given name(if the name wasn't found in the blockchain and there is no current auction for it).
  2. Prolonging given name before the expiry by user defined number blocks.
  3. Monitor and automatically bid for a given name(if the name's auction is active and if the user has enough tokens for making a new bid).

Usage

  1. Clone the project and get the dependencies:
git clone https://github.com/DanielaIvanova/forever_aens
cd forever_aens
mix deps.get
  1. Now you have to start the elixir app:
iex -S mix
  1. Create your own keypair(if you don't have already one):
%{public: public_key, secret: secret_key} = AeppSDK.Utils.Keys.generate_keypair
  1. Store your private key in the keystore:
AeppSDK.Utils.Keys.new_keystore(secret_key, "123456", name: "my_keystore")
  1. Set config.exs file, by providing your information. This is an example of config.exs:
import Config

config :forever_aens,
  name: "daniela.chain",  # desired name
  password: "123456", # keystore password
  prolong_before: 10  # will try to prolong the name if the difference between current and expiry block is less or equal to this value 
  # Ex. current height 100 , name's auction expiry height 109, prolong_before = 10 , so we start bidding because there are less than 9 blocks before expiry
  # 5% of increasing of previous bid
  increment: 1.05

config :forever_aens, :client,
  key_store_path: "my_keystore",
  network_id: "ae_uat",
  url: "https://sdk-testnet.aepps.com/v2",
  internal_url: "https://sdk-testnet.aepps.com/v2",
  gas_price: 1_000_000_000,
  auth: []
  1. Now you are ready to start the application:
ForeverAens.start_link

NOTE: The application will automatically check name status and take actions each 5 seconds.

About

Automatic bidding for names and auto-renewal for Aeternity naming system

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages