48 lines
745 B
Markdown
48 lines
745 B
Markdown
# SUI Faucet Claim
|
|
|
|
*It is a bot written in golang which automatically claims your faucet every 6 hours.*
|
|
|
|
## Setup
|
|
|
|
### Requirements
|
|
|
|
- [Golang](https://go.dev/doc/install)
|
|
|
|
Copy the `.env.example` file and rename it to `.env`. Fill the variables with your own values.
|
|
|
|
Don't forget to put `,` between the wallets.
|
|
|
|
```env
|
|
NETWORK={network}
|
|
WALLET={wallet1},{wallet2},{wallet3},...
|
|
```
|
|
|
|
NETWORK can be `devnet` or `testnet`.
|
|
WALLET is your wallet address.
|
|
|
|
## Run
|
|
|
|
### Run with go
|
|
|
|
```bash
|
|
go run .
|
|
```
|
|
|
|
### Build windows
|
|
|
|
```bash
|
|
GOOS=windows GOARCH=amd64 go build -o suifaucet.exe .
|
|
```
|
|
|
|
### Build linux
|
|
|
|
```bash
|
|
GOOS=linux GOARCH=amd64 go build -o suifaucet .
|
|
```
|
|
|
|
### Build mac
|
|
|
|
```bash
|
|
GOOS=darwin GOARCH=amd64 go build -o suifaucet .
|
|
```
|