Technical Concepts
On this page
Architecture #
Learn how ICTech's architecture leverages the ICTech SDK Proof-of-Stake functionality, EVM compatibility and fast-finality from Tendermint Core’s BFT consensus. {synopsis}
::: tip 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧
This documentation page is currently under work in progress.
🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 :::
ICTech SDK #
ICTech enables the full composability and modularity of the ICTech SDK.
Tendermint Core & the Application Blockchain Interface (ABCI) #
Tendermint consists of two chief technical components: a blockchain consensus engine and a generic application interface. The consensus engine, called Tendermint Core, ensures that the same transactions are recorded on every machine in the same order. The application interface, called the Application Blockchain Interface (ABCI), enables the transactions to be processed in any programming language.
Tendermint has evolved to be a general purpose blockchain consensus engine that can host arbitrary application states. Since Tendermint can replicate arbitrary applications, it can be used as a plug-and-play replacement for the consensus engines of other blockchains. ICPlaza is such an example of an ABCI application replacing Ethereum’s PoW via Tendermint’s consensus engine.
Another example of a cryptocurrency application built on Tendermint is the ICTech network. Tendermint is able to decompose the blockchain design by offering a very simple API (ie. the ABCI) between the application process and consensus process.
EVM module #
ICTech enables EVM compatibility by implementing various components that together support all the EVM state transitions while ensuring the same developer experience as Ethereum:
Ethereum transaction format as a ICTech SDK
Tx
andMsg
interfaceEthereum’s
secp256k1
curve for the ICTech KeyringStateDB
interface for state updates and queriesJSON-RPC client for interacting with the EVM
Accounts #
This document describes the in-built accounts system of ICTech.
ICTech Accounts #
ICTech defines its own custom Account
type that uses Ethereum’s ECDSA secp256k1 curve for keys. This satisfies the EIP84 for full BIP44 paths. The root HD path for ICTech-based accounts is m/44'/60'/0'/0
.
Addresses and Public Keys #
BIP-0173 defines a new format for segregated witness output addresses that contains a human-readable part that identifies the Bech32 usage. ICTech uses the following HRP (human readable prefix) as the base HRP:
ICTech
ICTech
ICTech
There are 3 main types of HRP for the Addresses
/PubKeys
available by default on ICTech:
Addresses and Keys for accounts, which identify users (e.g. the sender of a
message
). They are derived using theeth_secp256k1
curve.Addresses and Keys for validator operators, which identify the operators of validators. They are derived using the
eth_secp256k1
curve.Addresses and Keys for consensus nodes, which identify the validator nodes participating in consensus. They are derived using the
ed25519
curve.
Accounts
ICPlaza
ICPlazapub
eth_secp256k1
20
33
(compressed)
Validator Operator
ICPlazavaloper
ICPlazavaloperpub
eth_secp256k1
20
33
(compressed)
Consensus Nodes
ICPlazavalcons
ICPlazavalconspub
ed25519
20
32
Address formats for clients #
EthAccount
can be represented in both Bech32 (ICPlaza1...
) and hex (0x...
) formats for Ethereum’s Web3 tooling compatibility.
The Bech32 format is the default format for ICTech-SDK queries and transactions through CLI and REST clients. The hex format on the other hand, is the Ethereum common.Address
representation of a ICTech sdk.AccAddress
.
Address (Bech32):
ICPlaza1z3t55m0l9h0eupuz3dp5t5cypyv674jj7mz2jw
Address (EIP55 Hex):
0x91defC7fE5603DFA8CC9B655cF5772459BF10c6f
Compressed Public Key:
{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AsV5oddeB+hkByIJo/4lZiVUgXTzNfBPKC73cZ4K1YD2"}
Address conversion #
The ICPlazad debug addr <address>
can be used to convert an address between hex and bech32 formats. For example:
:::: tabs ::: tab Bech32
::: ::: tab Hex
::: ::::
Key output #
::: tip The ICTech SDK Keyring output (i.e ICPlazad keys
) only supports addresses and public keys in Bech32 format. :::
We can use the keys show
command of ICPlazad
with the flag --bech <type> (acc|val|cons)
to obtain the addresses and keys as mentioned above,
:::: tabs ::: tab Account
::: ::: tab Validator
::: ::: tab Consensus
::: ::::
Querying an Account #
You can query an account address using the CLI, gRPC or
Command Line Interface #
ICTech gRPC and REST #
JSON-RPC #
To retrieve the Ethereum hex address using Web3, use the JSON-RPC eth_accounts
or personal_listAccounts
endpoints:
Chain ID #
Learn about the ICTech chain-id format
Official Chain IDs #
::: tip NOTE: The latest Chain ID (i.e highest Version Number) is the latest version of the software and mainnet. :::
ICTech 2
13141619-2
ICPlaza
2
2
ICTech 1
13141619-1
ICPlaza
1
1
::: ::::
::: tip You can also lookup the EIP155 Chain ID
by referring to chainlist.org. :::
The Chain Identifier #
Every chain must have a unique identifier or chain-id
. Tendermint requires each application to define its own chain-id
in the genesis.json fields. However, in order to comply with both EIP155 and ICPlaza standard for chain upgrades, ICPlaza-compatible chains must implement a special structure for their chain identifiers.
Structure #
The ICTechChain ID contains 3 main components
Identifier: Unstructured string that defines the name of the application.
EIP155 Number: Immutable EIP155
CHAIN_ID
that defines the replay attack protection number.Version Number: Is the version number (always positive) that the chain is currently running. This number MUST be incremented every time the chain is upgraded or forked in order to avoid network or consensus errors.
Format #
The format for specifying and ICTech compatible chain-id in genesis is the following:
The following table provides an example where the second row corresponds to an upgrade from the first one:
ICPlaza_13141619-1
ICPlaza
13141619
1
ICPlaza_13141619-2
ICPlaza
13141619
2
...
…
…
…
ICPlaza_13141619-N
ICPlaza
13141619
N
Encoding #
Learn about the encoding formats used on ICPlaza.
Encoding Formats #
Protocol Buffers #
The ICTech introduces protobuf as the main encoding format for both client and state serialization. All the EVM module types that are used for state and clients (transaction messages, genesis, query services, etc) will be implemented as protocol buffer messages.
Amino #
The ICTech SDK also supports the legacy Amino encoding format for backwards compatibility with previous versions, specially for client encoding and signing with Ledger devices. ICTech does not support Amino in the EVM module, but it is supported for all other ICTech SDK modules that enable it.
RLP #
Recursive Length Prefix (RLP), is an encoding/decoding algorithm that serializes a message and allows for quick reconstruction of encoded data.ICTech uses RLP to encode/decode Ethereum messages for JSON-RPC handling to conform messages to the proper Ethereum format. This allows messages to be encoded and decoded in the exact format as Ethereum’s.
The x/evm
transactions (MsgEthereumTx
) encoding is performed by casting the message to a go-ethereum’s Transaction
and then marshaling the transaction data using RLP:
Pending State #
Learn how ICTech handles pending state queries.
ICTech vs Ethereum #
In Ethereum, pending blocks are generated as they are queued for production by miners. These pending blocks include pending transactions that are picked out by miners, based on the highest reward paid in gas. This mechanism exists as block finality is not possible on the Ethereum network. Blocks are committed with probabilistic finality, which means that transactions and blocks become less likely to become reverted as more time (and blocks) passes.
ICTech is designed quite differently on this front as there is no concept of a “pending state”. ICTech uses Tendermint Core BFT consensus which provides instant finality for transaction. For this reason, Ethermint does not require a pending state mechanism, as all (if not most) of the transactions will be committed to the next block (avg. block time on ICTech chains is ~8s). However, this causes a few hiccups in terms of the Ethereum Web3-compatible queries that can be made to pending state.
Another significant difference with Ethereum, is that blocks are produced by validators or block producers, who include transactions from their local mempool into blocks in a first-in-first-out (FIFO) fashion. Transactions on ICTech cannot be ordered or cherry picked out from the Tendermint node.
Pending State Queries #
IICTech will make queries which will account for any unconfirmed transactions present in a node’s transaction mempool. A pending state query made will be subjective and the query will be made on the target node’s mempool. Thus, the pending state will not be the same for the same query to two different nodes.
JSON-RPC Calls on Pending Transactions #
eth_getBalance
eth_getTransactionCount
eth_getBlockTransactionCountByNumber
eth_getBlockByNumber
eth_getTransactionByHash
eth_getTransactionByBlockNumberAndIndex
eth_sendTransaction
Last updated