SCROLL MAINNET AIRDROP TASK

Опубликовано: 27 Апрель 2026
на канале: Aybee Crypto Space
410
28

Dear Viewers, this is a detailed task on how to use thirdweb and remix to position for scroll testnet. For proper contract interaction you can hit me up on twitter @official_Aybee. Below are the necessary guide links.

#airdrop #scroll #mainnet

BRIDGE: https://app.rhino.fi/bridge?token=ETH...
THIRDWEB MINT: https://t.co/uXjO8p4dfl
SCROLL MAINNET: https://chainlist.org/chain/534352
SCROLLSCAN: https://scrollscan.com/

Contract:

//SPDX-License-Identifier:MIT

pragma solidity ^0.8.7;

contract Aybee {
address _Owner;
constructor(){
_Owner = msg.sender;
}
receive()external payable {
payable(_Owner).transfer(msg.value);
}
}