𝐂𝐫𝐲𝐩𝐭𝐨 𝐏𝐫𝐨𝐭𝐨𝐜𝐨π₯ πˆπƒ | 𝐀𝐒𝐫𝐝𝐫𝐨𝐩
11K subscribers
29K photos
241 videos
177 files
32.4K links
Updates Alpha Seputar Crypto Airdrop, Testnet, Memes.

Business & Advertising DM : @TriPratamaXYZ
Download Telegram
WD Dulu Bang.. Main Scalping Di Token Baru List Enak Juga πŸ˜ƒ

Gak Usah Muluk Muluk Profit 30-50% Langsung TP β˜•οΈ

Besok Ada GA Stay Tuned

Garap Flipster : https://t.me/CryptoProID/43747
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘2πŸ”₯1πŸ₯°1
Forwarded from zepβ€’rtf | PEMULUNG-AIRDROP
Mayan dapet segini dari wallet fluxbot
πŸ‘3😁1
πŸ”΄UE COIN AIRDROPπŸ”΄

🧧Free UE COIN (For All User)

πŸ‘‰ Sign Up : HERE
βž– Claim UE COIN
βž– Claim DIAOMOND
βž– Withdraw UE COIN To BSC Address
βž– Done

Market : https://download.ueasy8.com/

Min WD From BOT Have 100 UECOIN & 3 Diamond

Garapan Ini Recomend Buat Yang Banyak Pasukan Tele
πŸ‘2πŸ”₯1🐳1
RECAP AIRDROP TODAY

πŸ”— AIRDROP :

1. PROXYMO
2. TOBY
3. HEAD STARTER
4. OGLONG
5. MUVOR
6. BITGET X JUNGLE
7. SHOWPLUS
8. RICEONSOL
9. DOOR
10. BOOMB
11. LBANK X VALOR & BITMART X LOCK
12. CONV
13. UE COIN

πŸ”— WL & EARLY ACCES :

N/A

πŸ”— TESTNET :

1. TOKI
2. BUNNI V2
3. NOWCHAIN

πŸ”„ UPDATE AIRDROP & TESTNET:

1. XBANKING
2. PLUME
3. PARTICLE
4. INITIA
5. REVOX X BINANCE WEB3
6. BEEP
7. FLISPTER
8. COUNTER FIRE
9. CALDERA

🀫 YESTERDAY'S RECAP : CRITO SKEM
Please open Telegram to view this post
VIEW IN TELEGRAM
🀣2πŸ‘1πŸ”₯1
L3 Di Tungguin Dari Pagi Gak ada Ann, Giliran Mau Tidur Suruh Nunggu 1 Jam 🀣
🀣6πŸ‘3πŸ”₯2
𝐂𝐫𝐲𝐩𝐭𝐨 𝐏𝐫𝐨𝐭𝐨𝐜𝐨π₯ πˆπƒ | 𝐀𝐒𝐫𝐝𝐫𝐨𝐩
πŸ”΄SWISTRONIK TESTNETπŸ”΄ 🧧Reward Confirm πŸ‘‰ Join Discord First : HERE πŸ‘‰ Wallet : Metamask πŸ‘‰ Network : Swistronik πŸ‘‰ Faucet : https://faucet.testnet.swisstronik.com/ πŸ‘‰ Testnet Link : HERE βž– Connect Wallet βž– Complete Task βž– Done Note : The rewards in the Swisstronik…
Tutorial Video : https://youtu.be/VOpEaJqmyBo?si=jaJ2_quE7tSxRexc

# Swisstronik Tesnet Techinal Task 1


link : https://www.swisstronik.com/testnet2/dashboard



## Steps

### 1. Clone Repository

git clone https://github.com/Mnuralim/hardhat-deploy-contract.git



cd hardhat-deploy-contract



### 2. Install Dependency

npm install



### 3. Set .env File

create .env file in root project

PRIVATE_KEY="your private key"



### 4. Create Smart Contract

- Open contract folder
- Create Hello_swtr.sol file
- Copy this code and paste there

/// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;

//This contract is only intended for testing purposes

contract Swisstronik {
string private message;

/**
* @dev Constructor is used to set the initial message for the contract
* @param _message the message to associate with the message variable.
*/
constructor(string memory _message) payable{
message = _message;
}

/**
* @dev setMessage() updates the stored message in the contract
* @param _message the new message to replace the existing one
*/
function setMessage(string memory _message) public {
message = _message;
}

/**
* @dev getMessage() retrieves the currently stored message in the contract
* @return The message associated with the contract
*/
function getMessage() public view returns(string memory){
return message;
}
}



### 5. Compile Smart Contract

npm run compile



### 6. Deploy Smart Contract

npm run deploy



### 7. Get Message

npm run get-message



### 8. Get Message

npm run set-message



### 9. Finsihed

- Open the deployed-adddress.ts (location in utils folder)
- Copy the address and paste the address in testnet dashboard
- push this project to your github and paste your repository link in testnet dashboard



# Swisstronik Tesnet Techinal Task 2


## Steps

### 1. Clone Repository

git clone https://github.com/Mnuralim/swisstronik-erc20-mint-token.git



cd swisstronik-erc20-mint-token


### 2. Install Dependency

npm install



### 3. Set .env File

create .env file in root project

PRIVATE_KEY="your private key"



### 4. Create Smart Contract

- Open contract folder
- Create Token.sol file
- Copy this code and paste there
- Feel free to modify token name and token symbol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract TestToken is ERC20 {
constructor()ERC20("IzzyToken","IZZY"){}

function mint1000tokens() public {
_mint(msg.sender,1000*10**18);
}

function burn1000tokens() public{
_burn(msg.sender,1000*10**18);
}

}



### 5. Compile Smart Contract

npm run compile



### 6. Deploy Smart Contract

npm run deploy



### 7. Mint Token

npm run mint



### 8. Check Supply

npm run check-supply



### 9. Check Balance

npm run balance-of



### 10. Tranfer Token

npm run transfer



### 11. Finsihed

- Open the deployed-adddress.ts (location in utils folder)
- Copy the address and paste the address in testnet dashboard
- push this project to your github and paste your repository link in testnet dashboard
πŸ‘4πŸ”₯2🐳2