Skip to content

Commit

Permalink
0.0.1 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
diman-io committed Apr 4, 2022
0 parents commit 42fe015
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
scripts/keys/*.json
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# raydium-cli

Tool for interacting with raydium.io via CLI

## How to use

1. Download the [latest release](releases/latest)
2. Unpack it and put in this folder
3. Put your keypairs in `scripts/keys`
4. Enjoy the scripts in `scripts`
8 changes: 8 additions & 0 deletions scripts/donate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

# raydium_cli=../raydium

# for keypair in keys/*.json
# do
# $raydium_cli donate 0.1 -k $keypair
# done
1 change: 1 addition & 0 deletions scripts/keys/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Put your keypairs in this folder
10 changes: 10 additions & 0 deletions scripts/stake.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

raydium_cli=../raydium

POOL=$1

for keypair in keys/*.json
do
echo $raydium_cli ido $POOL stake MAX -k $keypair
done

0 comments on commit 42fe015

Please sign in to comment.