Registering in Almanac Contract
Introduction
The Almanac contract requires agents to register using their Agent Address and pay a fee for registration to be found by other agents on the network.
Prerequisites
Make sure you have read the following resources before going on with this guide:
- Quick Start Guide for uAgents Framework
- Creating your first agent
- Agents address
- Almanac contract
- Register in Almanac
Imports needed
Walk-through
-
First of all, create a Python script and name it:
windowsecho. > registration.py
-
Open your terminal and
registration.py
file in an editor of your choice. Let's start by importing theAgent
class from theuagents
library to create our agent, and thefund_agent_if_low
class from theuagents.setup
module. This function will check if you have enough tokens to register in the Almanac contract, if not it will add testnet tokens to yourFetch Network address
. Then, create an agent,alice
, you need to provide thename
,seed
,port
andendpoint
parameters to correctly run it! The code will look similar to the following:
registration.pyfrom uagents.setup import fund_agent_if_low from uagents import Agent, Context, Protocol agent = Agent( name="alice", port=8000, seed="alice secret phrase", endpoint=["http://127.0.0.1:8000/submit"], ) fund_agent_if_low(agent.wallet.address()) @agent.on_interval(period=3) async def hi(ctx: Context): ctx.logger.info(f"Hello") agent.run()
There's a few things happening in this script; we initialize Alice with an endpoint. An endpoint is the address in which other agents can send messages to where Alice will be listening. As highlighted in Registration and Endpoints Weighting , agents can communicate by querying the Almanac and retrieving an endpoint from the recipient agent. Therefore, we need to specify the service endpoints when defining our agents.
We also have to define agent.run()
. This .run()
function runs the agent, but more importantly this registers the agent to the Almanac when code is initialized.
Once you run your script, your agent will start the registration process automatically, the balance of the agent's wallet will be checked and funded if needed. Finally, it will try to register on the Almanac contract. Then, we will be ready to start to a remote communication with other agents registered within the Almanac contract.
For further information on how to set up your Agents and register them into the Almanac to allow for remote communication, visit the Communicating with other Agents guide.