You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/blockchain/service/data-manager-portal.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,13 +73,15 @@ The contract ABI defines the smart contract interfaces. It describes how to inte
73
73
74
74
1. Save the **abi** array as a JSON file. For example, *abi.json*. You use the file in a later step.
75
75
76
-
Blockchain Data Manager requires the deployed bytecode for the smart contract. The deployed bytecode is different than the smart contract bytecode. You can get the deployed bytecode from the compiled contract metadata file.
76
+
Blockchain Data Manager requires the deployed bytecode for the smart contract. The deployed bytecode is different than the smart contract bytecode. You use the Azure blockchain development kit extension to copy the bytecode to the clipboard.
77
77
78
-
1. Open the contract metadata file contained in the **build/contracts** folder of your Solidity project. The file name is the smart contract name followed by the **.json** extension.
79
-
1. Find the **deployedBytecode** element in the JSON file.
80
-
1. Copy the hexadecimal value without the quotes.
78
+
1. In the Visual Studio Code explorer pane, expand the **build/contracts** folder of your Solidity project.
79
+
1. Right-click the contract metadata JSON file. The file name is the smart contract name followed by the **.json** extension.
80
+
1. Select **Copy Transaction Bytecode**.
81
+
82
+

81
83
82
-

84
+
The bytecode is copied to the clipboard.
83
85
84
86
1. Save the **bytecode** value as a JSON file. For example, *bytecode.json*. You use the file in a later step.
0 commit comments