Appearance
Onboarding on Publisher
How to register on Publisher?
Go to the page here
Select type of company: Organization, Individual or Accept Invitation
Org ID: Identification for your company. You can choose every available id. this data will be used by users when accessing via the CLI
Organization name: Consumers will see it
DUNS Number: Optional field. You can skip it if you don't have this number.
Website URL: Optional field. Your organization’s website must be publicly available and the domain name must be associated with your organization.
Phone number: Optional field. Your company’s number including your country code.
Registered Address: Optional field. Your organization’s registered address
Mailing Address: Optional field. Your organization’s mailing address. By default, it is the same as the registration address
Short description: Preview description of your company. Max 160 characters.
Long description: Expanded description of your company. Max 5000 characters.
Organization Profile Image. Every organization have a profile image. This profile picture will be visible to consumers
Support email: This email needs to AI Marketplace users to contact you about questions and other.
Support Number: Optional field. Contact number for customers.
Payment address: The Ethereum address to which all payments will be processed for this group.
ETCD Endpoint: all the ETCD endpoints that will be used. The address of the etcd you have deployed should be here. It doesn’t matter if it’s public or local, the main thing is that the daemon can reach etcd through it. Details here
Connect MetaMask: This is necessary to confirm your account ownership this address will be used to confirm any changes associated with this organization. you must have an active metamask extension and give it access to this site.
How to create a service?

- AI Service Name: max 50 char
- Service ID: Identification for your service. You can choose every available id. This data will be used by users when accessing via the CLI
- Short description: Preview description of your service. Max 160 characters.
- Long description: Expanded description of your company. Max 5000 characters.
- Tags: The tags will be shown on the page od your service on the marketplace, as well as help users find your service by keywords. You can add up to 20 tags
- Project URL: Your service’s website must be publicly available and the domain name must be associated with your organization
- Contributors
- AI Service Profile Image: This picture will be visible to consumers on marketplace page
- Enable Demo: If your service should be available only through the CLI/SDK, then set the Enable Demo flag to off.
- Upload Demo Files: If your service should be available on the marketplace, then upload files for your interface.
- AI Service price: the price of one service request.
- Demo Free Calls: number of free demo calls to your service
- Daemon endpoint: Daemon endpoint is the public address where you plan to host the daemon. Must start with http/https.
- Daemon Addresses: The Ethereum public addressHow to get: Open PyCharm and run a program that will generate an address and a private key:
py
from eth_account import Account
accut = Account.create()
print('Your address: ' + accut.address)
print('Your private key: ' + accut.key.hex())
- Type of your service: You need to choose the appropriate type of service
- Upload the Proto files: .zip file that contains proto files of your AI service
- Waiting...
- Launch AI Service: Confirm in MetaMask
How to Create & Start Daemon (Billing & Service Setup)
Preparation Steps:
Generate an API Key in Alchemy
Follow the Alchemy API Key Setup Guide to create and obtain your API key. This key will be used by your daemon to interact with the Ethereum blockchain.After obtaining the API key, you will need to add the following fields to your daemon configuration:
For Mainnet:
json"ethereum_json_rpc_http_endpoint": "http://eth-mainnet.g.alchemy.com/v2/<YOUR_API_KEY>", "ethereum_json_rpc_ws_endpoint": "wss://eth-mainnet.g.alchemy.com/v2/<YOUR_API_KEY>"
For Testnet (Sepolia):
json"ethereum_json_rpc_http_endpoint": "http://eth-sepolia.g.alchemy.com/v2/<YOUR_API_KEY>", "ethereum_json_rpc_ws_endpoint": "wss://eth-sepolia.g.alchemy.com/v2/<YOUR_API_KEY>"
Replace
<YOUR_API_KEY>
with the API key you copied from Alchemy.Specify the Private Key for Metering in the Daemon Config
Thepvt_key_for_metering
field in the daemon configuration requires the private key of an Ethereum wallet.Configure the Service Endpoint
Theservice_endpoint
is the endpoint where your service is hosted. The daemon will send user requests to this endpoint.Finalize the Daemon Config
Copy config or download a JSON file

Example Daemon Configuration
Here’s an example of a complete daemon configuration file:
json
{
"blockchain_enabled": true,
"blockchain_network_selected": "sepolia",
"daemon_endpoint": "0.0.0.0:62401",
"daemon_group_name": "default_group",
"ipfs_endpoint": "http://ipfs.singularitynet.io:80",
"organization_id": "Naint1",
"service_id": "ServNaint7",
"service_endpoint": "http://127.0.0.1:7004",
"payment_channel_cert_path": "/home/nlp/certs/cfssl/client.pem",
"payment_channel_ca_path": "/home/nlp/certs/cfssl/ca.pem",
"payment_channel_key_path": "/home/nlp/certs/cfssl/client-key.pem",
"ssl_cert": "/home/nlp/certs/domain/fullchain.pem",
"ssl_key": "/home/nlp/certs/domain/privkey.pem",
"payment_channel_storage_type": "etcd",
"pvt_key_for_metering": "<YOUR_PRIVATE_KEY>",
"ethereum_json_rpc_http_endpoint": "http://eth-sepolia.g.alchemy.com/v2/<YOUR_API_KEY>",
"ethereum_json_rpc_ws_endpoint": "wss://eth-sepolia.g.alchemy.com/v2/<YOUR_API_KEY>",
"log": { "level": "debug", "output": { "type": "stdout" } }
}
Fields to Replace:
<YOUR_PRIVATE_KEY>
: Replace with your Ethereum wallet’s private key.<YOUR_API_KEY>
: Replace with your Alchemy API key.
Now we will install the daemon and run it with the downloaded config
Download daemon config according to your system
Change rules on Daemon file using ‘chmod’ util
sh
chmod +x snetd-linux-amd64-v5.2.1
- Start screen util (If you haven't this util you need install it). It is necessary that the session with started demon does not end when you close terminal. screen -S YourName
- Start Daemon in this session ./snetd-linux-amd64-v5.2.1 -c snetd.config.json
- Press Ctrl + A + D to disconnect from screen session
- Check daemon:
sh
curl localhost:62401/heartbeat
Invite Workflow - Adding members to an Organization
The platform provides a simple workflow to add new members, the owner just needs to add the email address of the member, the system sends invitation to the member based on accept invitation and also ensures all the required details like (Wallet address) of the member are furnished when the invitation is accepted.

Claim easily from Publisher portal
Claims can now be availed using the publisher portal.
