Popular API Calls
Overview
API Calls
list_account_balances
vector<asset> graphene::wallet::wallet_api::list_account_balances(
const string &id)import json
from grapheneapi import GrapheneAPI
client = GrapheneAPI("localhost", 8092, "", "")
res = client.list_account_balances("dan")
print(json.dumps(res,indent=4))[
{
"asset_id": "1.3.0",
"amount": "331104701530"
},
{
"asset_id": "1.3.511",
"amount": 3844848635
},
{
"asset_id": "1.3.427",
"amount": 8638
},
{
"asset_id": "1.3.536",
"amount": 31957981
}
]transfer
signed_transaction graphene::wallet::wallet_api::transfer(
string from,
string to,
string amount,
string asset_symbol,
string memo,
bool broadcast = false)transfer2
get_account_history
get_object
get_asset
Last updated
