Getting Started
Installation
You can use the airdrop tool without installing it globally by using npx
:
npx @jumpdefi/airdrop-tool --help
Alternatively, you can install it using your favorite package manager:
- npm
- Yarn
- pnpm
npm install @jumpdefi/airdrop-tool
yarn add @jumpdefi/airdrop-tool
pnpm add @jumpdefi/airdrop-tool
note
Although optional, it is highly recommended to install the Near CLI and make sure the account you specify in the --accountId
options is present in your credentials.
Running from command line
You can run the airdrop tool directly using npx
:
npx @jumpdefi/airdrop-tool \
--accountId="jumpfinance.near" \
--accounts="./accounts.json" \
--amount=100 \
--token="jumptoken.jumpfinance.near"
Or if you've installed it locally:
airdrop-tool \
--accountId="jumpfinance.near" \
--accounts="./accounts.json" \
--amount=100 \
--token="jumptoken.jumpfinance.near"
note
The above example demonstrates the required options. See CLI options for more additional options.