Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: updated import statement to match file name #455

Merged
merged 2 commits into from
Aug 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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