반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- html5예제
- 이중화
- grpc
- html5포트폴리오예제
- NFT솔라나
- 웹예제
- html5디자인예제
- solanaNFT
- pgpool
- html5기초
- html5기초예제
- 솔라나NFT
- html5웹디자인예제
- PostgresSQL
- NFT개발
- NFT
- 포트폴리오
- 솔라나cookbook
- html5웹디자인
- html5배경만들기
- 솔라나
- HTML5
- 서버
- html5글자효과
- 웹디자인예제
- 솔라나개발
- html5popup
- 포트폴리오예제
- 웹디자인
- nft예제
Archives
- Today
- Total
Scikit Web
Solana Airdrop Test Sol API 솔라나 테스트 Sol API 본문
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
반응형
'NFT > Solana(솔라나)' 카테고리의 다른 글
Solana NFT Create Collection - 솔라나 NFT Collection 생성 (0) | 2022.06.20 |
---|---|
Solana NFT Metaplex js Metadata Create 솔라나 NFT JS 라이브러리 메타데이터 생성 과 information to the bundler: 400 Invalid tx 해결 (0) | 2022.06.19 |
Solana Phantom Wallets KeyPair.json - 솔라나 지갑 키페어 파일 만들기 (0) | 2022.06.17 |
Solana Wallets 솔라나 지갑 생성 예제 (0) | 2022.06.16 |
솔라나 solang 이더리움 솔리디티 컴파일러 사용하기 (0) | 2022.06.15 |
Comments