the toolset for cyber protocol and cosmos ecosystem
Project description
cyberutils
PyPI Package · GitHub Repository
usage
execute bash query
get bash query result and error
from cyberutils.bash import execute_bash
execute_bash(
bash_command='cyber status --node https://rpc.bostrom.cybernode.ai:443')
get json from bash query result
from cyberutils.bash import get_json_from_bash_query
get_json_from_bash_query(
bash_command='cyber status --node https://rpc.bostrom.cybernode.ai:443')
execute a cosmwasm contract
import requests
from cyber_sdk.client.lcd import LCDClient
from cyber_sdk.key.mnemonic import MnemonicKey
from cyberutils.contract import execute_contract
WALLET_SEED = 'rack canyon puzzle grow afford faint heavy kick furnace economy change loop debate tip acquire render rib truth bachelor monster page range wine measure'
CONTRACT_ADDRESS = 'bostrom1nwm9pjmfgmxgc4euyfps05p9pfde8vd4sm8pavy93eu9xquz27dsgyxtml'
# initiate lcd client and wallet
mk = MnemonicKey(mnemonic=WALLET_SEED)
lcd_client = LCDClient(
url='https://lcd.bostrom.cybernode.ai/',
chain_id='bostrom',
prefix='bostrom'
)
wallet = lcd_client.wallet(mk)
# an execution message in a contract must match its schema
execute_msg = {
"transfer" : {
"recipient": "bostrom1xszmhkfjs3s00z2nvtn7evqxw3dtus6yr8e4pw",
"amount": "1000000"
}
}
# load a contract schema for an execute message validation
contract_schema_json = \
requests.get(
url='https://raw.githubusercontent.com/Snedashkovsky/cw-plus/main/contracts/cw20-base/schema/cw20-base.json'
).json()
# execution of a contract
execute_contract(
execute_msgs=[execute_msg],
wallet=wallet,
contract_address=CONTRACT_ADDRESS,
lcd_client=lcd_client,
gas=500_000,
fee_amount=0,
fee_denom='boot',
contract_execute_schema=contract_schema_json['execute'],
memo='the first transfer')
execute a graphql query
import pandas as pd
from cyberutils.graphql import execute_graphql
res = await execute_graphql(
request="""
query AllContracts {
contracts(order_by: {tx: desc_nulls_last}) {
address
admin
code_id
creation_time
creator
fees
gas
height
label
tx
}
}
""",
graphql_url='https://index.bostrom.cybernode.ai/v1/graphql')
pd.DataFrame(res['contracts'])
a query with variable values
import pandas as pd
from cyberutils.graphql import execute_graphql
res = await execute_graphql(
request="""
query ContractsCodeID($code_id: bigint) {
contracts(order_by: {tx: desc_nulls_last}, where: {code_id: {_eq: $code_id}}) {
address
admin
creation_time
creator
fees
gas
height
label
tx
code_id
}
}
""",
variable_values={"code_id": "3"},
graphql_url='https://index.bostrom.cybernode.ai/v1/graphql')
pd.DataFrame(res['contracts'])
get messages with a given address and type
import pandas as pd
from cyberutils.graphql import get_messages_by_address_and_type
res = await get_messages_by_address_and_type(
address='bostrom1xszmhkfjs3s00z2nvtn7evqxw3dtus6yr8e4pw',
msg_type='cosmos.bank.v1beta1.MsgSend',
graphql_url='https://index.bostrom.cybernode.ai/v1/graphql')
pd.DataFrame(res)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cyberutils-0.0.5.tar.gz
(7.6 kB
view details)
Built Distribution
File details
Details for the file cyberutils-0.0.5.tar.gz
.
File metadata
- Download URL: cyberutils-0.0.5.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3126174aee62d7b6c2b6ae5995fcacc76fb848ec5529d607f7381e7a2cb2fdaf |
|
MD5 | b28b481a04d9b1c72c99c0a8e906b169 |
|
BLAKE2b-256 | 43161c508e68b4de234e93e9dee8ff5912922f845287c28d2448e252c40546e4 |
Provenance
File details
Details for the file cyberutils-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: cyberutils-0.0.5-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ea2384a0f7b637e06e185b8e357175d544055540082082e91dc4b040267c6a0 |
|
MD5 | 0bee686b62576680ac3114cabd907fdd |
|
BLAKE2b-256 | 9be40cb4c90e4f650844c1a633ee7953eda09ed25c5a5f8a15f8f360aef890fc |