@@ -50,9 +50,9 @@ public static ProgramContext parseContract(String filePath) throws IOException {
5050 * contract's deployed bytecode.
5151 *
5252 * @param address the Ethereum contract address to retrieve bytecode for
53- *
53+ *
5454 * @return the contract bytecode as a hexadecimal string
55- *
55+ *
5656 * @throws IOException if there's an issue with the HTTP request to
5757 * Etherscan
5858 * @throws RuntimeException if the bytecode cannot be retrieved or is empty
@@ -82,9 +82,9 @@ public static String parseBytecodeFromEtherscan(String address) throws IOExcepti
8282 * parameters. Only works for verified contracts on Etherscan.
8383 *
8484 * @param address the Ethereum contract address to retrieve the ABI for
85- *
85+ *
8686 * @return a JSONArray containing the contract's ABI definition
87- *
87+ *
8888 * @throws IOException if there's an issue with the HTTP request to
8989 * Etherscan
9090 * @throws RuntimeException if the ABI cannot be retrieved or the contract
@@ -565,7 +565,7 @@ private static boolean addOpcode(String opcode, Writer writer) throws IOExceptio
565565 * returns the number of bytes to push onto the stack.
566566 *
567567 * @param opcode the hexadecimal opcode string to test
568- *
568+ *
569569 * @return the number of bytes to push if it's a PUSH instruction, 0
570570 * otherwise
571571 */
@@ -648,7 +648,7 @@ private static int pushTest(String opcode) {
648648 * @param push the hexadecimal data to be pushed (without "0x" prefix)
649649 * @param n the number of bytes being pushed (1-32)
650650 * @param writer the Writer object to write the formatted instruction to
651- *
651+ *
652652 * @throws IOException if an I/O error occurs while writing
653653 */
654654 private static void addPush (String push , int n , Writer writer ) throws IOException {
0 commit comments