From 2a31316744e4d2ba4dc2813091e3adf0288a1e6f Mon Sep 17 00:00:00 2001 From: Miroslav Gatsanoga Date: Fri, 16 Jun 2023 10:36:21 +0300 Subject: [PATCH] Add missing account info details to ContractInfo Signed-off-by: Miroslav Gatsanoga --- services/contract_get_info.proto | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/services/contract_get_info.proto b/services/contract_get_info.proto index 4b2c8727..c825b6ee 100644 --- a/services/contract_get_info.proto +++ b/services/contract_get_info.proto @@ -148,6 +148,31 @@ message ContractGetInfoResponse { * Staking metadata for this contract. */ StakingInfo staking_info = 15; + + /** + * The total number of tinybars proxy staked to this account + */ + int64 proxyReceived = 16; + + /** + * If true, no transaction can transfer to this account unless signed by this account's key + */ + bool receiverSigRequired = 17; + + /** + * The number of NFTs owned by this account + */ + int64 ownedNfts = 18; + + /** + * The alias of this account + */ + bytes alias = 19; + + /** + * The ethereum transaction nonce associated with this account. + */ + int64 ethereum_nonce = 20; } /**