From 60e58ebb99a0c55079ded320ef1fe9b81e784a52 Mon Sep 17 00:00:00 2001 From: ssallam Date: Fri, 18 May 2018 16:32:42 +0200 Subject: [PATCH] Basic composer. --- parity/README.md | 2 - parity/parity/authorities/validator0.json | 22 ++++ parity/parity/authorities/validator0.pwd | 1 + parity/parity/authorities/validator1.json | 22 ++++ parity/parity/authorities/validator1.pwd | 1 + parity/parity/authorities/validator2.json | 22 ++++ parity/parity/authorities/validator2.pwd | 1 + parity/parity/config/chain.json | 150 ++++++++++++++++++++++ parity/parity/config/member.toml | 18 +++ parity/parity/config/validator.toml | 21 +++ parity/parity/keys/address_book.json | 1 + parity/parity/keys/dapps_history.json | 1 + parity/parity/keys/master0.json | 21 +++ parity/parity/keys/master1.json | 21 +++ parity/parity/keys/master10.json | 21 +++ parity/parity/keys/master11.json | 21 +++ parity/parity/keys/master12.json | 21 +++ parity/parity/keys/master13.json | 21 +++ parity/parity/keys/master14.json | 21 +++ parity/parity/keys/master15.json | 21 +++ parity/parity/keys/master16.json | 21 +++ parity/parity/keys/master17.json | 21 +++ parity/parity/keys/master18.json | 21 +++ parity/parity/keys/master19.json | 21 +++ parity/parity/keys/master2.json | 21 +++ parity/parity/keys/master20.json | 21 +++ parity/parity/keys/master3.json | 21 +++ parity/parity/keys/master4.json | 21 +++ parity/parity/keys/master5.json | 21 +++ parity/parity/keys/master6.json | 21 +++ parity/parity/keys/master7.json | 21 +++ parity/parity/keys/master8.json | 21 +++ parity/parity/keys/master9.json | 21 +++ parity/parity/keys/slave.json | 22 ++++ parity/parity/keys/validator.json | 0 parity/parity/node0.network.key | 1 + parity/parity/node1.network.key | 1 + parity/parity/node2.network.key | 1 + 38 files changed, 726 insertions(+), 2 deletions(-) create mode 100644 parity/parity/authorities/validator0.json create mode 100644 parity/parity/authorities/validator0.pwd create mode 100644 parity/parity/authorities/validator1.json create mode 100644 parity/parity/authorities/validator1.pwd create mode 100644 parity/parity/authorities/validator2.json create mode 100644 parity/parity/authorities/validator2.pwd create mode 100644 parity/parity/config/chain.json create mode 100644 parity/parity/config/member.toml create mode 100644 parity/parity/config/validator.toml create mode 100644 parity/parity/keys/address_book.json create mode 100644 parity/parity/keys/dapps_history.json create mode 100644 parity/parity/keys/master0.json create mode 100644 parity/parity/keys/master1.json create mode 100644 parity/parity/keys/master10.json create mode 100644 parity/parity/keys/master11.json create mode 100644 parity/parity/keys/master12.json create mode 100644 parity/parity/keys/master13.json create mode 100644 parity/parity/keys/master14.json create mode 100644 parity/parity/keys/master15.json create mode 100644 parity/parity/keys/master16.json create mode 100644 parity/parity/keys/master17.json create mode 100644 parity/parity/keys/master18.json create mode 100644 parity/parity/keys/master19.json create mode 100644 parity/parity/keys/master2.json create mode 100644 parity/parity/keys/master20.json create mode 100644 parity/parity/keys/master3.json create mode 100644 parity/parity/keys/master4.json create mode 100644 parity/parity/keys/master5.json create mode 100644 parity/parity/keys/master6.json create mode 100644 parity/parity/keys/master7.json create mode 100644 parity/parity/keys/master8.json create mode 100644 parity/parity/keys/master9.json create mode 100644 parity/parity/keys/slave.json create mode 100755 parity/parity/keys/validator.json create mode 100644 parity/parity/node0.network.key create mode 100644 parity/parity/node1.network.key create mode 100644 parity/parity/node2.network.key diff --git a/parity/README.md b/parity/README.md index 528d710..8650df4 100644 --- a/parity/README.md +++ b/parity/README.md @@ -1,3 +1 @@ # Instructions to run a Parity dev node using Docker Compose - - diff --git a/parity/parity/authorities/validator0.json b/parity/parity/authorities/validator0.json new file mode 100644 index 0000000..15d6d06 --- /dev/null +++ b/parity/parity/authorities/validator0.json @@ -0,0 +1,22 @@ +{ + "id": "0902d04b-f26e-5c1f-e3ae-78d2c1cb16e7", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "6a829fe7bc656d85f6c2e9fd21784952" + }, + "ciphertext": "1bfec0b054a648af8fdd0e85662206c65a4af0ed15fede4ad41ca9ab7b504ce2", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "95f96b5ee22dd537e06076eb8d7078eb7275d29af935782fe476696b11be50e5" + }, + "mac": "4af2215c3cd9447a5b0512d7d1c3ea5a4435981e1c8f48bf71d7a49c0e5b4986" + }, + "address": "00bd138abd70e2f00903268f3db08f2d25677c9e", + "name": "Validator0", + "meta": "{}" +} diff --git a/parity/parity/authorities/validator0.pwd b/parity/parity/authorities/validator0.pwd new file mode 100644 index 0000000..ce118da --- /dev/null +++ b/parity/parity/authorities/validator0.pwd @@ -0,0 +1 @@ +node0 diff --git a/parity/parity/authorities/validator1.json b/parity/parity/authorities/validator1.json new file mode 100644 index 0000000..cdf3b7a --- /dev/null +++ b/parity/parity/authorities/validator1.json @@ -0,0 +1,22 @@ +{ + "id": "e854acbe-e6b2-e812-9f84-7b0945a1f14f", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "1b90ae52dcc1bc285ae3846d0ca9be53" + }, + "ciphertext": "b80f21bfb2029dafc89c36c6838e7a9e711ee13ec3e6900c3b097e45ae2ece7c", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "d823ab988002888a19336ab6650b83a4c536b42612148c9c5337ec4d92e981d1" + }, + "mac": "f8d1e53f4be85b0f77aa02bfe08b93eacdef74995822a59ddaea0497a69318af" + }, + "address": "00aa39d30f0d20ff03a22ccfc30b7efbfca597c2", + "name": "Validator1", + "meta": "{}" +} diff --git a/parity/parity/authorities/validator1.pwd b/parity/parity/authorities/validator1.pwd new file mode 100644 index 0000000..f50c4f2 --- /dev/null +++ b/parity/parity/authorities/validator1.pwd @@ -0,0 +1 @@ +node1 diff --git a/parity/parity/authorities/validator2.json b/parity/parity/authorities/validator2.json new file mode 100644 index 0000000..31dc1c2 --- /dev/null +++ b/parity/parity/authorities/validator2.json @@ -0,0 +1,22 @@ +{ + "id": "26ef5e07-4494-52b5-653f-a982ac907807", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "53addf73788522f6d5bf73abb0e0b8da" + }, + "ciphertext": "88c1013308cff929825e5da57ceaf15ae86e656165bcb2de3b06b24985358af6", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "ab8efcf7ee2c368eced8982b22328d862ea0c15307ce6ccd5994fae5a9b13244" + }, + "mac": "c93ca54145b4f21b62c422247609d0b891149f0d9752f6fe9ef60421f10bad6c" + }, + "address": "002e28950558fbede1a9675cb113f0bd20912019", + "name": "Validator2", + "meta": "{}" +} diff --git a/parity/parity/authorities/validator2.pwd b/parity/parity/authorities/validator2.pwd new file mode 100644 index 0000000..6810417 --- /dev/null +++ b/parity/parity/authorities/validator2.pwd @@ -0,0 +1 @@ +node2 diff --git a/parity/parity/config/chain.json b/parity/parity/config/chain.json new file mode 100644 index 0000000..e6bc064 --- /dev/null +++ b/parity/parity/config/chain.json @@ -0,0 +1,150 @@ +{ + "name": "ocean-protocol", + "engine": { + "authorityRound": { + "params": { + "stepDuration": "1", + "validators": { + "list": [ + "0x00Bd138aBD70e2F00903268F3Db08f2D25677C9e", + "0x00Aa39d30F0D20FF03a22cCfc30B7EfbFca597C2", + "0x002e28950558fbede1a9675cb113f0bd20912019" + ] + }, + "validateScoreTransition": 1000000000, + "validateStepTransition": 1500000000, + "maximumUncleCount": 1000000000 + } + } + }, + "params": { + "maximumExtraDataSize": "0x20", + "minGasLimit": "0x1388", + "networkID": "0x2323", + "gasLimitBoundDivisor": "0x400" + }, + "genesis": { + "seal": { + "authorityRound": { + "step": "0x0", + "signature": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + } + }, + "difficulty": "0x20000", + "gasLimit": "0x165A0BC00" + }, + "accounts": { + "0x0000000000000000000000000000000000000001": { + "balance": "1", + "builtin": { + "name": "ecrecover", + "pricing": { + "linear": { + "base": 3000, + "word": 0 + } + } + } + }, + "0x0000000000000000000000000000000000000002": { + "balance": "1", + "builtin": { + "name": "sha256", + "pricing": { + "linear": { + "base": 60, + "word": 12 + } + } + } + }, + "0x0000000000000000000000000000000000000003": { + "balance": "1", + "builtin": { + "name": "ripemd160", + "pricing": { + "linear": { + "base": 600, + "word": 120 + } + } + } + }, + "0x0000000000000000000000000000000000000004": { + "balance": "1", + "builtin": { + "name": "identity", + "pricing": { + "linear": { + "base": 15, + "word": 3 + } + } + } + }, + "0x6B0c56d1Ad5144b4d37fa6e27DC9afd5C2435c3B": { + "balance": "10000000000000000000000000000" + }, + "0x0011598De1016A350ad719D23586273804076774": { + "balance": "10000000000000000000000000000" + }, + "0x00eBF1c449Cc448a14Ea5ba89C949a24Fa805a14": { + "balance": "10000000000000000000000000000" + }, + "0x006B8d5F5c8Ad11E5E6Cf9eE6624433891430965": { + "balance": "10000000000000000000000000000" + }, + + "0x009A1372f9E2D70014d7F31369F115FC921a87c8": { + "balance": "10000000000000000000000000000" + }, + "0x0076ed2DD9f7dc78e3f336141329F8784D8cd564": { + "balance": "10000000000000000000000000000" + }, + "0x006dB7698B897B842a42A1C3ce423b07C2656Ecd": { + "balance": "10000000000000000000000000000" + }, + "0x0012fc0db732dfd07a0cd8e4bedc6b160c9aedc5": { + "balance": "10000000000000000000000000000" + }, + "0x00f137e9bfe37cc015f11cec8339cc2f1a3ae3a6": { + "balance": "10000000000000000000000000000" + }, + "0x00c2bc2f078e1dbafa4a1fa46929e1f2ca207f00": { + "balance": "10000000000000000000000000000" + }, + "0x000a3702732843418d83a03e65a3d9f7add58864": { + "balance": "10000000000000000000000000000" + }, + "0x009c4c00de80cb8b0130906b09792aac6585078f": { + "balance": "10000000000000000000000000000" + }, + "0x0053017d2ef8119654bdc921a9078567a77e854d": { + "balance": "10000000000000000000000000000" + }, + "0x002491c91e81da1643de79582520ac4c77229e58": { + "balance": "10000000000000000000000000000" + }, + "0x00fd696f0c0660779379f6bff8ce58632886f9d2": { + "balance": "10000000000000000000000000000" + }, + "0x007f16bc32026e7cd5046590e4f5b711ef1a6d8b": { + "balance": "10000000000000000000000000000" + }, + "0x00fb81808899fd51c4a87a642084138be62189a0": { + "balance": "10000000000000000000000000000" + }, + "0x00a61dabf0324bc07ba5a82a97c5f15d38fa9bbc": { + "balance": "10000000000000000000000000000" + }, + "0x007a11ac48952a7e8e661833f4803bd7ffa58f77": { + "balance": "10000000000000000000000000000" + }, + "0x00e7ad5b906c829c71c2f6f6cec016866ed1c264": { + "balance": "10000000000000000000000000000" + }, + "0x0075f4f4d7324fef36371610d03e1195894bf420": { + "balance": "10000000000000000000000000000" + } + } +} diff --git a/parity/parity/config/member.toml b/parity/parity/config/member.toml new file mode 100644 index 0000000..0d5d34d --- /dev/null +++ b/parity/parity/config/member.toml @@ -0,0 +1,18 @@ +[parity] +chain = "/parity/config/chain.json" + +[rpc] +interface = "0.0.0.0" +cors = ["all"] +hosts = ["all"] +apis = ["web3", "eth", "net", "parity", "traces", "rpc", "personal", "parity_accounts", "signer", "parity_set"] + +[network] +bootnodes = [ + "enode://147573f46fe9f5cc38fbe070089a31390baec5dd2827c8f2ef168833e4d0254fbee3969a02c5b9910ea5d5b23d86a6ed5eabcda17cc12007b7d9178b6c697aa5@172.16.0.10:30303", + "enode://1412ee9b9e23700e4a67a8fe3d8d02e10376b6e1cb748eaaf8aa60d4652b27872a8e1ad65bb31046438a5d3c1b71b00ec3ce0b4b42ac71464b28026a3d0b53af@172.16.0.11:30303", + "enode://9076c143a487aa163437a86f7d009f257f405c50bb2316800b9c9cc40e5a38fef5b414a47636ec38fdabc8a1872b563effa8574a7f8f85dc6bde465c368f1bf5@172.16.0.12:30303" +] + +[ui] +interface = "0.0.0.0" diff --git a/parity/parity/config/validator.toml b/parity/parity/config/validator.toml new file mode 100644 index 0000000..6fd41d6 --- /dev/null +++ b/parity/parity/config/validator.toml @@ -0,0 +1,21 @@ +[parity] +chain = "/parity/config/chain.json" + +[rpc] +interface = "0.0.0.0" +cors = ["all"] +hosts = ["all"] +apis = ["web3", "eth", "net", "parity", "traces", "rpc", "personal", "parity_accounts", "signer", "parity_set"] + +[network] +bootnodes = [ + "enode://147573f46fe9f5cc38fbe070089a31390baec5dd2827c8f2ef168833e4d0254fbee3969a02c5b9910ea5d5b23d86a6ed5eabcda17cc12007b7d9178b6c697aa5@172.16.0.10:30303", + "enode://1412ee9b9e23700e4a67a8fe3d8d02e10376b6e1cb748eaaf8aa60d4652b27872a8e1ad65bb31046438a5d3c1b71b00ec3ce0b4b42ac71464b28026a3d0b53af@172.16.0.11:30303", + "enode://9076c143a487aa163437a86f7d009f257f405c50bb2316800b9c9cc40e5a38fef5b414a47636ec38fdabc8a1872b563effa8574a7f8f85dc6bde465c368f1bf5@172.16.0.12:30303" +] + +[account] +password = ["/parity/validator.pwd"] + +[mining] +reseal_on_txs = "none" diff --git a/parity/parity/keys/address_book.json b/parity/parity/keys/address_book.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/parity/parity/keys/address_book.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/parity/parity/keys/dapps_history.json b/parity/parity/keys/dapps_history.json new file mode 100644 index 0000000..dd739a7 --- /dev/null +++ b/parity/parity/keys/dapps_history.json @@ -0,0 +1 @@ +{"parity://1.ui.parity":{"last_accessed":1526652994}} \ No newline at end of file diff --git a/parity/parity/keys/master0.json b/parity/parity/keys/master0.json new file mode 100644 index 0000000..51c8c83 --- /dev/null +++ b/parity/parity/keys/master0.json @@ -0,0 +1,21 @@ +{ + "id": "0d1533e9-dd7a-a838-68dc-36ddc025c1ab", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "acbabbab8eab2b952ad3cf2bd1aab0ca" + }, + "ciphertext": "134b54d057c3c0a9ac08b5eae36c46ab8dd45774215ce860afaeb4e8e50c927d", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "6f9e3ebd99b24becad3e8f773f44df8397cad68694abf7651880528d9552bfe7" + }, + "mac": "f8939019ec29b46694b5ac07fdf971ec740ca4de23e7ae84a1239f54c617f7d9" + }, + "address": "6b0c56d1ad5144b4d37fa6e27dc9afd5c2435c3b", + "name": "master0" +} diff --git a/parity/parity/keys/master1.json b/parity/parity/keys/master1.json new file mode 100644 index 0000000..5c78953 --- /dev/null +++ b/parity/parity/keys/master1.json @@ -0,0 +1,21 @@ +{ + "id": "76d1dcd3-0c3b-24c8-0875-78e3cc151659", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "6cbc68e1c87f82cefc954217cec45d64" + }, + "ciphertext": "a0f97cd495dbe38dc6fa13c23a7cc15a6abc75b894827bd2729a72bc3a1ec92d", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "b7704b289ced489bf6da93f6d335537763d3cc68460509321a73e50b185685de" + }, + "mac": "881850b5ce7709a7fd5ea923d97f77f0bd8717f054c44d35104cafc78d21813c" + }, + "address": "0011598de1016a350ad719d23586273804076774", + "name": "master1" +} diff --git a/parity/parity/keys/master10.json b/parity/parity/keys/master10.json new file mode 100644 index 0000000..e4dd8de --- /dev/null +++ b/parity/parity/keys/master10.json @@ -0,0 +1,21 @@ +{ + "id": "07c6bfbc-d810-2595-4ce9-cfaac6b4efdc", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "367526e91c5f6513a8c60d233b2da745" + }, + "ciphertext": "d44fe02941b74416292bc103eecb15e6a72d36b5a28cc631db41c94bec1aa39d", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "51584e445beb9ac011513e7826cbc465c6ac39ec9dd48b335539b159f9979bb8" + }, + "mac": "8baee07e11270dfbcdc808037198cb43eb4376f5b005de39cc2dd94b3964df79" + }, + "address": "000a3702732843418d83a03e65a3d9f7add58864", + "name": "master10" +} diff --git a/parity/parity/keys/master11.json b/parity/parity/keys/master11.json new file mode 100644 index 0000000..eb482f4 --- /dev/null +++ b/parity/parity/keys/master11.json @@ -0,0 +1,21 @@ +{ + "id": "056a022f-6de4-2316-a76e-332d8eb11d98", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "2826421845cc7c1bb70a2179cc209db6" + }, + "ciphertext": "eafe4bc6051d8e41e20261352a5ce7ae91b414ad67e2c9b16ea690148f54be59", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "aa69e4d3b50922a23bb00382c56576bad1e9dd446415425c648cf23948834fc2" + }, + "mac": "2a405e7421815051eca9f6add384240d1d0f721d6b634ab3f2bbabc6516aca8a" + }, + "address": "009c4c00de80cb8b0130906b09792aac6585078f", + "name": "master11" +} diff --git a/parity/parity/keys/master12.json b/parity/parity/keys/master12.json new file mode 100644 index 0000000..1be9ff0 --- /dev/null +++ b/parity/parity/keys/master12.json @@ -0,0 +1,21 @@ +{ + "id": "3bafc74c-8467-fd7d-c87e-ae77e6075184", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "7975daacc07977103770d42d2a0f0a6d" + }, + "ciphertext": "46460f4a226f92146f4f2803d5d6213a5f277bda138a6b5f63df62b80575691b", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "ecec5c680b6aef181e0f892e19ae77a51275f9040f24f306f520f4279125c9c6" + }, + "mac": "54d45996e5fd673e74386b3f844956015db3235e4305d978fff4223c7fcb7e6e" + }, + "address": "0053017d2ef8119654bdc921a9078567a77e854d", + "name": "master12" +} diff --git a/parity/parity/keys/master13.json b/parity/parity/keys/master13.json new file mode 100644 index 0000000..b4f5aa0 --- /dev/null +++ b/parity/parity/keys/master13.json @@ -0,0 +1,21 @@ +{ + "id": "fbb9d140-d238-df01-9cc4-733a5feabb96", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "1dab23bc79f3e7743e751ba58d0c977f" + }, + "ciphertext": "df3aa14f4f2863cb3fe9fcb3290bbc0d9b5f4c1a1886d2bf53577e841ad38624", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "a1060fb24b72cf8f4be114b8d17428a0e4b74cd2d9c9427b579d9a7f959bf8d3" + }, + "mac": "7684db6c1f69e49d8371c7f5b118d2251a8e9ae48fb88b948586a6927a425a9c" + }, + "address": "002491c91e81da1643de79582520ac4c77229e58", + "name": "master13" +} diff --git a/parity/parity/keys/master14.json b/parity/parity/keys/master14.json new file mode 100644 index 0000000..189fb3f --- /dev/null +++ b/parity/parity/keys/master14.json @@ -0,0 +1,21 @@ +{ + "id": "09e2119b-3f32-55d0-fd06-20ba4514ca6d", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "06336e75625721b1332fe11faea057b1" + }, + "ciphertext": "342f4a9be87bf4b031a830bd31e8596fd63fcdeeca0c34dc051be1d26052b7bd", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "af330ab39784b75b8967240207574fe866039d4265a6ac49c307bb9476019025" + }, + "mac": "f58191280a4d4b0f446272d2a13100362111f76c3b04128ca678e19ae036e75a" + }, + "address": "00fd696f0c0660779379f6bff8ce58632886f9d2", + "name": "master14" +} diff --git a/parity/parity/keys/master15.json b/parity/parity/keys/master15.json new file mode 100644 index 0000000..d60c806 --- /dev/null +++ b/parity/parity/keys/master15.json @@ -0,0 +1,21 @@ +{ + "id": "df67c646-3a5d-7056-0e2b-91f81aebd2a7", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "5b9d339a1723fc0e057020a52acbf0b8" + }, + "ciphertext": "ef2613c8e44ddbd4bd1794edb2e5fba0983ac7271f028c416a0e953beb74a4d6", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "7e735f3ea802327f10fe8ae05b6fe91241de75c85ef2119f6d8701e583c8ae43" + }, + "mac": "aca829819b1e7575c1f4be9a1cf52ec3c132b5b48bd2b88cca12ff89eeab2c5e" + }, + "address": "007f16bc32026e7cd5046590e4f5b711ef1a6d8b", + "name": "master15" +} diff --git a/parity/parity/keys/master16.json b/parity/parity/keys/master16.json new file mode 100644 index 0000000..cfba8d8 --- /dev/null +++ b/parity/parity/keys/master16.json @@ -0,0 +1,21 @@ +{ + "id": "619787da-e622-8659-4b73-6a45a2e0a0eb", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "8fd9e4a6f309ae9cbb53d3c162345f46" + }, + "ciphertext": "0eda20c52ca5c47e9564e1b61415afcc0a0901b85ced1a921295f9eda48f84be", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "4ec8f7ff993a7e1d905b3a0747346120c3924b03b1976b6abff7708870415680" + }, + "mac": "523708777a04acb3f3cad32f28c32578fa822eadaa23da0fb639be9eb492106b" + }, + "address": "00fb81808899fd51c4a87a642084138be62189a0", + "name": "master16" +} diff --git a/parity/parity/keys/master17.json b/parity/parity/keys/master17.json new file mode 100644 index 0000000..1ce11ab --- /dev/null +++ b/parity/parity/keys/master17.json @@ -0,0 +1,21 @@ +{ + "id": "56ddc2fc-d5cd-8887-e80d-8af51f289049", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "266860ec3a679eb24eb12160d380b783" + }, + "ciphertext": "99eafe9f7f17c85add07cdf6f7e2e8239da96faa21455fca5bcb886461087b3f", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "a4d8141ac116dab72b2d210a3c1c9b403e0ae7930fe82743765ae4eb0b96dec5" + }, + "mac": "394971c1f52a8d75c9e8d7b9fe6d99b0e13b9507628cb0ebea0281e1513540ac" + }, + "address": "00a61dabf0324bc07ba5a82a97c5f15d38fa9bbc", + "name": "master17" +} diff --git a/parity/parity/keys/master18.json b/parity/parity/keys/master18.json new file mode 100644 index 0000000..ea11e54 --- /dev/null +++ b/parity/parity/keys/master18.json @@ -0,0 +1,21 @@ +{ + "id": "9eb5f14e-8893-7b87-54a3-768eb6170746", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "4692f33d3e8b5c174c4e7ec5a8909415" + }, + "ciphertext": "e6db22db1cb28195e3b8dfd7e461c3fe8bdfe9c720c595eecbf341f8a37035ae", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "cf6abdbc0439076adbac8b449e7cb64b99bc788681ad7ffa001ed3887882e5aa" + }, + "mac": "9da8acd3e75285af7cf065a03445a8e573ab73cb8e0d9734a09261b3c20f9743" + }, + "address": "007a11ac48952a7e8e661833f4803bd7ffa58f77", + "name": "master18" +} diff --git a/parity/parity/keys/master19.json b/parity/parity/keys/master19.json new file mode 100644 index 0000000..e2f34d8 --- /dev/null +++ b/parity/parity/keys/master19.json @@ -0,0 +1,21 @@ +{ + "id": "d42b9349-bcd1-3911-d2b9-43e1a709c628", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "7cc62f24c5f4b3548c0497c8b69f5b6b" + }, + "ciphertext": "f687745f91679ccadd37ab883b9e91c3ddaf3ed14f3ec8570f3636099a77d480", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "b97799e265d265d22faea87431bcfb41b052fdbb6351debebdbb5dc73beb8fb0" + }, + "mac": "180d90ddaf9f6987187beb7c6f935c62127aafa936a6f202d29bfec19adb7123" + }, + "address": "00e7ad5b906c829c71c2f6f6cec016866ed1c264", + "name": "master19" +} diff --git a/parity/parity/keys/master2.json b/parity/parity/keys/master2.json new file mode 100644 index 0000000..4fd9ce4 --- /dev/null +++ b/parity/parity/keys/master2.json @@ -0,0 +1,21 @@ +{ + "id": "28a8e3f5-d204-2e4e-c361-e45d9b02e3f9", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "973cffe25a47d21d5ef7000545d4b829" + }, + "ciphertext": "eee722ec3d0a794469d39d5fd352bb34423f3c8a3ed85bf21e76502144d97755", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "abd87a6776c7b22278a54bf0a98b3469041fa9ced152c467e78261185765b76b" + }, + "mac": "3953ad383045c567f653507641a0c6390b68f8885a093d32e2a445fa0828392e" + }, + "address": "006b8d5f5c8ad11e5e6cf9ee6624433891430965", + "name": "master2" +} diff --git a/parity/parity/keys/master20.json b/parity/parity/keys/master20.json new file mode 100644 index 0000000..a7de674 --- /dev/null +++ b/parity/parity/keys/master20.json @@ -0,0 +1,21 @@ +{ + "id": "9c47e600-3e7f-01ae-0250-ed136b086ebd", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "b68660821c79d4d0fcbdf2fa0361d090" + }, + "ciphertext": "60ce0fc570380541681584952c7211c409838eb3573eefc09e5399eba8a081a0", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "92201b5871812512006990ed3366cabedd854883e0dac08e39b23c22916321c5" + }, + "mac": "70f4484daa3d560fc9f3956f9b40d133de3bc0535f2367972790598df92dd49e" + }, + "address": "0075f4f4d7324fef36371610d03e1195894bf420", + "name": "master20" +} diff --git a/parity/parity/keys/master3.json b/parity/parity/keys/master3.json new file mode 100644 index 0000000..b23d17a --- /dev/null +++ b/parity/parity/keys/master3.json @@ -0,0 +1,21 @@ +{ + "id": "32ebbccd-a5f6-7438-e511-09250157027c", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "d8c73bf1519d18bf142a3b29524053ca" + }, + "ciphertext": "2e450b0cbe4293522c2e94d42cee98a8c10f2dbecabc9cda8bdc08b6de3edd12", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "f68d8e18795bda386397d0d7c9a9049459aa3e35127c9396c475ecc925042b08" + }, + "mac": "0af821e0046a9b8a2460912c4797a0a0cd7fe1b219188e65682dd87f6f37f114" + }, + "address": "00ebf1c449cc448a14ea5ba89c949a24fa805a14", + "name": "master3" +} diff --git a/parity/parity/keys/master4.json b/parity/parity/keys/master4.json new file mode 100644 index 0000000..450cf51 --- /dev/null +++ b/parity/parity/keys/master4.json @@ -0,0 +1,21 @@ +{ + "id": "55fb2385-239d-8f74-dd93-468150bd05d0", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "71a1a1d9b4e085a93360907341e5d5db" + }, + "ciphertext": "6795b73e6784258172f27bfbc5864cf62fbc5974318d5b59d2c57dbb000f9721", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "ff8e963be0ff7dbc4d1938b027fdef3c3ecd09abf7274eda19a178cce85146c2" + }, + "mac": "b4d9eef2672c82b59f2020ac8817f6714667f77f5cc6fb3fb78db36bdf157b0b" + }, + "address": "009a1372f9e2d70014d7f31369f115fc921a87c8", + "name": "master4" +} diff --git a/parity/parity/keys/master5.json b/parity/parity/keys/master5.json new file mode 100644 index 0000000..9e349d6 --- /dev/null +++ b/parity/parity/keys/master5.json @@ -0,0 +1,21 @@ +{ + "id": "c05cf5a4-6a5d-11de-bfa1-42989f3feb1d", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "73aa94b02ac7b79d01934b7dde88d63d" + }, + "ciphertext": "925f650fa0d560aa694298de1514f53e383833b0bc4838e44ed95bf5c5c84763", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "6ad7eb08aa9b7463d8dcf2bff45f95d608e3e55ca12ea9651c916c57b0f8acba" + }, + "mac": "0a648a4ea58f3b38252f8f094bea3f5e427658e2c9f5d8b22343a9b8bc1c5a23" + }, + "address": "0076ed2dd9f7dc78e3f336141329f8784d8cd564", + "name": "master5" +} diff --git a/parity/parity/keys/master6.json b/parity/parity/keys/master6.json new file mode 100644 index 0000000..676000b --- /dev/null +++ b/parity/parity/keys/master6.json @@ -0,0 +1,21 @@ +{ + "id": "93608206-ba27-a76a-93ae-255c0ab10d41", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "8bebab643352956d6fc3369475627f18" + }, + "ciphertext": "4f00c21bf5036fc263c88e5ffb2b3a1642f684da0e40ae9ca0d2132a21185716", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "749677afe391c5661295077956fcfb1774f6020bc2910a2a1629a40b94ac88b5" + }, + "mac": "001fecc049bd55da9956db036bbed25f57979943981cd252b40eeeda2ec9acf7" + }, + "address": "006db7698b897b842a42a1c3ce423b07c2656ecd", + "name": "master6" +} diff --git a/parity/parity/keys/master7.json b/parity/parity/keys/master7.json new file mode 100644 index 0000000..da52c45 --- /dev/null +++ b/parity/parity/keys/master7.json @@ -0,0 +1,21 @@ +{ + "id": "549d9dbe-23a1-84b0-7512-3061f6c3dfdd", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "1a142473139e05cbc426c71e2e0edb33" + }, + "ciphertext": "54f3d36f0165cd93ad7bf465bbd1c45babc281df5752791f9c0404238860f7d9", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "cfdef5054d78e1da96cb3d7e0972d92d4543455b2206e596824816f007d7c13b" + }, + "mac": "93848426d03140da11c69d24ffd4c94fb6ad9a6c0019722c916b118c4d911e35" + }, + "address": "0012fc0db732dfd07a0cd8e4bedc6b160c9aedc5", + "name": "master7" +} diff --git a/parity/parity/keys/master8.json b/parity/parity/keys/master8.json new file mode 100644 index 0000000..503dfa3 --- /dev/null +++ b/parity/parity/keys/master8.json @@ -0,0 +1,21 @@ +{ + "id": "1e9af9bb-babc-4c39-8316-1ddad0a79ea9", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "d5dc985faf57618d15e4425bdada04cd" + }, + "ciphertext": "55082c741fddcebee7306380ba5091046f511439fcdcb5e3a8b663ec17163757", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "af2bac19edb773fccd6372084e9fb62860f712a3e2e2b33b3fdfd6c7e3c06ef4" + }, + "mac": "e0c12d54410c9eae91a14df350eca4fe4f338090c742c585d0f3ef03cf5875d6" + }, + "address": "00f137e9bfe37cc015f11cec8339cc2f1a3ae3a6", + "name": "master8" +} diff --git a/parity/parity/keys/master9.json b/parity/parity/keys/master9.json new file mode 100644 index 0000000..d758adc --- /dev/null +++ b/parity/parity/keys/master9.json @@ -0,0 +1,21 @@ +{ + "id": "265b683b-720c-46ba-9662-ebd140ddc4f7", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "426fa92e448ccc5e8daa06369a021485" + }, + "ciphertext": "fa9cee82d674399748c60e549fa73cbed6a7729c8988b1497057599ddaca2f41", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "8c13a79efe5a52409d844e68a4a244681d0925a75abe7af53bb29bcfb4105933" + }, + "mac": "b3ca38e267a5f30072854b7e6caedf3b64f066461292adc9d77354d59a5de683" + }, + "address": "00c2bc2f078e1dbafa4a1fa46929e1f2ca207f00", + "name": "master9" +} diff --git a/parity/parity/keys/slave.json b/parity/parity/keys/slave.json new file mode 100644 index 0000000..e2e9d7f --- /dev/null +++ b/parity/parity/keys/slave.json @@ -0,0 +1,22 @@ +{ + "id": "e628edcc-7656-ae63-16b4-681829162ef4", + "version": 3, + "crypto": { + "cipher": "aes-128-ctr", + "cipherparams": { + "iv": "60e33a6f2dd51b76789446a05bb6955e" + }, + "ciphertext": "cd9d1386c72b9a3b79ba83b12d62737197198c58eb976da892ad45e69d06a375", + "kdf": "pbkdf2", + "kdfparams": { + "c": 10240, + "dklen": 32, + "prf": "hmac-sha256", + "salt": "91c370dd20a35536ee73554c2bc0758eaef56e9d778f92bdfc34cd068cc7cc50" + }, + "mac": "e73e3cb1f8ec1498b148fbe62819e8e19380ae70d21491cc2cc2d44a6c0a0a7b" + }, + "address": "00e3d1aa965aafd61217635e5f99f7c1e567978f", + "name": "SLAVE", + "meta": "{\"passwordHint\":\"\",\"timestamp\":1490892369465}" +} diff --git a/parity/parity/keys/validator.json b/parity/parity/keys/validator.json new file mode 100755 index 0000000..e69de29 diff --git a/parity/parity/node0.network.key b/parity/parity/node0.network.key new file mode 100644 index 0000000..4ca292b --- /dev/null +++ b/parity/parity/node0.network.key @@ -0,0 +1 @@ +b3244c104fb56d28d3979f6cd14a8b5cf5b109171d293f4454c97c173a9f9374 diff --git a/parity/parity/node1.network.key b/parity/parity/node1.network.key new file mode 100644 index 0000000..0eb7d3b --- /dev/null +++ b/parity/parity/node1.network.key @@ -0,0 +1 @@ +c07b4807e704dfff975d82fc807a3da7947838379007b49c51f6a04faf4cdea8 diff --git a/parity/parity/node2.network.key b/parity/parity/node2.network.key new file mode 100644 index 0000000..224e330 --- /dev/null +++ b/parity/parity/node2.network.key @@ -0,0 +1 @@ +d8bf44e2b69604bde8c84c4b403114f4410dc4f57d80e026b24b8f1af70d5633