The account is automatically created and added to the list of accounts that are unlocked (can send without a password)
27 lines
434 B
Ruby
27 lines
434 B
Ruby
#
|
|
# Cookbook Name:: kosmos-parity
|
|
# Recipe:: node_mainnet
|
|
#
|
|
# Copyright 2017, Kosmos
|
|
#
|
|
# All rights reserved - Do Not Redistribute
|
|
#
|
|
|
|
parity_node "mainnet" do
|
|
config parity: {
|
|
chain: "homestead",
|
|
},
|
|
network: {
|
|
port: 30305,
|
|
},
|
|
rpc: {
|
|
port: 8547,
|
|
},
|
|
dapps: {
|
|
port: 8092,
|
|
},
|
|
ui: {
|
|
port: 8182,
|
|
}
|
|
end
|