Skip to content

Commit 4fb74a0

Browse files
committed
fix conflicts
2 parents 2e4413d + 9c98de5 commit 4fb74a0

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

tutorials/aries-basic-controller/notebooks/alice/Part 3 - Establishing a Connection.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@
292292
},
293293
{
294294
"cell_type": "code",
295-
"execution_count": 8,
295+
"execution_count": 30,
296296
"metadata": {},
297297
"outputs": [
298298
{

tutorials/aries-basic-controller/notebooks/alice/Part 8 - Out of Band Protocol.ipynb

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,17 @@
2121
},
2222
{
2323
"cell_type": "code",
24-
"execution_count": 2,
24+
"execution_count": 1,
2525
"metadata": {},
26-
"outputs": [],
26+
"outputs": [
27+
{
28+
"name": "stdout",
29+
"output_type": "stream",
30+
"text": [
31+
"IPython autoawait is `on`, and set to use `asyncio`\n"
32+
]
33+
}
34+
],
2735
"source": [
2836
"%autoawait\n",
2937
"import time\n",
@@ -54,7 +62,7 @@
5462
},
5563
{
5664
"cell_type": "code",
57-
"execution_count": 3,
65+
"execution_count": 2,
5866
"metadata": {},
5967
"outputs": [],
6068
"source": [
@@ -82,14 +90,15 @@
8290
},
8391
{
8492
"cell_type": "code",
85-
"execution_count": 4,
93+
"execution_count": 6,
8694
"metadata": {},
8795
"outputs": [
8896
{
8997
"name": "stdout",
9098
"output_type": "stream",
9199
"text": [
92-
"{'@type': 'did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/out-of-band/1.0/invitation', '@id': '4a611f31-396a-4e94-bdfb-820d81bde452', 'request~attach': [], 'handshake_protocols': ['https://didcomm.org/connections/1.0/invitation', 'did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/connections/1.0/invitation'], 'label': 'Alice', 'service': [{'id': '#inline', 'type': 'did-communication', 'recipientKeys': ['did:key:z6MkuU5tbz5eQ5e5w2NCB1rHFWX5dbMvu8G1yoiY7M9Zd7cH'], 'routingKeys': [], 'serviceEndpoint': 'http://172.17.0.1:8020'}]}\n"
100+
"Connection Webhook : {'state': 'invitation', 'created_at': '2020-10-30 12:48:46.878516Z', 'initiator': 'self', 'invitation_key': '8egq2Lysck4b9HpLKez4bZcDnwZqgVNFMeuSUBaGdLW1', 'routing_state': 'none', 'updated_at': '2020-10-30 12:48:46.878516Z', 'invitation_mode': 'once', 'connection_id': '3b715fb1-8c0f-4535-8575-37347af9c1c6', 'accept': 'auto'}\n",
101+
"{'@type': 'did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/out-of-band/1.0/invitation', '@id': 'e536ed97-2e32-4133-bf20-7ce998739267', 'label': 'Alice', 'handshake_protocols': ['https://didcomm.org/connections/1.0/invitation', 'did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/connections/1.0/invitation'], 'request~attach': [], 'service': [{'id': '#inline', 'type': 'did-communication', 'recipientKeys': ['did:key:z6Mkn6wscbEJxHZ4Fnf31DwuSfADcWqh6Ncc3fpNJTYHYZHP'], 'routingKeys': [], 'serviceEndpoint': 'http://172.17.0.1:8020'}]}\n"
93102
]
94103
}
95104
],
@@ -104,6 +113,23 @@
104113
"print(oob_invite[\"invitation\"])"
105114
]
106115
},
116+
{
117+
"cell_type": "code",
118+
"execution_count": 7,
119+
"metadata": {},
120+
"outputs": [
121+
{
122+
"name": "stdout",
123+
"output_type": "stream",
124+
"text": [
125+
"{'state': 'initial', 'created_at': '2020-10-30 12:48:46.900970Z', 'invitation_id': '265b5bbe-175a-40a8-a8bc-31655fe3dabe', 'trace': False, 'invitation': {'@type': 'did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/out-of-band/1.0/invitation', '@id': 'e536ed97-2e32-4133-bf20-7ce998739267', 'label': 'Alice', 'handshake_protocols': ['https://didcomm.org/connections/1.0/invitation', 'did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/connections/1.0/invitation'], 'request~attach': [], 'service': [{'id': '#inline', 'type': 'did-communication', 'recipientKeys': ['did:key:z6Mkn6wscbEJxHZ4Fnf31DwuSfADcWqh6Ncc3fpNJTYHYZHP'], 'routingKeys': [], 'serviceEndpoint': 'http://172.17.0.1:8020'}]}, 'updated_at': '2020-10-30 12:48:46.900970Z'}\n"
126+
]
127+
}
128+
],
129+
"source": [
130+
"print(oob_invite)"
131+
]
132+
},
107133
{
108134
"cell_type": "markdown",
109135
"metadata": {},

0 commit comments

Comments
 (0)