Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
Co-authored-by: Anderson Arboleya <anderson@arboleya.me>
  • Loading branch information
Dhaiwat10 and arboleya authored Dec 15, 2023
1 parent d675e8b commit 79dffb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion templates/nextjs/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export default function Home() {
useEffect(() => {
(async () => {
const provider = await Provider.create("http://127.0.0.1:4000/graphql");
const wallet = Wallet.fromPrivateKey("0x01", provider); // 0x1 is the private key of one of the fauceted accounts on your local Fuel node
// 0x1 is the private key of one of the fauceted accounts on your local Fuel node
const wallet = Wallet.fromPrivateKey("0x01", provider);
const testContract = TestContractAbi__factory.connect(contractId, wallet);
setContract(testContract);
const { value } = await testContract.functions
Expand Down

0 comments on commit 79dffb5

Please sign in to comment.