-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathproxy.py
69 lines (56 loc) · 1.96 KB
/
proxy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Copyright (C) 2018-2025 The python-bitcoin-utils developers
#
# This file is part of python-bitcoin-utils
#
# It is subject to the license terms in the LICENSE file found in the top-level
# directory of this distribution.
#
# No part of python-bitcoin-utils, including this file, may be copied, modified,
# propagated, or distributed except according to the terms contained in the
# LICENSE file.
from typing import Optional
from bitcoinrpc.authproxy import AuthServiceProxy # type: ignore
from bitcoinutils.setup import get_network
from bitcoinutils.constants import NETWORK_DEFAULT_PORTS
class NodeProxy:
"""Simple Bitcoin node proxy that can call all of Bitcoin's JSON-RPC functionality.
Attributes
----------
proxy : object
a bitcoinrpc AuthServiceProxy object
"""
def __init__(
self,
rpcuser: str,
rpcpassword: str,
host: Optional[str] = None,
port: Optional[int] = None,
) -> None:
"""Connects to node using credentials given
Parameters
----------
rpcuser : str
as defined in bitcoin.conf
rpcpassword : str
as defined in bitcoin.conf
host : str, optional
host where the Bitcoin node resides; defaults to 127.0.0.1
port : int, optional
port to connect to; uses default ports according to network
Raises
------
ValueError
if rpcuser and/or rpcpassword are not specified
"""
if not rpcuser or not rpcpassword:
raise ValueError("rpcuser or rpcpassword is missing")
if not host:
host = "127.0.0.1"
if not port:
port = NETWORK_DEFAULT_PORTS[get_network()]
self.proxy = AuthServiceProxy(
"http://{}:{}@{}:{}".format(rpcuser, rpcpassword, host, port)
)
def get_proxy(self) -> "NodeProxy":
"""Returns bitcoinrpc AuthServiceProxy object"""
return self.proxy