Scikit Web

Solana Airdrop Test Sol API 솔라나 테스트 Sol API 본문

NFT/Solana(솔라나)

Solana Airdrop Test Sol API 솔라나 테스트 Sol API

Keun0 2022. 6. 18. 06:52
728x90
반응형

솔라나 테스트 솔을  이용하는 방법으로는

1. Sol Scan 사이트 이용하여 충전

2. Airdrop API를 이용하여 충전

이렇게 2가지 방법이 있다.

 

https://solanacookbook.com/references/local-development.html#subscribing-to-events

import { Connection, Keypair, LAMPORTS_PER_SOL } from "@solana/web3.js";

(async () => {
  const keypair = Keypair.generate();

  const connection = new Connection("devnet", "confirmed");

  const airdropSignature = await connection.requestAirdrop(
    keypair.publicKey,
    LAMPORTS_PER_SOL
  );

  const resp = await connection.confirmTransaction(airdropSignature);
  console.log(resp);
})();

 

위와 같은 내용으로 test.ts 파일을 만들고 관련 라이브러리를 설치 후 아래와 같은 명령어로 실행한다

ts-node test.ts

 

Keypair에 자신이 원하는 지갑 주소의 정보를 입력해주면 본인의 지갑으로 테스트 솔을 받을 수 있다 

받은 결과는 솔스캔 사이트에서 확인 가능하다

 

728x90
반응형
Comments