kvstore_utils
Utility class for KVStore-related operations.
Code Example
Module
class human_protocol_sdk.kvstore.kvstore_utils.KVStoreData(key, value)
Bases: object
__init__(key, value)
Initializes a KVStoreData instance.
Parameters:
key (
str
) – Keyvalue (
str
) – Value
class human_protocol_sdk.kvstore.kvstore_utils.KVStoreUtils
Bases: object
A utility class that provides additional KVStore-related functionalities.
static get_kvstore_data(chain_id, address)
Returns the KVStore data for a given address.
Parameters:
chain_id (
ChainId
) – Network in which the KVStore data has been deployedaddress (
str
) – Address of the KVStore
Return type:
Optional
[List
[KVStoreData
]]Returns: List of KVStore data
Example:
Last updated