You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the wallet TUI, there is no "Connected Base Node ID" and navigating over to the "Receive" tab shows no "Tari Address one-sided", "Node ID / Public key", nor "Network Address". I have looked across other issues and I know that the "Connected Base Node ID" can be a url like "https://rpc.tari.com" or some hash.
I recently installed the bundle of binaries for release v5.1.0. I ran the node and things appear to have synced, I ran the wallet and I can see "Chain Tip" populating. I would like my wallet to use my local node. I have added the fallback url as part of debugging, but even that does not work.
Let me know if you need other screenshots, logs, etc.
Here are all of the ports used when I run just the node:
Here are the configurations I've changed in my config.toml:
[base_node]
mining_enabled = true
#second_layer_grpc_enabled = false
# Set to false to disable the base node GRPC server (default = true)
grpc_enabled = true
# The socket to expose for the gRPC base node server (default = "http://127.0.0.1:18142")
grpc_address = "/ip4/127.0.0.1/tcp/18142"
# Uncomment all gRPC server methods that should be allowed (only active when `grpc_enabled = true`)
grpc_server_allow_methods = [
"get_version",
"check_for_updates",
"get_sync_info",
"get_sync_progress",
"get_tip_info",
"identify",
"get_network_status",
"list_headers",
"get_header_by_hash",
"get_blocks",
"get_block_timing",
"get_constants",
"get_block_size",
"get_block_fees",
"get_tokens_in_circulation",
"get_network_difficulty",
"get_new_block_template",
"get_new_block_with_coinbases",
"get_new_block_template_with_coinbases",
"get_new_block",
"get_new_block_blob",
#"submit_block",
#"submit_block_blob",
#"submit_transaction",
#"search_kernels",
#"search_utxos",
#"fetch_matching_utxos",
"get_peers",
"get_mempool_transactions",
"transaction_state",
"list_connected_peers",
"get_mempool_stats",
"get_active_validator_nodes",
"get_validator_node_changes",
"get_shard_key",
"get_template_registrations",
"get_side_chain_utxos",
"search_payment_references",
"search_payment_references_via_output_hash",
]
# Wallet Query HTTP service details
# `external_address` is optional, but if not set, then wallet wont be able to call our endpoint.
# This address must be accessible by the wallet (on a global scale over the internet).
[base_node.http_wallet_query_service]
port = 6743
#external_address = ""
[wallet]
# Set to true to enable grpc. (default = false)
grpc_enabled = true
# The URL of the HTTP client to use for base node service requests
http_server_url="http://127.0.0.1:6743"
# The fallback url address to use if the base node at http_server_url does not respond
fallback_http_server_url = "https://rpc.tari.com" # MainNet
Here is a sample from ~/.tari/mainnet/logs/wallet/other.log:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
In the wallet TUI, there is no "Connected Base Node ID" and navigating over to the "Receive" tab shows no "Tari Address one-sided", "Node ID / Public key", nor "Network Address". I have looked across other issues and I know that the "Connected Base Node ID" can be a url like "https://rpc.tari.com" or some hash.
I recently installed the bundle of binaries for release v5.1.0. I ran the node and things appear to have synced, I ran the wallet and I can see "Chain Tip" populating. I would like my wallet to use my local node. I have added the fallback url as part of debugging, but even that does not work.
Let me know if you need other screenshots, logs, etc.
Here are all of the ports used when I run just the node:
Example snippet from running the
minotari_nodebinary:Here are the configurations I've changed in my config.toml:
Here is a sample from
~/.tari/mainnet/logs/wallet/other.log:System:
Debian 12 with kernel 6.1.0-40-amd64
Beta Was this translation helpful? Give feedback.
All reactions