Finally, scripts for easy Multi-Sig management on EOSIO

CryptoLions
2 min readSep 2, 2020

--

It seems to us that multi-signatures are a pain point on most EOSIO blockchains. They’re time consuming and complex.

We thought these scripts for creating, proposing, reviewing, approving, and executing multi-signatures would help.

https://www.pexels.com/photo/people-toasting-wine-glasses-3171837/

Github

For FIO PROTOCOL

For all other EOSIO Chains

INSTRUCTIONS

Step 1. Config

Begin by editing the file 0_CONFIG.json . The README.md explains all the parameters.

For Example:

{                           
"proposer": "lioninjungle", "proposalName": "testmsig",
"approver": "ohtigertiger", "msig_expiration_h": 168, "actions_list_file": "1_actions_list", "requireBPsapprove": 0,
"approvers_list": "{\"actor\": \"lioninjungle\", \"permission\": \"active\"},{\"actor\": \"ohtigertiger\", \"permission\": \"active\"},{\"actor\": \"iliketurtles\", \"permission\": \"active\"},{\"actor\": \"gorillapower\", \"permission\": \"active\"},{\"actor\": \"hungryolddog\", \"permission\": \"active\"},{\"actor\": \"ssssssssnake\", \"permission\": \"active\"},{\"actor\": \"thebluewhale\", \"permission\": \"active\"},{\"actor\": \"proudrooster\", \"permission\": \"active\"}", "cleos": "/opt/bin/bin/cleos", "walletHost": "http://127.0.0.1:5553", "nodeHost": "https://jungle3.cryptolions.io:443" }

Step 2. List action

Next edit the file 1_actions_list to list all the actions the multi-signature will execute.

Step 3. Run Appropriate Scripts
Lastly, run the scripts numbered 2 to 7 based on which parts of the multi-signature process you need to execute.

🦁🦁🦁

CryptoLions is a Block Producer based in Ukraine. We strive to make EOSIO blockchains more valuable by building projects that improve the ecosystem, by setting the standard for transparency and accountability, and by popularizing EOSIO.

website: http://cryptolions.io/
github: https://github.com/CryptoLions
telegram: https://t.me/CryptoLions_io
steemit: https://steemit.com/@cryptolions
twitter: https://twitter.com/EOS_CryptoLions
medium: https://medium.com/@cryptolions/
youtube: https://www.youtube.com/channel/UCB7F-KO0mmZ1yVBCq0_1gtA

--

--