forked from townforge/townforge
1772 lines
56 KiB
Python
1772 lines
56 KiB
Python
# Copyright (c) 2018-2022, The Monero Project
|
|
|
|
#
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without modification, are
|
|
# permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
# conditions and the following disclaimer.
|
|
#
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
# of conditions and the following disclaimer in the documentation and/or other
|
|
# materials provided with the distribution.
|
|
#
|
|
# 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
# used to endorse or promote products derived from this software without specific
|
|
# prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
# THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
"""Daemon class to make rpc calls and store state."""
|
|
|
|
from .rpc import JSONRPC
|
|
|
|
class Daemon(object):
|
|
|
|
def __init__(self, protocol='http', host='127.0.0.1', port=0, idx=0, restricted_rpc = False):
|
|
base = 18480 if restricted_rpc else 18180
|
|
self.idx = idx
|
|
self.host = host
|
|
self.port = port
|
|
self.rpc = JSONRPC('{protocol}://{host}:{port}'.format(protocol=protocol, host=host, port=port if port else base+idx))
|
|
|
|
def getblocktemplate(self, address, prev_block = "", game_account_key = "", match_trade_commands = True, pos_flag = 0, client = ""):
|
|
getblocktemplate = {
|
|
'method': 'getblocktemplate',
|
|
'params': {
|
|
'client': client,
|
|
'wallet_address': address,
|
|
'pos_flag': pos_flag,
|
|
'game_account_key': game_account_key,
|
|
'match_trade_commands': match_trade_commands,
|
|
'reserve_size' : 1,
|
|
'prev_block' : prev_block,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(getblocktemplate)
|
|
get_block_template = getblocktemplate
|
|
|
|
def get_miner_data(self):
|
|
get_miner_data = {
|
|
'method': 'get_miner_data',
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_miner_data)
|
|
|
|
def calc_pow(self, major_version, height, block_blob, seed_hash = ''):
|
|
calc_pow = {
|
|
'method': 'calc_pow',
|
|
'params': {
|
|
'major_version': major_version,
|
|
'height': height,
|
|
'block_blob' : block_blob,
|
|
'seed_hash' : seed_hash,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(calc_pow)
|
|
|
|
def add_aux_pow(self, blocktemplate_blob, aux_pow, client = ""):
|
|
add_aux_pow = {
|
|
'method': 'add_aux_pow',
|
|
'params': {
|
|
'blocktemplate_blob': blocktemplate_blob,
|
|
'aux_pow' : aux_pow,
|
|
'client' : client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(add_aux_pow)
|
|
|
|
def send_raw_transaction(self, tx_as_hex, do_not_relay = False, do_sanity_checks = True, client = ""):
|
|
send_raw_transaction = {
|
|
'client': client,
|
|
'tx_as_hex': tx_as_hex,
|
|
'do_not_relay': do_not_relay,
|
|
'do_sanity_checks': do_sanity_checks,
|
|
}
|
|
return self.rpc.send_request("/send_raw_transaction", send_raw_transaction)
|
|
sendrawtransaction = send_raw_transaction
|
|
|
|
def submitblock(self, block):
|
|
submitblock = {
|
|
'method': 'submitblock',
|
|
'params': [ block ],
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(submitblock)
|
|
submit_block = submitblock
|
|
|
|
def getblock(self, hash = '', height = 0, fill_pow_hash = False, include_blob = True, include_json = True, client = ""):
|
|
getblock = {
|
|
'method': 'getblock',
|
|
'params': {
|
|
'client': client,
|
|
'hash': hash,
|
|
'height': height,
|
|
'fill_pow_hash': fill_pow_hash,
|
|
'include_blob': include_blob,
|
|
'include_json': include_json,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(getblock)
|
|
get_block = getblock
|
|
|
|
def getlastblockheader(self, client = ""):
|
|
getlastblockheader = {
|
|
'method': 'getlastblockheader',
|
|
'params': {
|
|
'client': client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(getlastblockheader)
|
|
get_last_block_header = getlastblockheader
|
|
|
|
def getblockheaderbyhash(self, hash = "", hashes = [], genesis = "", client = ""):
|
|
getblockheaderbyhash = {
|
|
'method': 'getblockheaderbyhash',
|
|
'params': {
|
|
'client': client,
|
|
'hash': hash,
|
|
'hashes': hashes,
|
|
'genesis': genesis,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(getblockheaderbyhash)
|
|
get_block_header_by_hash = getblockheaderbyhash
|
|
|
|
def getblockheaderbyheight(self, height, client = ""):
|
|
getblockheaderbyheight = {
|
|
'method': 'getblockheaderbyheight',
|
|
'params': {
|
|
'client': client,
|
|
'height': height,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(getblockheaderbyheight)
|
|
get_block_header_by_height = getblockheaderbyheight
|
|
|
|
def getblockheadersrange(self, start_height, end_height, fill_pow_hash = False, client = ""):
|
|
getblockheadersrange = {
|
|
'method': 'getblockheadersrange',
|
|
'params': {
|
|
'client': client,
|
|
'start_height': start_height,
|
|
'end_height': end_height,
|
|
'fill_pow_hash': fill_pow_hash,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(getblockheadersrange)
|
|
get_block_headers_range = getblockheadersrange
|
|
|
|
def get_block_pos_history(self, start_height, end_height, client = ""):
|
|
get_block_pos_history = {
|
|
'method': 'get_block_pos_history',
|
|
'params': {
|
|
'client': client,
|
|
'start_height': start_height,
|
|
'end_height': end_height,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_block_pos_history)
|
|
|
|
def get_connections(self, client = ""):
|
|
get_connections = {
|
|
'client': client,
|
|
'method': 'get_connections',
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_connections)
|
|
|
|
def get_info(self, client = ""):
|
|
get_info = {
|
|
'method': 'get_info',
|
|
'params': {
|
|
'client': client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_info)
|
|
getinfo = get_info
|
|
|
|
def get_status(self):
|
|
get_status = {
|
|
}
|
|
return self.rpc.send_request("/get_status", get_status)
|
|
|
|
def hard_fork_info(self, client = ""):
|
|
hard_fork_info = {
|
|
'method': 'hard_fork_info',
|
|
'params': {
|
|
'client': client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(hard_fork_info)
|
|
|
|
def generateblocks(self, address, blocks=1, prev_block = "", starting_nonce = 0, game_account_key = ""):
|
|
generateblocks = {
|
|
'method': 'generateblocks',
|
|
'params': {
|
|
'amount_of_blocks' : blocks,
|
|
'reserve_size' : 20,
|
|
'wallet_address': address,
|
|
'prev_block': prev_block,
|
|
'starting_nonce': starting_nonce,
|
|
'game_account_key': game_account_key,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(generateblocks)
|
|
|
|
def merge_mining_get_chain_id(self):
|
|
merge_mining_get_chain_id = {
|
|
'method': 'merge_mining_get_chain_id',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(merge_mining_get_chain_id)
|
|
|
|
def merge_mining_get_aux_block(self, address, aux_hash = "", height = 0, prev_id = ""):
|
|
merge_mining_get_aux_block = {
|
|
'method': 'merge_mining_get_aux_block',
|
|
'params': {
|
|
'address': address,
|
|
'aux_hash': aux_hash,
|
|
'height': height,
|
|
'prev_id': prev_id,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(merge_mining_get_aux_block)
|
|
|
|
def merge_mining_submit_solution(self, aux_blob, aux_hash, blob, merkle_proof, path, seed_hash):
|
|
merge_mining_submit_solution = {
|
|
'method': 'merge_mining_submit_solution',
|
|
'params': {
|
|
'aux_blob': aux_blob,
|
|
'aux_hash': aux_hash,
|
|
'blob': blob,
|
|
'merkle_proof': merkle_proof,
|
|
'path': path,
|
|
'seed_hash': seed_hash,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(merge_mining_submit_solution)
|
|
|
|
def get_height(self, client = ""):
|
|
get_height = {
|
|
'method': 'get_height',
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_request("/get_height", get_height)
|
|
getheight = get_height
|
|
|
|
def pop_blocks(self, nblocks = 1):
|
|
pop_blocks = {
|
|
'nblocks' : nblocks,
|
|
}
|
|
return self.rpc.send_request("/pop_blocks", pop_blocks)
|
|
|
|
def start_mining(self, miner_address, threads_count = 0, do_background_mining = False, ignore_battery = False):
|
|
start_mining = {
|
|
'miner_address' : miner_address,
|
|
'threads_count' : threads_count,
|
|
'do_background_mining' : do_background_mining,
|
|
'ignore_battery' : ignore_battery,
|
|
}
|
|
return self.rpc.send_request('/start_mining', start_mining)
|
|
|
|
def stop_mining(self):
|
|
stop_mining = {
|
|
}
|
|
return self.rpc.send_request('/stop_mining', stop_mining)
|
|
|
|
def mining_status(self):
|
|
mining_status = {
|
|
}
|
|
return self.rpc.send_request('/mining_status', mining_status)
|
|
|
|
def get_transaction_pool(self, client = ""):
|
|
get_transaction_pool = {
|
|
'client': client,
|
|
}
|
|
return self.rpc.send_request('/get_transaction_pool', get_transaction_pool)
|
|
|
|
def get_transaction_pool_hashes(self, check_cc_cmd_signature = False, client = ""):
|
|
get_transaction_pool_hashes = {
|
|
'client': client,
|
|
'check_cc_cmd_signature': check_cc_cmd_signature,
|
|
}
|
|
return self.rpc.send_request('/get_transaction_pool_hashes', get_transaction_pool_hashes)
|
|
|
|
def get_transaction_pool_stats(self, client = ""):
|
|
get_transaction_pool_stats = {
|
|
'client': client,
|
|
}
|
|
return self.rpc.send_request('/get_transaction_pool_stats', get_transaction_pool_stats)
|
|
|
|
def flush_txpool(self, txids = []):
|
|
flush_txpool = {
|
|
'method': 'flush_txpool',
|
|
'params': {
|
|
'txids': txids
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(flush_txpool)
|
|
|
|
def max_sync_height(self, set = False, max_sync_height = 0):
|
|
max_sync_height = {
|
|
'method': 'max_sync_height',
|
|
'params': {
|
|
'set': set,
|
|
'max_sync_height': max_sync_height
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(max_sync_height)
|
|
|
|
def get_version(self):
|
|
get_version = {
|
|
'method': 'get_version',
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_version)
|
|
|
|
def get_bans(self):
|
|
get_bans = {
|
|
'method': 'get_bans',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_bans)
|
|
|
|
def set_bans(self, bans = []):
|
|
set_bans = {
|
|
'method': 'set_bans',
|
|
'params': {
|
|
'bans': bans
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(set_bans)
|
|
|
|
def banned(self, address = ''):
|
|
banned = {
|
|
'method': 'banned',
|
|
'params': {
|
|
'address': address
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(banned)
|
|
|
|
def set_bootstrap_daemon(self, address, username = '', password = ''):
|
|
set_bootstrap_daemon = {
|
|
'address': address,
|
|
'username': username,
|
|
'password': password,
|
|
}
|
|
return self.rpc.send_request('/set_bootstrap_daemon', set_bootstrap_daemon)
|
|
|
|
def get_public_nodes(self, gray = False, white = True):
|
|
get_public_nodes = {
|
|
'gray': gray,
|
|
'white': white,
|
|
}
|
|
return self.rpc.send_request('/get_public_nodes', get_public_nodes)
|
|
|
|
def get_transactions(self, txs_hashes = [], decode_as_json = False, prune = False, split = False, get_cc_data = False, client = ""):
|
|
get_transactions = {
|
|
'client': client,
|
|
'txs_hashes': txs_hashes,
|
|
'decode_as_json': decode_as_json,
|
|
'prune': prune,
|
|
'split': split,
|
|
'get_cc_data': get_cc_data,
|
|
}
|
|
return self.rpc.send_request('/get_transactions', get_transactions)
|
|
gettransactions = get_transactions
|
|
|
|
def get_outs(self, outputs = [], get_txid = False, client = ""):
|
|
get_outs = {
|
|
'client': client,
|
|
'outputs': outputs,
|
|
'get_txid': get_txid,
|
|
}
|
|
return self.rpc.send_request('/get_outs', get_outs)
|
|
|
|
def get_coinbase_tx_sum(self, height, count, client = ""):
|
|
get_coinbase_tx_sum = {
|
|
'method': 'get_coinbase_tx_sum',
|
|
'params': {
|
|
'client': client,
|
|
'height': height,
|
|
'count': count,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_coinbase_tx_sum)
|
|
|
|
def get_output_distribution(self, amounts = [], from_height = 0, to_height = 0, cumulative = False, binary = False, compress = False, client = ""):
|
|
get_output_distribution = {
|
|
'method': 'get_output_distribution',
|
|
'params': {
|
|
'client': client,
|
|
'amounts': amounts,
|
|
'from_height': from_height,
|
|
'to_height': to_height,
|
|
'cumulative': cumulative,
|
|
'binary': binary,
|
|
'compress': compress,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_output_distribution)
|
|
|
|
def get_output_histogram(self, amounts = [], min_count = 0, max_count = 0, unlocked = False, recent_cutoff = 0, client = ""):
|
|
get_output_histogram = {
|
|
'method': 'get_output_histogram',
|
|
'params': {
|
|
'client': client,
|
|
'amounts': amounts,
|
|
'min_count': min_count,
|
|
'max_count': max_count,
|
|
'unlocked': unlocked,
|
|
'recent_cutoff': recent_cutoff,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_output_histogram)
|
|
|
|
def set_log_level(self, level):
|
|
set_log_level = {
|
|
'level': level,
|
|
}
|
|
return self.rpc.send_request('/set_log_level', set_log_level)
|
|
|
|
def set_log_categories(self, categories = ''):
|
|
set_log_categories = {
|
|
'categories': categories,
|
|
}
|
|
return self.rpc.send_request('/set_log_categories', set_log_categories)
|
|
|
|
def get_alt_blocks_hashes(self, client = ""):
|
|
get_alt_blocks_hashes = {
|
|
'client': client,
|
|
}
|
|
return self.rpc.send_request('/get_alt_blocks_hashes', get_alt_blocks_hashes)
|
|
|
|
def get_alternate_chains(self, client = ""):
|
|
get_alternate_chains = {
|
|
'method': 'get_alternate_chains',
|
|
'params': {
|
|
'client': client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_alternate_chains)
|
|
|
|
def get_fee_estimate(self, grace_blocks = 0):
|
|
get_fee_estimate = {
|
|
'method': 'get_fee_estimate',
|
|
'params': {
|
|
'grace_blocks': grace_blocks,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_fee_estimate)
|
|
|
|
def is_key_image_spent(self, key_images = [], client = ""):
|
|
is_key_image_spent = {
|
|
'key_images': key_images,
|
|
'client': client,
|
|
}
|
|
return self.rpc.send_request('/is_key_image_spent', is_key_image_spent)
|
|
|
|
def save_bc(self):
|
|
save_bc = {
|
|
}
|
|
return self.rpc.send_request('/save_bc', save_bc)
|
|
|
|
def get_peer_list(self):
|
|
get_peer_list = {
|
|
}
|
|
return self.rpc.send_request('/get_peer_list', get_peer_list)
|
|
|
|
def set_log_hash_rate(self, visible):
|
|
set_log_hash_rate = {
|
|
'visible': visible,
|
|
}
|
|
return self.rpc.send_request('/set_log_hash_rate', set_log_hash_rate)
|
|
|
|
def stop_daemon(self):
|
|
stop_daemon = {
|
|
}
|
|
return self.rpc.send_request('/stop_daemon', stop_daemon)
|
|
|
|
def get_net_stats(self):
|
|
get_net_stats = {
|
|
}
|
|
return self.rpc.send_request('/get_net_stats', get_net_stats)
|
|
|
|
def get_limit(self):
|
|
get_limit = {
|
|
}
|
|
return self.rpc.send_request('/get_limit', get_limit)
|
|
|
|
def set_limit(self, limit_down, limit_up):
|
|
set_limit = {
|
|
'limit_down': limit_down,
|
|
'limit_up': limit_up,
|
|
}
|
|
return self.rpc.send_request('/set_limit', set_limit)
|
|
|
|
def out_peers(self, out_peers):
|
|
out_peers = {
|
|
'out_peers': out_peers,
|
|
}
|
|
return self.rpc.send_request('/out_peers', out_peers)
|
|
|
|
def in_peers(self, in_peers):
|
|
in_peers = {
|
|
'in_peers': in_peers,
|
|
}
|
|
return self.rpc.send_request('/in_peers', in_peers)
|
|
|
|
def update(self, command, path = None):
|
|
update = {
|
|
'command': command,
|
|
'path': path,
|
|
}
|
|
return self.rpc.send_request('/update', update)
|
|
|
|
def get_block_count(self):
|
|
get_block_count = {
|
|
'method': 'get_block_count',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_block_count)
|
|
getblockcount = get_block_count
|
|
|
|
def get_block_hash(self, height):
|
|
get_block_hash = {
|
|
'method': 'on_get_block_hash',
|
|
'params': [height],
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_raw_json_rpc_request(get_block_hash)
|
|
on_get_block_hash = get_block_hash
|
|
on_getblockhash = get_block_hash
|
|
|
|
def relay_tx(self, txids = [], client = ""):
|
|
relay_tx = {
|
|
'method': 'relay_tx',
|
|
'params': {
|
|
'txids': txids,
|
|
'client': client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(relay_tx)
|
|
|
|
def sync_info(self, client = ""):
|
|
sync_info = {
|
|
'method': 'sync_info',
|
|
'params': {
|
|
'client': client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(sync_info)
|
|
|
|
def get_txpool_backlog(self, client = ""):
|
|
get_txpool_backlog = {
|
|
'method': 'get_txpool_backlog',
|
|
'params': {
|
|
'client': client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(get_txpool_backlog)
|
|
|
|
def prune_blockchain(self, check = False):
|
|
prune_blockchain = {
|
|
'method': 'prune_blockchain',
|
|
'params': {
|
|
'check': check,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(prune_blockchain)
|
|
|
|
def flush_cache(self, bad_txs = False):
|
|
flush_cache = {
|
|
'method': 'flush_cache',
|
|
'params': {
|
|
'bad_txs': bad_txs,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(flush_cache)
|
|
|
|
def sync_txpool(self):
|
|
sync_txpool = {
|
|
'method': 'sync_txpool',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(sync_txpool)
|
|
|
|
def rpc_access_info(self, client):
|
|
rpc_access_info = {
|
|
'method': 'rpc_access_info',
|
|
'params': {
|
|
'client': client,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(rpc_access_info)
|
|
|
|
def rpc_access_submit_nonce(self, client, nonce, cookie):
|
|
rpc_access_submit_nonce = {
|
|
'method': 'rpc_access_submit_nonce',
|
|
'params': {
|
|
'client': client,
|
|
'nonce': nonce,
|
|
'cookie': cookie,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(rpc_access_submit_nonce)
|
|
|
|
def rpc_access_pay(self, client, paying_for, payment):
|
|
rpc_access_pay = {
|
|
'method': 'rpc_access_pay',
|
|
'params': {
|
|
'client': client,
|
|
'paying_for': paying_for,
|
|
'payment': payment,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(rpc_access_pay)
|
|
|
|
def rpc_access_tracking(self, clear = False):
|
|
rpc_access_tracking = {
|
|
'method': 'rpc_access_tracking',
|
|
'params': {
|
|
'clear': clear,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(rpc_access_tracking)
|
|
|
|
def rpc_access_data(self):
|
|
rpc_access_data = {
|
|
'method': 'rpc_access_data',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(rpc_access_data)
|
|
|
|
def rpc_access_account(self, client, delta_balance = 0):
|
|
rpc_access_account = {
|
|
'method': 'rpc_access_account',
|
|
'params': {
|
|
'client': client,
|
|
'delta_balance': delta_balance,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(rpc_access_account)
|
|
|
|
# CC
|
|
|
|
def cc_lookup_account(self, public_key):
|
|
cc_lookup_account = {
|
|
'method': 'cc_lookup_account',
|
|
'params': {
|
|
'public_key': public_key,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_lookup_account)
|
|
|
|
def cc_get_account(self, id):
|
|
cc_get_account = {
|
|
'method': 'cc_get_account',
|
|
'params': {
|
|
'id': id,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_account)
|
|
|
|
def cc_get_city(self, id):
|
|
cc_get_city = {
|
|
'method': 'cc_get_city',
|
|
'params': {
|
|
'id': id,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_city)
|
|
|
|
def cc_get_flag(self, id, get_packed_tiles = False, get_unpacked_tiles = False):
|
|
cc_get_flag = {
|
|
'method': 'cc_get_flag',
|
|
'params': {
|
|
'id': id,
|
|
'get_packed_tiles': get_packed_tiles,
|
|
'get_unpacked_tiles': get_unpacked_tiles,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_flag)
|
|
|
|
def cc_find_flag(self, city, x, y):
|
|
cc_find_flag = {
|
|
'method': 'cc_find_flag',
|
|
'params': {
|
|
'city': city,
|
|
'x': x,
|
|
'y': y,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_find_flag)
|
|
|
|
def cc_get_new_flag_cost(self, city, x0, y0, x1, y1):
|
|
cc_get_new_flag_cost = {
|
|
'method': 'cc_get_new_flag_cost',
|
|
'params': {
|
|
'city': city,
|
|
'x0': x0,
|
|
'y0': y0,
|
|
'x1': x1,
|
|
'y1': y1,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_new_flag_cost)
|
|
|
|
def cc_get_order_book(self, bids, offers, type = [], id = [], calculate_matchable = True):
|
|
cc_get_order_book = {
|
|
'method': 'cc_get_order_book',
|
|
'params': {
|
|
'bids': bids,
|
|
'offers': offers,
|
|
'type': type,
|
|
'id': id,
|
|
'calculate_matchable': calculate_matchable,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_order_book)
|
|
|
|
def cc_get_nonces_mined(self, nonces):
|
|
cc_get_nonces_mined = {
|
|
'method': 'cc_get_nonces_mined',
|
|
'params': {
|
|
'nonces': nonces,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_nonces_mined)
|
|
|
|
def cc_get_shares(self, city = 0, include_flags = False, include_influence_changes = False, extra_flag = False, id = 0, owner = 0, role = 0, economic_power = 0, x0 = 0, y0 = 0, x1 = 0, y1 = 0, repair = 0, potential = [], base_height = 0, base_elevation_bonus = 0, average_slope = 0, south_facing = 0, bridge_score = 0, underwater_area = []):
|
|
cc_get_shares = {
|
|
'method': 'cc_get_shares',
|
|
'params': {
|
|
'city': city,
|
|
'include_flags': include_flags,
|
|
'include_influence_changes': include_influence_changes,
|
|
'extra_flag': extra_flag,
|
|
'id': id,
|
|
'owner': owner,
|
|
'role': role,
|
|
'economic_power': economic_power,
|
|
'x0': x0,
|
|
'y0': y0,
|
|
'x1': x1,
|
|
'y1': y1,
|
|
'repair': repair,
|
|
'potential': potential,
|
|
'base_height': base_height,
|
|
'base_elevation_bonus': base_elevation_bonus,
|
|
'average_slope': average_slope,
|
|
'south_facing': south_facing,
|
|
'bridge_score': bridge_score,
|
|
'underwater_area': underwater_area,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_shares)
|
|
|
|
def cc_get_last_update_events(self, height = None):
|
|
cc_get_last_update_events = {
|
|
'method': 'cc_get_last_update_events',
|
|
'params': {
|
|
'height': height,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_last_update_events)
|
|
|
|
def cc_get_game_events(self, min_height = 0, max_height = 0xffffffffffffffff, account = 0, flag = 0, item = 0, cmd = [], filter_news = False):
|
|
cc_get_game_events = {
|
|
'method': 'cc_get_game_events',
|
|
'params': {
|
|
'min_height': min_height,
|
|
'max_height': max_height,
|
|
'account': account,
|
|
'flag': flag,
|
|
'item': item,
|
|
'cmd': cmd,
|
|
'filter_news': filter_news,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_game_events)
|
|
|
|
def cc_get_discoveries(self, account = 0):
|
|
cc_get_discoveries = {
|
|
'method': 'cc_get_discoveries',
|
|
'params': {
|
|
'account': account,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_discoveries)
|
|
|
|
def cc_get_cities(self):
|
|
cc_get_cities = {
|
|
'method': 'cc_get_cities',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_cities)
|
|
|
|
def cc_get_special_events(self, city, all = False):
|
|
cc_get_special_events = {
|
|
'method': 'cc_get_special_events',
|
|
'params': {
|
|
'city': city,
|
|
'all': all,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_special_events)
|
|
|
|
def cc_get_custom_items(self, ids = [], include_ipfs_data = False):
|
|
cc_get_custom_items = {
|
|
'method': 'cc_get_custom_items',
|
|
'params': {
|
|
'ids': ids,
|
|
'include_ipfs_data': include_ipfs_data,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_custom_items)
|
|
|
|
def cc_get_accounts(self):
|
|
cc_get_accounts = {
|
|
'method': 'cc_get_accounts',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_accounts)
|
|
|
|
def cc_get_flags(self, role = -1, account = 0):
|
|
cc_get_flags = {
|
|
'method': 'cc_get_flags',
|
|
'params': {
|
|
'role': role,
|
|
'account': account,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_flags)
|
|
|
|
def cc_get_badge(self, id, imperial_units = True):
|
|
cc_get_badge = {
|
|
'method': 'cc_get_badge',
|
|
'params': {
|
|
'id': id,
|
|
'imperial_units': imperial_units,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_badge)
|
|
|
|
def cc_get_badge_totals(self):
|
|
cc_get_badge_totals = {
|
|
'method': 'cc_get_badge_totals',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_badge_totals)
|
|
|
|
def cc_get_attributes(self):
|
|
cc_get_attributes = {
|
|
'method': 'cc_get_attributes',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_attributes)
|
|
|
|
def cc_get_bonuses(self, accounts, research = False, firefighting = False, cartography_level = False, logging_level = False, quarrying_level = False, management_level = False):
|
|
cc_get_bonuses = {
|
|
'method': 'cc_get_bonuses',
|
|
'params': {
|
|
'accounts': accounts,
|
|
'research': research,
|
|
'firefighting': firefighting,
|
|
'cartography_level': cartography_level,
|
|
'logging_level': logging_level,
|
|
'quarrying_level': quarrying_level,
|
|
'management_level': management_level,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_bonuses)
|
|
|
|
def cc_is_invitation_used(self, invitation):
|
|
cc_is_invitation_used = {
|
|
'method': 'cc_is_invitation_used',
|
|
'params': {
|
|
'invitation': invitation,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_is_invitation_used)
|
|
|
|
def cc_get_flag_resizing_cost(self, city, x0_0, y0_0, x1_0, y1_0, x0_1, y0_1, x1_1, y1_1):
|
|
cc_get_flag_resizing_cost = {
|
|
'method': 'cc_get_flag_resizing_cost',
|
|
'params': {
|
|
'city': city,
|
|
'x0_0': x0_0,
|
|
'y0_0': y0_0,
|
|
'x1_0': x1_0,
|
|
'y1_0': y1_0,
|
|
'x0_1': x0_1,
|
|
'y0_1': y0_1,
|
|
'x1_1': x1_1,
|
|
'y1_1': y1_1,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_flag_resizing_cost)
|
|
|
|
def cc_get_service_fee(self, service_price, x0, y0, x1, y1):
|
|
cc_get_service_fee = {
|
|
'method': 'cc_get_service_fee',
|
|
'params': {
|
|
'service_price': service_price,
|
|
'x0': x0,
|
|
'y0': y0,
|
|
'x1': x1,
|
|
'y1': y1,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_service_fee)
|
|
|
|
def cc_get_new_city_cost(self):
|
|
cc_get_new_city_cost = {
|
|
'method': 'cc_get_new_city_cost',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_new_city_cost)
|
|
|
|
def cc_are_discoveries_enabled(self, account, discoveries):
|
|
cc_are_discoveries_enabled = {
|
|
'method': 'cc_are_discoveries_enabled',
|
|
'params': {
|
|
'account': account,
|
|
'discoveries': discoveries,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_are_discoveries_enabled)
|
|
|
|
def cc_get_item_count(self, id):
|
|
cc_get_item_count = {
|
|
'method': 'cc_get_item_count',
|
|
'params': {
|
|
'id': id,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_item_count)
|
|
|
|
def cc_get_calendar(self, height = None):
|
|
cc_get_calendar = {
|
|
'method': 'cc_get_calendar',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
if height is not None:
|
|
cc_get_calendar['params']['height'] = height
|
|
return self.rpc.send_json_rpc_request(cc_get_calendar)
|
|
|
|
def cc_get_temperature(self, city = 0):
|
|
cc_get_temperature = {
|
|
'method': 'cc_get_temperature',
|
|
'params': {
|
|
'city': city,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_temperature)
|
|
|
|
def cc_is_nonce_used(self, nonce, get_transaction = False):
|
|
cc_is_nonce_used = {
|
|
'method': 'cc_is_nonce_used',
|
|
'params': {
|
|
'nonce': nonce,
|
|
'get_transaction': get_transaction,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_is_nonce_used)
|
|
|
|
def cc_get_used_nonces(self):
|
|
cc_get_used_nonces = {
|
|
'method': 'cc_get_used_nonces',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_used_nonces)
|
|
|
|
def cc_get_new_nonces(self, num_nonces):
|
|
cc_get_new_nonces = {
|
|
'method': 'cc_get_new_nonces',
|
|
'params': {
|
|
'num_nonces': num_nonces,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_new_nonces)
|
|
|
|
def cc_get_scripts(self, all = False, first_script = 0, last_script = 0xffffffff, include_blob = False, include_requirements = False, account = 0, owner = 0, city = 0, types = [], include_replaced = False):
|
|
cc_get_scripts = {
|
|
'method': 'cc_get_scripts',
|
|
'params': {
|
|
'all': all,
|
|
'first_script': first_script,
|
|
'last_script': last_script,
|
|
'include_blob': include_blob,
|
|
'include_requirements': include_requirements,
|
|
'account': account,
|
|
'owner': owner,
|
|
'city': city,
|
|
'types': types,
|
|
'include_replaced': include_replaced,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_scripts)
|
|
|
|
def cc_get_script(self, script, max_resolved_blob_size = 0xffffffff):
|
|
cc_get_script = {
|
|
'method': 'cc_get_script',
|
|
'params': {
|
|
'script': script,
|
|
'max_resolved_blob_size': max_resolved_blob_size,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_script)
|
|
|
|
def cc_get_script_state(self, account, script, owner, state, city):
|
|
cc_get_script_state = {
|
|
'method': 'cc_get_script_state',
|
|
'params': {
|
|
'account': account,
|
|
'script': script,
|
|
'owner': owner,
|
|
'state': state,
|
|
'city': city,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_script_state)
|
|
|
|
def cc_get_script_variables(self):
|
|
cc_get_script_variables = {
|
|
'method': 'cc_get_script_variables',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_script_variables)
|
|
|
|
def cc_get_script_variable(self, name):
|
|
cc_get_script_variable = {
|
|
'method': 'cc_get_script_variable',
|
|
'params': {
|
|
'name': name,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_script_variable)
|
|
|
|
def cc_get_foreclosures(self):
|
|
cc_get_foreclosures = {
|
|
'method': 'cc_get_foreclosures',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_foreclosures)
|
|
|
|
def cc_get_runestones(self, locations= [], flag = 0):
|
|
cc_get_runestones = {
|
|
'method': 'cc_get_runestones',
|
|
'params': {
|
|
'locations': locations,
|
|
'flag': flag,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_runestones)
|
|
|
|
def cc_get_blob(self, hash):
|
|
cc_get_blob = {
|
|
'method': 'cc_get_blob',
|
|
'params': {
|
|
'hash': hash,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_blob)
|
|
|
|
def cc_get_blob_info(self, hashes):
|
|
cc_get_blob_info = {
|
|
'method': 'cc_get_blob_info',
|
|
'params': {
|
|
'hashes': hashes,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_blob_info)
|
|
|
|
def cc_get_blobs(self):
|
|
cc_get_blobs = {
|
|
'method': 'cc_get_blobs',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_blobs)
|
|
|
|
def cc_get_auctions(self, auctions = [], include_bid_history = False, include_ended = False):
|
|
cc_get_auctions = {
|
|
'method': 'cc_get_auctions',
|
|
'params': {
|
|
'auctions': auctions,
|
|
'include_bid_history': include_bid_history,
|
|
'include_ended': include_ended,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_auctions)
|
|
|
|
def cc_get_stats(self):
|
|
cc_get_stats = {
|
|
'method': 'cc_get_stats',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_stats)
|
|
|
|
def cc_get_item_ownership(self, item):
|
|
cc_get_item_ownership = {
|
|
'method': 'cc_get_item_ownership',
|
|
'params': {
|
|
'item': item,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_item_ownership)
|
|
|
|
def cc_get_item_supply(self, item = 0, include_names = True):
|
|
cc_get_item_supply = {
|
|
'method': 'cc_get_item_supply',
|
|
'params': {
|
|
'item': item,
|
|
'include_names': include_names,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_item_supply)
|
|
|
|
def cc_get_predefined_item_info(self, ids):
|
|
cc_get_predefined_item_info = {
|
|
'method': 'cc_get_predefined_item_info',
|
|
'params': {
|
|
'ids': ids,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_predefined_item_info)
|
|
|
|
def cc_is_custom_item_data(self, hash):
|
|
cc_is_custom_item_data = {
|
|
'method': 'cc_is_custom_item_data',
|
|
'params': {
|
|
'hash': hash,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_is_custom_item_data)
|
|
|
|
def cc_get_terrain(self, city, x0, y0, x1, y1, height = True, stability = False, agriculture = False, geothermal_heating = False, gemstone = False, wood_type = False, wood_quantity = False, stone_type = False, stone_quantity = False, cliff = False):
|
|
cc_get_terrain = {
|
|
'method': 'cc_get_terrain',
|
|
'params': {
|
|
'city': city,
|
|
'x0': x0,
|
|
'y0': y0,
|
|
'x1': x1,
|
|
'y1': y1,
|
|
'height': height,
|
|
'stability': stability,
|
|
'agriculture': agriculture,
|
|
'geothermal_heating': geothermal_heating,
|
|
'gemstone': gemstone,
|
|
'wood_type': wood_type,
|
|
'wood_quantity': wood_quantity,
|
|
'stone_type': stone_type,
|
|
'stone_quantity': stone_quantity,
|
|
'cliff': cliff,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_terrain)
|
|
|
|
def cc_get_crop_yield(self, flag):
|
|
cc_get_crop_yield = {
|
|
'method': 'cc_get_crop_yield',
|
|
'params': {
|
|
'flag': flag,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_crop_yield)
|
|
|
|
def cc_get_mushroom_yield(self, flag):
|
|
cc_get_mushroom_yield = {
|
|
'method': 'cc_get_mushroom_yield',
|
|
'params': {
|
|
'flag': flag,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_mushroom_yield)
|
|
|
|
def cc_get_production(self, city, x0, y0, x1, y1, role, economic_power, age = 0, dense_forest = False, dense_rockbed = False, logging_level = 0, quarrying_level = 0, occupation = 0, calculate_influence_bonus = True):
|
|
cc_get_production = {
|
|
'method': 'cc_get_production',
|
|
'params': {
|
|
'city': city,
|
|
'x0': x0,
|
|
'y0': y0,
|
|
'x1': x1,
|
|
'y1': y1,
|
|
'role': role,
|
|
'economic_power': economic_power,
|
|
'age': age,
|
|
'dense_forest': dense_forest,
|
|
'dense_rockbed': dense_rockbed,
|
|
'logging_level': logging_level,
|
|
'quarrying_level': quarrying_level,
|
|
'occupation': occupation,
|
|
'calculate_influence_bonus': calculate_influence_bonus,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_production)
|
|
|
|
def cc_get_whispers(self, city, px0 = -0x7fffffff, py0 = -0x7fffffff, px1 = 0x7fffffff, py1 = 0x7fffffff):
|
|
cc_get_whispers = {
|
|
'method': 'cc_get_whispers',
|
|
'params': {
|
|
'city': city,
|
|
'px0': px0,
|
|
'py0': py0,
|
|
'px1': px1,
|
|
'py1': py1,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_whispers)
|
|
|
|
def cc_get_badge_scores(self, account):
|
|
cc_get_badge_scores = {
|
|
'method': 'cc_get_badge_scores',
|
|
'params': {
|
|
'account': account,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_badge_scores)
|
|
|
|
def cc_get_far_fish_population(self):
|
|
cc_get_far_fish_population = {
|
|
'method': 'cc_get_far_fish_population',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_far_fish_population)
|
|
|
|
def cc_get_places(self, city, x0 = 0, y0 = 0, x1 = 0xffffffff, y1 = 0xffffffff):
|
|
cc_get_places = {
|
|
'method': 'cc_get_places',
|
|
'params': {
|
|
'city': city,
|
|
'x0': x0,
|
|
'y0': y0,
|
|
'x1': x1,
|
|
'y1': y1,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_places)
|
|
|
|
def cc_replace_script_blob(self, script, blob):
|
|
cc_replace_script_blob = {
|
|
'method': 'cc_replace_script_blob',
|
|
'params': {
|
|
'script': script,
|
|
'blob': blob,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_replace_script_blob)
|
|
|
|
def cc_get_rare_fish_data(self):
|
|
cc_get_rare_fish_data = {
|
|
'method': 'cc_get_rare_fish_data',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_rare_fish_data)
|
|
|
|
def cc_get_user_textures(self, block, include_data, include_recent = False):
|
|
cc_get_user_textures = {
|
|
'method': 'cc_get_user_textures',
|
|
'params': {
|
|
'block': block,
|
|
'include_data': include_data,
|
|
'include_recent': include_recent,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_user_textures)
|
|
|
|
def cc_get_user_texture(self, texture):
|
|
cc_get_user_texture = {
|
|
'method': 'cc_get_user_texture',
|
|
'params': {
|
|
'texture': texture,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_user_texture)
|
|
|
|
def cc_get_user_texture_from_nonce(self, nonce):
|
|
cc_get_user_texture_from_nonce = {
|
|
'method': 'cc_get_user_texture_from_nonce',
|
|
'params': {
|
|
'nonce': nonce,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_user_texture_from_nonce)
|
|
|
|
def cc_get_merchant_ship_available_items(self):
|
|
cc_get_merchant_ship_available_items = {
|
|
'method': 'cc_get_merchant_ship_available_items',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_merchant_ship_available_items)
|
|
|
|
def cc_get_merchant_ships(self):
|
|
cc_get_merchant_ships = {
|
|
'method': 'cc_get_merchant_ships',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_merchant_ships)
|
|
|
|
def cc_get_building_cost(self, x0, y0, x1, y1, role, economic_power, previous_economic_power = 0, civil_engineering = False, improved_civil_engineering = False, advanced_civil_engineering = False):
|
|
cc_get_building_cost = {
|
|
'method': 'cc_get_building_cost',
|
|
'params': {
|
|
'x0': x0,
|
|
'y0': y0,
|
|
'x1': x1,
|
|
'y1': y1,
|
|
'role': role,
|
|
'economic_power': economic_power,
|
|
'previous_economic_power': previous_economic_power,
|
|
'civil_engineering': civil_engineering,
|
|
'improved_civil_engineering': improved_civil_engineering,
|
|
'advanced_civil_engineering': advanced_civil_engineering,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_building_cost)
|
|
|
|
def cc_get_item_creation_fee(self, prestige_bonus, role_bonus, consumable = 0):
|
|
cc_get_item_creation_fee = {
|
|
'method': 'cc_get_item_creation_fee',
|
|
'params': {
|
|
'prestige_bonus': prestige_bonus,
|
|
'role_bonus': role_bonus,
|
|
'consumable': consumable,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_item_creation_fee)
|
|
|
|
def cc_get_epochs(self):
|
|
cc_get_epochs = {
|
|
'method': 'cc_get_epochs',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_epochs)
|
|
|
|
def cc_get_available_title_components(self, account):
|
|
cc_get_available_title_components = {
|
|
'method': 'cc_get_available_title_components',
|
|
'params': {
|
|
'account': account,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_available_title_components)
|
|
|
|
def cc_get_coru_requests(self, player = 0):
|
|
cc_get_coru_requests = {
|
|
'method': 'cc_get_coru_requests',
|
|
'params': {
|
|
'player': player,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_coru_requests)
|
|
|
|
def cc_get_coru_games(self, games = [], player = 0, active_only = True):
|
|
cc_get_coru_games = {
|
|
'method': 'cc_get_coru_games',
|
|
'params': {
|
|
'games': games,
|
|
'player': player,
|
|
'active_only': active_only,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_coru_games)
|
|
|
|
def cc_get_coru_coins_and_runes(self, account = 0):
|
|
cc_get_coru_coins_and_runes = {
|
|
'method': 'cc_get_coru_coins_and_runes',
|
|
'params': {
|
|
'account': account,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_coru_coins_and_runes)
|
|
|
|
def cc_get_coru_tournaments(self, tournaments = [], player = 0, active_only = True):
|
|
cc_get_coru_tournaments = {
|
|
'method': 'cc_get_coru_tournaments',
|
|
'params': {
|
|
'tournaments': tournaments,
|
|
'player': player,
|
|
'active_only': active_only,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_coru_tournaments)
|
|
|
|
def cc_get_trustee_balances(self):
|
|
cc_get_trustee_balances = {
|
|
'method': 'cc_get_trustee_balances',
|
|
'params': {
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_trustee_balances)
|
|
|
|
def cc_get_trustee_balance(self, pkey):
|
|
cc_get_trustee_balance = {
|
|
'method': 'cc_get_trustee_balance',
|
|
'params': {
|
|
'pkey': pkey,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_trustee_balance)
|
|
|
|
def cc_get_lightsources(self, locations = [], flag = 0):
|
|
cc_get_lightsources = {
|
|
'method': 'cc_get_lightsources',
|
|
'params': {
|
|
'locations': locations,
|
|
'flag': flag,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_lightsources)
|
|
|
|
def cc_get_stakes(self, account = 0, include_inactive_flags = False):
|
|
cc_get_stakes = {
|
|
'method': 'cc_get_stakes',
|
|
'params': {
|
|
'account': account,
|
|
'include_inactive_flags': include_inactive_flags,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_stakes)
|
|
|
|
def cc_get_role_bonus(self, items, role = 0, width = 256, height = 256):
|
|
cc_get_role_bonus = {
|
|
'method': 'cc_get_role_bonus',
|
|
'params': {
|
|
'items': items,
|
|
'role': role,
|
|
'width': width,
|
|
'height': height,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_role_bonus)
|
|
|
|
def cc_get_influences(self, flag, assume_all_flags_active = False):
|
|
cc_get_influences = {
|
|
'method': 'cc_get_influences',
|
|
'params': {
|
|
'flag': flag,
|
|
'assume_all_flags_active': assume_all_flags_active,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_influences)
|
|
|
|
def cc_get_market_prices(self, items, use_last_resort = True):
|
|
cc_get_market_prices = {
|
|
'method': 'cc_get_market_prices',
|
|
'params': {
|
|
'items': items,
|
|
'use_last_resort': use_last_resort,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_market_prices)
|
|
|
|
def cc_get_vistas(self, city, player = 0, ids = 0):
|
|
cc_get_vistas = {
|
|
'method': 'cc_get_vistas',
|
|
'params': {
|
|
'city': city,
|
|
'player': player,
|
|
'ids': ids,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_vistas)
|
|
|
|
def cc_get_ancestors(self, player = 0, ids = 0):
|
|
cc_get_ancestors = {
|
|
'method': 'cc_get_ancestors',
|
|
'params': {
|
|
'player': player,
|
|
'ids': ids,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_ancestors)
|
|
|
|
def cc_get_last_update_script_events(self, player = 0):
|
|
cc_get_last_update_script_events = {
|
|
'method': 'cc_get_last_update_script_events',
|
|
'params': {
|
|
'player': player,
|
|
},
|
|
'jsonrpc': '2.0',
|
|
'id': '0'
|
|
}
|
|
return self.rpc.send_json_rpc_request(cc_get_last_update_script_events)
|