Where one claims ownership of dem' kitties.
Run a node with test data and 100 kitties, where RESTful API will be served on 127.0.0.1:8080
, while CXO listening port will be on 127.0.0.1:7140
.
iko \
--root-public-key=03429869e7e018840dbf5f94369fa6f2ee4b380745a722a84171757a25ac1bb753 \
--root-secret-key=190030fed87872ff67015974d4c1432910724d0c0d4bfbd29d3b593dba936155 \
--tx-public-key=03429869e7e018840dbf5f94369fa6f2ee4b380745a722a84171757a25ac1bb753 \
--init=true \
--test=true \
--test-tx-count=100 \
--test-tx-secret-key=190030fed87872ff67015974d4c1432910724d0c0d4bfbd29d3b593dba936155 \
--cxo-address=127.0.0.1:7140 \
--http-address=127.0.0.1:8080
Start Discovery Node
go run ${GOPATH}/src/github.com/kittycash/wallet/cmd/discovery/discovery.go \
--address=":8880"
Start IKO Node in Test Mode
go run ${GOPATH}/src/github.com/kittycash/wallet/cmd/iko/iko.go \
--root-public-key=03429869e7e018840dbf5f94369fa6f2ee4b380745a722a84171757a25ac1bb753 \
--root-secret-key=190030fed87872ff67015974d4c1432910724d0c0d4bfbd29d3b593dba936155 \
--root-nonce=1234 \
--tx-public-key=03429869e7e018840dbf5f94369fa6f2ee4b380745a722a84171757a25ac1bb753 \
--init=true \
--test=true \
--test-tx-count=100 \
--test-tx-secret-key=190030fed87872ff67015974d4c1432910724d0c0d4bfbd29d3b593dba936155 \
--cxo-address="127.0.0.1:7140" \
--messenger-addresses=":8880"
Start Wallet Node in Test Mode
go run ${GOPATH}/src/github.com/kittycash/wallet/cmd/wallet/wallet.go \
--test=true \
--test-gen-pk=03429869e7e018840dbf5f94369fa6f2ee4b380745a722a84171757a25ac1bb753 \
--test-root-pk=03429869e7e018840dbf5f94369fa6f2ee4b380745a722a84171757a25ac1bb753 \
--test-root-nonce=1234 \
--cxo-address="127.0.0.1:6140" \
--http-address="127.0.0.1:6148" \
--messenger-addresses=":8880"