-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathsetup.py
49 lines (37 loc) · 1019 Bytes
/
setup.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
# 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.
NETWORK = "testnet"
networks = {"mainnet", "testnet", "regtest"}
def setup(network: str = "testnet") -> str:
global NETWORK
NETWORK = network
return NETWORK
def get_network() -> str:
global NETWORK
return NETWORK
def is_mainnet() -> bool:
global NETWORK
if NETWORK == "mainnet":
return True
else:
return False
def is_testnet() -> bool:
global NETWORK
if NETWORK == "testnet":
return True
else:
return False
def is_regtest() -> bool:
global NETWORK
if NETWORK == "regtest":
return True
else:
return False