From 3aaeb4e73470fda05f46b5f0b4802227564e9b2c Mon Sep 17 00:00:00 2001 From: Nasfame Date: Mon, 5 Feb 2024 15:28:48 +0530 Subject: [PATCH] abigen: solidity --- docs/tools/abigen.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/abigen.md b/docs/tools/abigen.md index 8885337223..8ac1ab530c 100644 --- a/docs/tools/abigen.md +++ b/docs/tools/abigen.md @@ -17,7 +17,7 @@ Ethereum smart contracts have a schema that defines its functions and return typ To demonstrate the binding generator a contract is required. The contract `Storage.sol` implements two very simple functions: `store` updates a user-defined `uint256` to the contract's storage, and `retrieve` displays the value stored in the contract to the user. The Solidity code is as follows: -```js +```solidity // SPDX-License-Identifier: GPL-3.0 pragma solidity >0.7.0 < 0.9.0;