Skip to content

Commit

Permalink
docs: updated import statement to match file name (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
camiinthisthang committed Aug 15, 2022
1 parent c4e098b commit dce0a9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ import { Wallet } from "fuels";
import "./App.css";
// Import the contract factory from the generated folder
// from the typechain command
import { ContractsAbi__factory } from "./contracts";
import { ContractAbi__factory } from "./contracts";

// Se the Wallet Secret used on the chainConfig.json
// this enables us to have a account with initial balance
Expand All @@ -366,7 +366,7 @@ const CONTRACT_ID =
const wallet = new Wallet(WALLET_SECRET);
// Connects out Contract instance to the deployed contract
// address using the given wallet.
const contract = ContractsAbi__factory.connect(CONTRACT_ID, wallet);
const contract = ContractAbi__factory.connect(CONTRACT_ID, wallet);

function App() {
const [counter, setCounter] = useState(0);
Expand Down

0 comments on commit dce0a9b

Please sign in to comment.