diff --git a/examples/p2p-tutorial/broker/alice/conf/party_info.json b/examples/p2p-tutorial/broker/alice/conf/party_info.json new file mode 100644 index 00000000..6458868a --- /dev/null +++ b/examples/p2p-tutorial/broker/alice/conf/party_info.json @@ -0,0 +1,14 @@ +{ + "participants": [ + { + "party_code": "alice", + "endpoint": "http://broker_alice:8081", + "pubkey": "__ALICE_PUBLIC_KEY__" + }, + { + "party_code": "bob", + "endpoint": "http://broker_bob:8081", + "pubkey": "__BOB_PUBLIC_KEY__" + } + ] +} \ No newline at end of file diff --git a/examples/p2p-tutorial/broker/bob/conf/party_info.json b/examples/p2p-tutorial/broker/bob/conf/party_info.json new file mode 100644 index 00000000..6458868a --- /dev/null +++ b/examples/p2p-tutorial/broker/bob/conf/party_info.json @@ -0,0 +1,14 @@ +{ + "participants": [ + { + "party_code": "alice", + "endpoint": "http://broker_alice:8081", + "pubkey": "__ALICE_PUBLIC_KEY__" + }, + { + "party_code": "bob", + "endpoint": "http://broker_bob:8081", + "pubkey": "__BOB_PUBLIC_KEY__" + } + ] +} \ No newline at end of file diff --git a/examples/p2p-tutorial/engine/alice/conf/authorized_profile.json b/examples/p2p-tutorial/engine/alice/conf/authorized_profile.json new file mode 100644 index 00000000..bf6a4a55 --- /dev/null +++ b/examples/p2p-tutorial/engine/alice/conf/authorized_profile.json @@ -0,0 +1,8 @@ +{ + "parties": [ + { + "party_code": "bob", + "public_key": "__BOB_PUBLIC_KEY__" + } + ] +} \ No newline at end of file diff --git a/examples/p2p-tutorial/engine/bob/conf/authorized_profile.json b/examples/p2p-tutorial/engine/bob/conf/authorized_profile.json new file mode 100644 index 00000000..a0b5d8d4 --- /dev/null +++ b/examples/p2p-tutorial/engine/bob/conf/authorized_profile.json @@ -0,0 +1,8 @@ +{ + "parties": [ + { + "party_code": "alice", + "public_key": "__ALICE_PUBLIC_KEY__" + } + ] +} \ No newline at end of file