Service Providers
On this page
‘Service Providers’ are defined as entities that provide services for end-users that involve some form of interaction with the ICTech Hub. More specifically, this document is focused on interactions with tokens.
Service Providers are expected to act as trusted points of contact to the blockchain for their end-users. This Service Providers section does not apply to wallet builders that want to provide Light Client functionalities.
This document describes:
Connection Options #
There are four main technologies to consider to connect to the ICTech Hub:
Full Nodes: Interact with the blockchain.
REST Server: Serves for HTTP calls.
REST API: Use available endpoints for the REST Server.
GRPC: Connect to the ICTech Hub using gRPC.
Running a Full Node #
What is a Full Node? #
A Full Node is a network node that syncs up with the state of the blockchain. It provides blockchain data to others by using RESTful APIs, a replica of the database by exposing data with interfaces. A Full Node keeps in syncs with the rest of the blockchain nodes and stores the state on disk. If the full node does not have the queried block on disk the full node can go find the blockchain where the queried data lives.
Installation and Configuration #
This section describes the steps to run and interact with a full node for the ICTech Hub.
First, you need to install the software.
Consider running your own ICTechNode.
Command-Line Interface #
The command-line interface (CLI) is the most powerful tool to access the ICTech Hub and use ICTech. To use the CLI, you must install the latest version of ICPlaza
on your machine.
Compare your version with the latest release version
Available Commands #
All available CLI commands are shown when you run the ICTechd command:
For each displayed command, you can use the --help
flag to get further information.
Remote Access to ICPlazad #
When choosing to remote access a Full Node and ICPlazad, you need a Full Node running and ICTech installed on your local machine.
ICPlazad
is the tool that enables you to interact with the node that runs on the ICTech Hub network, whether you run it yourself or not.
To set up ICPlazad
on a local machine and connect to an existing full node, use the following command:
First, set up the address of the full node you want to connect to:
If you run your own full node locally, use tcp://localhost:26657
as the address.
Finally, set the chain-id
of the blockchain you want to interact with:
Next, learn to use CLI commands to interact with the full node. You can run these commands as remote control or when you are running it on your local machine.
Create a Key Pair #
The default key is secp256k1 elliptic curve
. Use the ICPlazad keys
command to list the keys and generate a new key.
You will be asked to create a password (at least 8 characters) for this key-pair. This will return the information listed below:
NAME
: Name of your keyTYPE
: Type of your key, alwayslocal
.ADDRESS
: Your address. Used to receive funds.PUBKEY
: Your public key. Useful for validators.MNEMONIC
: 24-word phrase. Save this mnemonic somewhere safe. This phrase is required to recover your private key in case you forget the password. The mnemonic is displayed at the end of the output.
You can see all available keys by typing:
Use the --recover
flag to add a key that imports a mnemonic to your keyring.
Check your Account #
You can view your account by using the query account
command.
It will display your account type, account number, public key and current account sequence.
Check your Balance #
Query the account balance with the command:
The response contains keys balances
and pagination
. Each balances
entry contains an amount
held, connected to a denom
identifier. The typical $ATOM token is identified by the denom uatom
. Where 1 uatom
is 0.000001 ATOM.
When you query an account that has not received any token yet, the balances
entry is shown as an empty array.
Send Coins Using the CLI #
To send coins using the CLI:
Parameters:
<from_key_or_address>
: Key name or address of sending account.<to_address>
: Address of the recipient.<amount>
: This parameter accepts the format<value|coinName>
, such as1000000uatom
.
Flags:
--chain-id
: This flag allows you to specify the id of the chain. There are different ids for different testnet chains and mainnet chains.--gas-prices
: This flag allows you to specify the gas prices you pay for the transaction. The format is used as0.0025uatom
REST API #
The [REST API documents] list all the available endpoints that you can use to interact with your full node. Learn how to enable the REST API on your full node.
Listen for Incoming Transactions #
The recommended way to listen for incoming transactions is to periodically query the blockchain by using the following HTTP endpoint:
Last updated