Version
Overview
Connector Configuration
Tutorials
Reference
General
Ethereum
This page introduces the Ethereum adapter suitable for all the Ethereum clients that expose the web3 RPC interface over websockets.
This adapter relies on web3js 1.2.x that is the stable version coming from 1.0.0-beta.37
Hyperledger Besu and Geth are the current tested clients. The tests are driven via standard Ethereum JSON-RPC APIs so other clients should be compatible once docker configurations exist.
Some highlights of the provided features:
- configurable confirmation blocks threshold
The page covers the following aspects of using the Ethereum adapter:
- how to assemble a connection profile file, a.k.a., the blockchain network configuration file;
- how to use the adapter interface from the user callback module;
- transaction data gathered by the adapter;
- and a complete example of a connection profile.
Assembling the Network Configuration File
The JSON network configuration file of the adapter essentially defines which contracts are expected to be on the network and which account the adapter should use to deploy the pointed contracts and which account use to invoke them.
Connection profile example
We will provide an example of the configuration and then we’ll in deep key by key
{
"caliper": {
"blockchain": "ethereum",
"command" : {
"start": "docker-compose -f network/ethereum/1node-clique/docker-compose.yml up -d && sleep 3",
"end" : "docker-compose -f network/ethereum/1node-clique/docker-compose.yml down"
}
},
"ethereum": {
"url": "ws://localhost:8545",
"contractDeployerAddress": "0xc0A8e4D217eB85b812aeb1226fAb6F588943C2C2",
"contractDeployerAddressPassword": "password",
"fromAddress": "0xc0A8e4D217eB85b812aeb1226fAb6F588943C2C2",
"fromAddressPassword": "password",
"transactionConfirmationBlocks": 12,
"contracts": {
"simple": {
"path": "src/contract/ethereum/simple/simple.json",
"gas": {
"open": 45000,
"query": 100000,
"transfer": 70000
}
}
}
}
}
The top-level caliper
attribute specifies the type of the blockchain platform, so Caliper can instantiate the appropriate adapter when it starts. To use this adapter, specify the ethereum
value for the blockchain
attribute.
Furthermore, it also contains two optional commands: a start
command to execute once before the tests and an end
command to execute once after the tests. Using these commands is an easy way, for example, to automatically start and stop a test network. When connecting to an already deployed network, you can omit these commands.
These are the keys to provide inside the configuration file under the ethereum
one:
- URL of the RPC endpoint to connect to. Only websocket is currently supported.
- Deployer Address, which will deploy the required contracts.
- Deployer Address Private Key, the private key of the deployer address.
- Deployer Address Password to unlock the deployer address.
- Benchmark Address, from which the methods of the benchmark will be invoked.
- Benchmark Address Private Key, the private key of the benchmark address.
- Benchmark Address Password to unlock the benchmark address.
- Number of Confirmation Blocks to wait to consider a transaction as successfully accepted in the chain.
- Contract Configurations for pre-deployed contracts or for contracts to deploy and use in the benchmark.
The following sections detail each part separately. For a complete example, please refer to the example section or one of the example files in the network/ethereum
directories
URL
The URL of the node to connect to. Any host and port can be used if it is reachable. Currently only websocket is supported.
"url": "ws://localhost:8545"
Unfortunately, HTTP connections are explicitly disallowed, as
- there is no efficient way to guarantee the order of transactions submitted over http, which leads to nonce errors, and
- this adapter relies on web3.js, and this library has deprecated its support for RPC over HTTP.
Deployer Address
The address to use to deploy contracts of the network. Without particular or specific needs it can be set to be equal to the benchmark address. Its private key must be hold by the node connected with URL and it must be provided in the checksum form (the one with both lowercase and uppercase letters).
"contractDeployerAddress": "0xc0A8e4D217eB85b812aeb1226fAb6F588943C2C2"
Deployer Address Private Key
The private key for the deployer address. If present then transactions are signed inside caliper and sent “raw” to the ethereum node.
"contractDeployerAddressPrivateKey": "0x45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8"
Deployer Address Password
The password to use to unlock deployer address. If there isn’t an unlock password, this key must be present as empty string. If the deployer address private key is present this is not used.
"contractDeployerAddressPassword": "gottacatchemall"
Hyperledger Besu does not provide wallet services, so the
contractDeployerPassword
is not supported and the private key variant must be used.
Benchmark Address
The address to use while invoking all the methods of the benchmark. Its private key must be hold by the node connected with URL and it must be provided in the checksum form (the one with both lowercase and uppercase letters).
"fromAddress": "0xc0A8e4D217eB85b812aeb1226fAb6F588943C2C2"
Benchmark Address Seed
As an alternative to fromAddress
, fromAddressPrivateKey
, and fromAddressPassword
the network configuration can use a fixed seed and derive needed addresses via BIP-44 key derivation. Each caliper test worker will generate an address for use as fromAddress
and fromAddressPrivateKey
using the derivation path m/44'/60'/<x>'/0/0
, where
This configuration does not override fromAddress
, but it takes priority over fromAddressPrivateKey
and fromAddressPassword
.
"fromAddressSeed": "0x3f841bf589fdf83a521e55d51afddc34fa65351161eead24f064855fc29c9580"
The use of
fromAddressSeed
is mandatory if you want to use more than 1 worker in your benchmark. This is because each worker independently fetches the current transaction nonce for the address it is using. If they all use the same address, they will all get the same nonces, causing known transaction errors. By using a seed, each worker will generate a unique address and private key.
Benchmark Address Private Key
The private key for the benchmark address. If present then transactions are signed inside caliper and sent “raw” to the ethereum node.
This configuration takes priority over fromAddressPassword
.
"fromAddressPrivateKey": "0x45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8"
Benchmark Address Password
The password to use to unlock benchmark address. If there isn’t an unlock password, this key must be present as empty string. If the benchmark address private key is present this is not used.
"fromAddressPassword": "gottacatchemall"
Hyperledger Besu does not provide wallet services, so the
fromAddressPassword
option is not supported and the private key variant must be used.
Confirmation Blocks
It is the number of blocks the adapter will wait before warn Caliper that a transaction has been successfully executed on the network. You can freely tune it from 1 to the desired confirmations. Keep in mind that in the Ethereum main net (PoW), 12 to 20 confirmations can be required to consider a transaction as accepted in the blockchain. If you’re using different consensus algorith (like clique in the example network provided) it can be safely brought to a lower value. In any case it is up to you.
"transactionConfirmationBlocks": 12
Contract Configuration
It is the list, provided as a JSON object, of pre-deployed contracts or contracts to deploy on the network before running the benchmark. You should provide a JSON entry for each contract. The key will represent the contract identifier to invoke methods on that contract.
Depending on whether you plan to use pre-deployed contracts or deploy them during the benchmark, the configuration will differ slightly.
Defining configurations simultaneously for both pre-deployed contracts and contracts to be deployed by Caliper is currently not supported and may result in unexpected errors. This is because opting for pre-deployed contracts means the contract installation phase will be skipped.
In both cases, it strongly recommended to specify a gas
field, which is an object with one field per contract function that you will call in your test. The value of these fields should be set to the amount of gas that will be required to execute your transaction. There is no need for this number to be an exact match, as it’s used to set the gas limit for the transaction, so if your transaction might have a variable gas cost, just set this value to the highest gas usage that you would expect to see for your transaction.
Note: If you do not specify the gas for your contract functions, web3 will automatically call out to your node to estimate the gas requirement before submitting the transaction. This causes three problems. First, it means that your transaction will effectively execute twice, doubling the load on the node serving as your RPC endpoint. Second, the extra call will add significant additional latency to every transaction. Third, your transactions may be reordered, causing transaction failures due to out of order nonces.
Pre-deployed contracts
To use pre-deployed contracts, you must launch caliper using the --caliper-flow-skip-install
option, which skips the smart contract installation phase.
For each key you must provide a JSON object containing the contract address and the contract ABI. The ABI is required to invoke methods on the contract.
"contracts": {
"simple": {
"address": "0xc24f4561B8F1159E8D8661B282A2974cD48058C2",
"gas": {
"open": 45000,
"query": 100000,
"transfer": 70000
},
"abi": [...]
}
}
Contracts to Deploy
Contracts to be deployed by Caliper require the specification of a contract definition file for each. In the contract configuration you must include a path
field pointing to each contract definition file. It’s in this new file that you will define the contract’s ABI and bytecode, as well as the gas required to deploy it.
"contracts": {
"simple": {
"path": "src/contract/ethereum/simple/simple.json",
"gas": {
"open": 45000,
"query": 100000,
"transfer": 70000
}
},
"second": {
"path": "src/contract/ethereum/second/second.json",
"gas": {
"function": 12345
}
}
}
Contract Definition File
Contract definition file is a simple JSON file containing basic information to deploy and use an Ethereum contract. Four keys are required:
Here is an example:
{
"name": "The simplest workload contract",
"abi": [{"constant":true,"inputs":[{"nam......ype":"function"}],
"bytecode": "0x608060405.........b0029",
"gas": 259823
}
Name
It is a name to display in logs when the contract gets deployed. It is only a description name.
ABI
It is the ABI generated when compiling the contract. It is required in order to invoke methods on a contract.
Bytecode
It is the bytecode generated when compiling the contract. Note that since it is an hexadecimal it must start with the 0x
.
Gas
It is the gas required to deploy the contract. It can be easily calculated with widely used solidity development kits or querying to a running Ethereum node.
Using the Adapter Interface
The workload modules interact with the adapter at two phases of the tests: during the initialization of the workload module (the initializeWorkloadModule
function), and when submitting invoke or query transactions (the submitTransaction
function).
The initializeWorkloadModule function
See the corresponding documentation of the function for the description of its parameters.
The last argument of the function is a sutContext
object, which is a platform-specific object provided by the backend blockchain’s connector. The context object provided by this connector is the following:
{
fromAddress: "0xA89....7G"
web3: Web3
}
The fromAddress
property is the benchmark address while web3 is the configured instance of the Web3js client.
The submitTransaction function
The sutAdapter
object received (and saved) in the initializeWorkloadModule
function is of type ConnectorInterface
. Its getType()
function returns the fabric
string value.
The sendRequests
method of the connector API allows the workload module to submit requests to the SUT. It takes a single parameter: an object or array of objects containing the settings of the requests.
The settings object has the following structure:
contract
: string. Required. The ID of the contract (that is the key specified here).readOnly
: boolean. Optional. Indicates whether the request is a TX or a query. Defaults tofalse
.verb
: string. Required. The name of the function to call on the contract.value
: number. Optional. The value parameter in Wei to be passed to the payable function of the contract.args
: mixed[]. Optional. The list of arguments to pass to the method in the correct order as they appear in method signature. It must be an array.
let requestsSettings = [{
contract: 'simple',
verb: 'query',
readOnly: true,
value: 1000000000000000000000,
args: ['sfogliatella']
},{
contract: 'simple',
verb: 'open',
value: 900000000000000000000,
args: ['baba', 900]
}];
await this.sutAdapter.sendRequests(requestsSettings);
Currently each method call inside sendRequests
is sent separately, that is, they are NOT sent as a batch of calls on RPC.
To query a state on a contract state, set the readOnly
attribute to true
. The difference is that it can’t produce any change on the blockchain and node will answer with its local view of data. Like for traditional requests, currently there is no support for batch queries.
Transaction Data Gathered by the Adapter
The previously discussed sendRequests
function returns an array whose elements correspond to the result of the submitted request(s), with the type of TxStatus. The class provides some standard and platform-specific information about its corresponding transaction.
The standard information provided by the type are the following:
GetID():string
returns the transaction ID for the request.GetStatus():string
returns the final status of the transaction, eithersuccess
orfailed
.GetTimeCreate():number
returns the epoch when the transaction was submitted.GetTimeFinal():number
return the epoch when the transaction was finished.IsCommitted():boolean
indicates whether the transaction has been committed successfully.IsVerified():boolean
indicates whether we are sure about the final status of the transaction. Always true for successful transactions. False in all other cases.GetResult():any
returns the result of the transaction. Only requests withreadOnly
set to true will return the actual result of the call. Write operations, because they are asynchronous, will return the transaction hash.
License
The Caliper codebase is released under the Apache 2.0 license. Any documentation developed by the Caliper Project is licensed under the Creative Commons Attribution 4.0 International License. You may obtain a copy of the license, titled CC-BY-4.0, at http://creativecommons.org/licenses/by/4.0/.