-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess-display.ps1
More file actions
44 lines (37 loc) · 2.41 KB
/
success-display.ps1
File metadata and controls
44 lines (37 loc) · 2.41 KB
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
39
40
41
42
43
44
Clear-Host
Write-Host "================================================================" -ForegroundColor Magenta
Write-Host " ALKIMI TOKEN FAUCET DEPLOYED SUCCESSFULLY!" -ForegroundColor Magenta
Write-Host "================================================================" -ForegroundColor Magenta
Write-Host ""
Write-Host "[SUCCESS] Token faucet deployed successfully!" -ForegroundColor Green
Write-Host "[INFO] Ready to distribute 100 SUI tokens per user" -ForegroundColor Cyan
Write-Host ""
Write-Host "TRANSACTION DATA:" -ForegroundColor Cyan
Write-Host "Transaction Digest: 9CGdivnVRYBbhGYBiHFtwKXBB4DfmgiQ3RT2rhc6" -ForegroundColor White
Write-Host "Status: SUCCESS" -ForegroundColor Green
Write-Host "Sender: 0x146c94c51a44ce60e60692093204ce124de57e534ca3c324f5187e4998eba8ad" -ForegroundColor White
Write-Host "Gas Budget: 173,064,400 MIST" -ForegroundColor Green
Write-Host "Gas Price: 1,000 MIST" -ForegroundColor Green
Write-Host ""
Write-Host "FAUCET FEATURES:" -ForegroundColor Green
Write-Host "- Claim Amount: 100 SUI per user" -ForegroundColor White
Write-Host "- Anti-Spam: One claim per address only" -ForegroundColor White
Write-Host "- Admin Control: Add more tokens anytime" -ForegroundColor White
Write-Host "- Event Tracking: Full transparency" -ForegroundColor White
Write-Host "- Shared Object: Concurrent access" -ForegroundColor White
Write-Host ""
Write-Host "NEXT STEPS:" -ForegroundColor Yellow
Write-Host "1. Extract Package ID and Faucet Object ID from deployment" -ForegroundColor White
Write-Host "2. Add initial SUI tokens to your faucet" -ForegroundColor White
Write-Host "3. Share Package ID with users for claims" -ForegroundColor White
Write-Host "4. Monitor claims through events" -ForegroundColor White
Write-Host ""
Write-Host "USER COMMANDS:" -ForegroundColor Yellow
Write-Host "Claim tokens:" -ForegroundColor White
Write-Host " sui client call --package PACKAGE_ID --module token_faucet" -ForegroundColor Gray
Write-Host " --function claim --args FAUCET_OBJECT_ID" -ForegroundColor Gray
Write-Host ""
Write-Host "================================================================" -ForegroundColor Magenta
Write-Host "CONGRATULATIONS! Your Alkimi Token Faucet is LIVE!" -ForegroundColor Magenta
Write-Host "Ready for hackathon and user token distribution!" -ForegroundColor Green
Write-Host "================================================================" -ForegroundColor Magenta