From 72cfcb84959870a4121c96beaede98cf3ec45c06 Mon Sep 17 00:00:00 2001 From: Idris Olubisi Date: Wed, 1 May 2024 18:02:33 +0100 Subject: [PATCH] fix: code formatting of solidity utils to solidity (#939) --- src/pages/dev/solidity-utilities.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/dev/solidity-utilities.mdx b/src/pages/dev/solidity-utilities.mdx index fee298704..aa875c099 100644 --- a/src/pages/dev/solidity-utilities.mdx +++ b/src/pages/dev/solidity-utilities.mdx @@ -32,7 +32,7 @@ In order to pass in data for a contract's constructor arguments you must encode For example to deploy a contract with a constructor that takes in two arguments, a `uint256` and an `address`, you could call the `deploy()` function as follows: -``` +```solidity function deployContract() external { Create3Deployer.deploy( keccak256(bytes("")),