Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 834 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 834 Bytes

NEM Modules

==================== Build Status

A collection of modules developed by the NEM community for interacting with the NEM blockchain.

compilation:

mvn install

Multisig Creator Module

Creates a new multisig account given the desired cosigners and a funding account to pay the conversion fee.

usage:

cd nem-modules-mcm

$publicKey1 = <hex-string>
$publicKey2 = <hex-string>
$publicKey3 = <hex-string>
$fundingPrivateKey = <hex-string>

java -cp "target/nem-modules-mcm-0.6.84-BETA.jar:target/clientlibs/*" org.nem.modules.mcm.Main \
    -n 3 -m 2 -cosigners $publicKey1 $publicKey2 $publicKey3 \
    -signer $fundingPrivateKey \
    -host 37.187.70.29 -port 7890