From f3b3fc83dcee41a44f11f802262dff629209a9aa Mon Sep 17 00:00:00 2001 From: Dave-Whiffin Date: Mon, 30 Sep 2019 11:45:31 +0100 Subject: [PATCH] Improving help on abi code gen --- Nethereum.Playground/Components/AbiCodeGenerate.razor | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Nethereum.Playground/Components/AbiCodeGenerate.razor b/Nethereum.Playground/Components/AbiCodeGenerate.razor index ec17fb45..b4bb905f 100644 --- a/Nethereum.Playground/Components/AbiCodeGenerate.razor +++ b/Nethereum.Playground/Components/AbiCodeGenerate.razor @@ -1,6 +1,9 @@ @inherits AbiCodeGenerateBase;
+ +

Generates a .Net API for your smart contract.

+
@@ -11,10 +14,10 @@ - The smart contract ABI, providing information of the constructor, funcions and events + The ABI is JSON which contains the contract metadata including the constructor, functions and events. Select the ABI file or paste the contents. - Please select the "contractName".abi file in your bin folder after compilation with solidity vscode, or just copy it directly after compiling with Remix - Another option is to copy it from Etherscan to interact with existing contracts + [ If you're using solidity vscode, after compilation, select the "contractName".abi file in your bin folder. If you're using Remix, copy it directly from there. + You can also use Etherscan to retrieve the ABI for existing contracts. ]
@@ -26,7 +29,7 @@ The smart contract deployment compiled ByteCode. - Please select the "contractName".bin file in your bin folder after compilation with solidity vscode, or just copy it directly after compiling with Remix + [ If you're using solidity vscode, after compilation, select the "contractName".bin file in your bin folder. If you're using Remix, copy it directly from there. ]