[tilt] make multisig approvals easy (#512)
* For convinience * Fix comment
This commit is contained in:
parent
59b0efbf6c
commit
f3f28b4214
|
@ -15,14 +15,12 @@ MESH_VAULT_EXT_AUTHORITY_KEY_PATH = MESH_KEY_DIR + "external_authority.json"
|
||||||
|
|
||||||
ALICE_KEY_PATH = MESH_KEY_DIR + "member_alice.json"
|
ALICE_KEY_PATH = MESH_KEY_DIR + "member_alice.json"
|
||||||
BOB_KEY_PATH = MESH_KEY_DIR + "member_bob.json"
|
BOB_KEY_PATH = MESH_KEY_DIR + "member_bob.json"
|
||||||
CAROL_KEY_PATH = MESH_KEY_DIR + "member_carol.json"
|
|
||||||
|
|
||||||
create_key_addr = "73UuSY2yXat7h7T49MMGg8TiHPqJJKKVc33DmC4b41Hf" # The person that instantiated the multisig on mainnet used this create key, it never needs to sign but we're using it to match mainnet
|
create_key_addr = "73UuSY2yXat7h7T49MMGg8TiHPqJJKKVc33DmC4b41Hf" # The person that instantiated the multisig on mainnet used this create key, it never needs to sign but we're using it to match mainnet
|
||||||
ext_authority_addr = sol_run_or_die("address", ["--keypair", MESH_VAULT_EXT_AUTHORITY_KEY_PATH], capture_output=True).stdout.strip()
|
ext_authority_addr = sol_run_or_die("address", ["--keypair", MESH_VAULT_EXT_AUTHORITY_KEY_PATH], capture_output=True).stdout.strip()
|
||||||
|
|
||||||
alice_addr = sol_run_or_die("address", ["--keypair", ALICE_KEY_PATH], capture_output=True).stdout.strip()
|
alice_addr = sol_run_or_die("address", ["--keypair", ALICE_KEY_PATH], capture_output=True).stdout.strip()
|
||||||
bob_addr = sol_run_or_die("address", ["--keypair", BOB_KEY_PATH], capture_output=True).stdout.strip()
|
bob_addr = sol_run_or_die("address", ["--keypair", BOB_KEY_PATH], capture_output=True).stdout.strip()
|
||||||
carol_addr = sol_run_or_die("address", ["--keypair", CAROL_KEY_PATH], capture_output=True).stdout.strip()
|
|
||||||
|
|
||||||
# wrap run_or_die in msg builder common cli args
|
# wrap run_or_die in msg builder common cli args
|
||||||
def msg_builder_run_or_die(args = [], debug=False, **kwargs):
|
def msg_builder_run_or_die(args = [], debug=False, **kwargs):
|
||||||
|
@ -40,8 +38,8 @@ res = msg_builder_run_or_die([
|
||||||
"-p", SOL_PAYER_KEYPAIR,
|
"-p", SOL_PAYER_KEYPAIR,
|
||||||
"-c", "localdevnet",
|
"-c", "localdevnet",
|
||||||
"-r", SOL_RPC_URL,
|
"-r", SOL_RPC_URL,
|
||||||
"-i", f"{alice_addr},{bob_addr},{carol_addr}",
|
"-i", f"{alice_addr},{bob_addr}",
|
||||||
"-t", "2", # 2/3 threshold
|
"-t", "1", # 1/3 threshold
|
||||||
],
|
],
|
||||||
capture_output=True, debug=True, die=False)
|
capture_output=True, debug=True, die=False)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
[
|
|
||||||
140, 155, 132, 14, 35, 183, 53, 188, 155, 194, 27, 24, 251, 0, 26, 136, 173,
|
|
||||||
9, 140, 24, 155, 157, 172, 249, 41, 205, 221, 234, 114, 32, 128, 179, 120,
|
|
||||||
208, 86, 87, 116, 157, 31, 72, 104, 90, 21, 155, 104, 85, 190, 144, 253, 151,
|
|
||||||
189, 47, 172, 194, 170, 246, 97, 26, 211, 96, 203, 106, 98, 216
|
|
||||||
]
|
|
Loading…
Reference in New Issue