Comment on page
Get smart contract info
A query that returns the current state of a smart contract instance, including its balance. Queries do not change the state of the smart contract or require network consensus. The information is returned from a single node processing the query.
Smart Contract Info Response
Field | The byte code file ID |
Contract ID | ID of the contract instance, in the format used in transactions. |
Account ID | ID of the cryptocurrency account owned by the contract instance. |
Contract Account ID | ID of both the contract instance and the cryptocurrency account owned by the contract. |
Admin Key | The state of the instance and its fields can be modified arbitrarily if this key signs a transaction to modify it. If this is null, then such modifications are not possible, and there is no administrator that can override the normal operation of this smart contract instance. Note that if it is created with no admin keys, then there is no administrator to authorize changing the admin keys, so there can never be any admin keys for that instance. |
Expiration Time | The current time at which this contract instance (and its account) is set to expire. |
Auto Renew Period | The expiration time will extend every this many seconds. If there are insufficient funds, then it extends as long as possible. If the account is empty when it expires, then it is deleted. |
Storage | Number of bytes of storage being used by this instance (which affects the cost to extend the expiration time). |
Contract Memo | The memo associated with the contract (max 100 bytes). |
Balance | The current balance of the contract. |
Deleted | Whether the contract has been deleted. |
Ledger ID | |
TokenRelationships | |
Staking Info | The staking metadata for this contract. This includes the staking period start, the pending reward, the account ID or the node ID, whether or not rewards were declined, and how many hbars are staked to this contract account, if any. See HIP-406.
Live on: previewnet/testnet |
Query Signing Requirements
- The client operator account's private key (fee payer) is required to sign this query
Query Fees
Method | Type | Description |
---|---|---|
setContractId(<contractId>) | ContractId | The ID of the smart contract to return the token for |
Java
JavaScript
Go
//Create the query
ContractInfoQuery query = new ContractInfoQuery()
.setContractId(contractId);
//Sign the query with the client operator private key and submit to a Hedera network
ContractInfo info = query.execute(client);
System.out.print(info);
//Create the query
const query = new ContractInfoQuery()
.setContractId(contractId);
//Sign the query with the client operator private key and submit to a Hedera network
const info = await query.execute(client);
console.log(info);
//Create the query
query := hedera.NewContractInfoQuery().
SetContractID(contractId)
//Sign with the client operator private key to pay for the query and submit the query to a Hedera network
info, err := query.Execute(client)
if err != nil {
panic(err)
}
//Print the account key to the console
println(info
Sample Output:
ContractInfo{
contractId=0.0.104966,
accountId=0.0.104966,
contractAccountId=0000000000000000000000000000000000019a06,
adminKey=302a300506032b6570032100fcd7cce3eef78f76a538c5573ce8f00258
386741e03adc17c66075bf659b865d,
expirationTime=2021-02-10T22:27:15Z,
autoRenewPeriod=PT2160H,
storage=523,
contractMemo=,
balance=0 tℏ
}
Last modified 8mo ago