From 27fdbaf1b11461939a5d926a3e01ebf844320cb8 Mon Sep 17 00:00:00 2001 From: SergZen Date: Mon, 5 May 2025 12:39:13 +0300 Subject: [PATCH 1/2] =?UTF-8?q?=D0=A1orrect=20mistakes=20quickstart.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- welcome/quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/welcome/quickstart.md b/welcome/quickstart.md index 6072f8f..493c4af 100644 --- a/welcome/quickstart.md +++ b/welcome/quickstart.md @@ -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,7 +59,7 @@ 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, Transaction, From 7804b66e3ae3a145bcf54a4887b1724d6ff0a74d Mon Sep 17 00:00:00 2001 From: SergZen Date: Mon, 5 May 2025 12:57:47 +0300 Subject: [PATCH 2/2] Update quickstart.md --- welcome/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/welcome/quickstart.md b/welcome/quickstart.md index 493c4af..e61bb78 100644 --- a/welcome/quickstart.md +++ b/welcome/quickstart.md @@ -61,7 +61,7 @@ import { Connection, Keypair, LAMPORTS_PER_SOL, - PublicKey, + SystemProgram, Transaction, } from "@solana/web3.js"; import * as anchor from "@coral-xyz/anchor";