Skip to content

Сorrect mistakes quickstart.md #7

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions welcome/quickstart.md
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ Create a new `package.json` file with the below content. The main dependencies y
```json
{
"scripts": {
"test": "yarn run ts-mocha -p tsconfig.json -t 1000000 ./tests/main.ts"
"test": "yarn run ts-mocha -p tsconfig.json -t 1000000 main.ts"
},
"dependencies": {
"@solana/web3.js": "^1.73.0",
@@ -59,9 +59,9 @@ After this, create a new file called `main.ts`. Import the necessary libraries a
import { expect } from "chai";
import {
Connection,
Keypair,}
Keypair,
LAMPORTS_PER_SOL,
PublicKey,
SystemProgram,
Transaction,
} from "@solana/web3.js";
import * as anchor from "@coral-xyz/anchor";