

jeff
80.3K posts

@web3_tech_
Electrical Electronics Engineer | web developer | graphic designer








deploy a smart contract on arc - funding: built by circle who raised $2.2B - gas fee is in USDC 1/ claim faucet - from here: faucet. circle. com - input wallet address and claim faucet 2/ add @arc testet from chainlist - chainlist. org/chain/5042002 (remove space) - connect wallet and add test chain 2/ deploy contract in remix - visit: remix. ethereum. org - sign in with github - click on create new workspace - on the contract section create a new file "HelloArchitect.sol" - on the workspace, paste this command // SPDX-License-Identifier: MIT pragma solidity ^0.8.30; contract HelloArchitect { string private greeting; event GreetingChanged(string newGreeting); constructor() { greeting = "Hello Architect!"; } function setGreeting(string memory newGreeting) public { greeting = newGreeting; emit GreetingChanged(newGreeting); } function getGreeting() public view returns (string memory) { return greeting; } } - click on compile and compile it > deploy - select deploy - click on environment - extension and then select the wallet you added arc network - make sure it is on arc testnet network - now deploy and sign transaction -------------------------------------------- one thing you should note about arc testnet - gas is USDC - it is meant for builders - testnet is not incentivized - trying to get the creator roles on their discord wil be your best bet




