Installation Setup

Lisk Portal Airdrop

What is Lisk?

Lisk is a Layer 2 blockchain platform built on the OP Stack, specifically designed to bring real-world blockchain solutions to emerging markets. As a scaling solution leveraging optimistic technology, Lisk enhances Ethereum’s capabilities while maintaining security and reducing costs.

Operating as part of the OP Stack ecosystem, Lisk benefits from the robust security of Ethereum while offering improved transaction speeds and reduced fees. Lisk Airdrop Details

Lisk has officially launched its highly anticipated airdrop campaign, allocating 15 million LSK tokens to reward active participants in its ecosystem. This airdrop is part of Lisk’s strategy to expand its community while encouraging meaningful engagement with its platform and decentralized applications (DApps).

The airdrop runs through Q1 2025 and features a points-based system where participants can earn rewards through various activities and special “supertasks.” What sets this airdrop apart is its biweekly reward structure, allowing participants to earn LSK tokens during the campaign rather than waiting until the end for all rewards.


Now Let's Start!

Step-by-Step Guide to Join the Lisk Airdrop

  1. Connect Your Wallet

    • Use any EVM-compatible wallet (like MetaMask)

    • Ensure you have enough ETH (BASE) for potential transaction fees

  2. Add Lisk Mainnet

    • Approve the network change prompt when connecting

    • If needed, add the network manually following Lisk’s documentation

  3. Complete Guild Verification

    • Click “Verify with Guild”

    • Sign in using your connected wallet

    • Select “Join Guild” followed by “Check Access to Join”

    • Return to the Lisk portal after verification

  4. Enter Referral Code

    • Use code “ygsfb9” if you don’t have a referral

    • Consider sharing your own referral code to earn 10% of referred users’ points

Earning Points and Rewards

Regular Tasks

  • Complete various ecosystem activities

  • Interact with Lisk DApps

  • Engage with the community

  • Each task awards specific point values

  • Bridge some ETH via the dashboard. the fee is minimal

Supertasks

  • Special task collections released every two weeks

  • Collaborate with partners like Oku.Trade and Ionic

  • Earn immediate LSK token rewards

  • Bonus points for completing within timeframes

Special Benefits for NFT Holders

Lisk of Life NFT holders receive additional benefits:

  • Extra points for NFT ownership

  • Special LSK token allocation at campaign end

  • Limited to one NFT per wallet for point calculation

  • Check how to complete the mandatory task in their website here

Lisk Portal Ultimate Bot

This script automated Send, Swap, Borrow, Repay, wrap, unwrap and claim task in Lisk blockchain and airdrop.

Features

  • Send, Swap, Borrow, Repay, wrap, unwrap and claim task of Lisk airdrop

Prerequisites

Important notes

  • If you want to use auto borrow/repay, please Supply USDC and enable Collateral first in here

Installation

  1. Clone the repository to your local machine:

    git clone https://github.com/recitativonika/lisk-auto.git
  2. Navigate to the project directory:

    cd lisk-auto
  3. Install the necessary dependencies:

    npm install

Usage

  1. Modify key.txt with your private key of your wallet with format like this:

    privkey1
    privkey2

    if you want to use proxy, add proxy in proxy.txt with this format:

    proxy1
    proxy2

    proxy is used only when you choose to use and only in claim task.

  2. Edit config.js for change the delay, ETH range and percentage of unwrap ETH.

    module.exports = {
        ethAmountRange: {
            min: 0.00000001, // minimum ETH amount
            max: 0.0000001 // maximum ETH amount
        },
        delay: 21600000, // // 6 hour in milliseconds
        unwarpPercentage: 0.95, // 95% of the wrapped amounts
        usdtAmounts: {
            borrowAmount: '0.16', // Custom borrow amount in USDT (must be more than 0.16)
            repayAmount: '0.16'   // Custom repay amount in USDT (must be more than 0.16)
        }
    };
  3. Run the script:

    node index.js

Last updated