pull/2637/head^2
lianahus 2 years ago committed by Aniket
parent f2186af1be
commit ff5b46c7cf
  1. 4
      apps/remix-ide/src/app/tabs/ganache-provider.tsx
  2. 2
      apps/remix-ide/src/app/tabs/hardhat-provider.tsx

@ -23,8 +23,8 @@ export class GanacheProvider extends AbstractProvider {
body (): JSX.Element { body (): JSX.Element {
return ( return (
<div> Note: To run Ganache on your system, run: <div> Note: To run Ganache on your system, run:
<div className="p-1 pl-3">yarn global add ganache</div> <div className="p-1 pl-3"><b>yarn global add ganache</b></div>
<div className="p-1 pl-3">ganache</div> <div className="p-1 pl-3"><b>ganache</b></div>
<div className="pt-2 pb-4"> <div className="pt-2 pb-4">
For more info, visit: <a href="https://github.com/trufflesuite/ganache" target="_blank">Ganache Documentation</a> For more info, visit: <a href="https://github.com/trufflesuite/ganache" target="_blank">Ganache Documentation</a>
</div> </div>

@ -23,7 +23,7 @@ export class HardhatProvider extends AbstractProvider {
body (): JSX.Element { body (): JSX.Element {
return ( return (
<div> Note: To run Hardhat network node on your system, go to hardhat project folder and run command: <div> Note: To run Hardhat network node on your system, go to hardhat project folder and run command:
<div className="p-1 pl-3">npx hardhat node</div> <div className="p-1 pl-3"><b>npx hardhat node</b></div>
<div className="pt-2 pb-4"> <div className="pt-2 pb-4">
For more info, visit: <a href="https://hardhat.org/getting-started/#connecting-a-wallet-or-dapp-to-hardhat-network" target="_blank">Hardhat Documentation</a> For more info, visit: <a href="https://hardhat.org/getting-started/#connecting-a-wallet-or-dapp-to-hardhat-network" target="_blank">Hardhat Documentation</a>
</div> </div>

Loading…
Cancel
Save