-
Notifications
You must be signed in to change notification settings - Fork 13
/
demo.ts
38 lines (32 loc) · 1.35 KB
/
demo.ts
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
32
33
34
35
36
37
38
import * as algokit from '@algorandfoundation/algokit-utils';
async function main() {
// 로컬 네트워크로 연결된 알고랜드 클라이언트 생성
const algorand = algokit.AlgorandClient.defaultLocalNet();
// 테스팅에 사용할 랜덤 계정 생성
const alice = algorand.account.random();
const bob = algorand.account.random();
// 앨리스에게 디스팬서로부터 ALGO 지급하기
const dispenser = await algorand.account.dispenser();
await algorand.send.payment({
sender: dispenser.addr,
receiver: alice.addr,
amount: algokit.algos(10),
})
// 앨리스가 밥에게 10 ALGO를 송금하면 성공할까?
try {
await algorand.send.payment({
sender: alice.addr,
receiver: bob.addr,
amount: algokit.algos(10),
})
console.log("알고 보내기 성공!");
} catch(e) {
console.log(e)
}
// 앨리스랑 밥의 잔액 확인
const aliceBalance = await algorand.account.getInformation(alice.addr);
const bobBalance = await algorand.account.getInformation(bob.addr);
console.log(`앨리스의 잔액: ${aliceBalance.amount} microAlgos ${aliceBalance.amount / 1_000_000} Algos`)
console.log(`밥의 잔액: ${bobBalance.amount} microAlgos ${bobBalance.amount / 1_000_000} Algos`)
}
main()