-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscrtxxs.py
More file actions
28 lines (18 loc) · 706 Bytes
/
scrtxxs.py
File metadata and controls
28 lines (18 loc) · 706 Bytes
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
\'''
You need to edit the following variables below with your desired values:
WalletName - Whatever you want to name the wallet in the keyring
HotWalletPW - Passowrd for your keyring
WalletSeed - Seed if it is a new wallet, o/w it will pull from the keyring the WalletName
'''
import pwd
import os
import platform
pltform = platform.system()
if pltform == "Darwin":
KeyringDIR = "/Users/" + str(pwd.getpwuid(os.getuid())[0]) + "/.meile-multi-pay"
else:
KeyringDIR = "/home/" + str(pwd.getpwuid(os.getuid())[0]) + "/.meile-multi-pay"
WalletName = ""
HotWalletPW = ""
WalletSeed = ""
GRPC = "https://grpc.bluefren.xyz:443"