๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
Arcium Yang Dapet WL Check Email
Please open Telegram to view this post
VIEW IN TELEGRAM
๐5๐คฃ4๐ฟ3
Guys kita running giveaway kecil-kecilan di Twitter, yuk join
https://x.com/CryptoProID_CH/status/1816277216919183687?t=XeyjD2yu99ouR1pBAwbNFg&s=19
https://x.com/CryptoProID_CH/status/1816277216919183687?t=XeyjD2yu99ouR1pBAwbNFg&s=19
๐8๐ฅ5๐ฅฐ4๐ณ1
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
๐ดMANTRA GENDROP S2 TESTNET๐ด ๐งงReward Confirm ๐ Wallet : KEPLR or LEAP ๐ Network : Mantra Hongbai ๐ Faucet : https://discord.gg/mantra - Go To #Hongbai-faucet - Type /request Your Address - Claim Sampe Terkumpul 1 OM++ ๐ Testnet Task : HERE โ Connect Walletโฆ
Mantra Yang Udah Ke Kumpul 1 OM Jangan Lupa Gawein Questnya
๐ฅ7๐5๐คฃ5
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
Galxe
Join Nubila x Mises Browser Loyalty Program from Nubila on Galxe
Join Nubila x Mises Browser on Galxe. Earn loyalty points by contributing to Nubila and build your Web3 digital identity.
๐6๐ฅ6๐ณ4
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
๐ด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
### 2. Install Dependency
### 3. Set .env File
create .env file in root project
### 4. Create Smart Contract
- Open contract folder
- Create Hello_swtr.sol file
- Copy this code and paste there
### 5. Compile Smart Contract
### 6. Deploy Smart Contract
### 7. Get Message
### 8. Get 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
### 2. Install Dependency
### 3. Set .env File
create .env file in root project
### 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
### 5. Compile Smart Contract
### 6. Deploy Smart Contract
### 7. Mint Token
### 8. Check Supply
### 9. Check Balance
### 10. Tranfer Token
### 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
# 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
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
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โฆ
Yang Garap swisstronik pakai wallet baru aja
Sumber: https://x.com/andreaswij_/status/1816145861795250319
Sumber: https://x.com/andreaswij_/status/1816145861795250319
๐ญ3๐2๐ฟ2
Sepi Amat Erdrop Dah Kaya Hari Minggu ๐
Please open Telegram to view this post
VIEW IN TELEGRAM
๐ฟ5๐2๐คฃ1
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
PLUME New Task
Plume DC nya Kena Hack Jangan Klik Link apapun Di DC nya
๐2
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
โข Quiz V: To be the smart contract layer
โข Quiz VII: 75% of the initial supply + 100% of XTM tail emissions
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
Guys kita running giveaway kecil-kecilan di Twitter, yuk join https://x.com/CryptoProID_CH/status/1816277216919183687?t=XeyjD2yu99ouR1pBAwbNFg&s=19
ya allah, blm jg di draw bg๐ญ
pasti dapet kok kalo itu rezekinya kamu..
pasti dapet kok kalo itu rezekinya kamu..
๐คฃ8๐ฅ3๐2๐1
Meme kontes $AVAIL di Flipster๐ค
Syarat post:
- #AVAILonFlipster + FlipsterID (harus benar kapital, kl salah ga elig)
- Wajib regis & KYC
- Post di @KomunitasFlipster
Hadiah:
15 USD Bonus masing-masing untuk 5 pemenang.
Periode:
- Start: 24 Juli 2024, 19.15 WIB
- End: 28 Juli 2024, 12.00 WIB
Post meme yang paling lucu yaaaa! ๐๐ฅฐ
Syarat post:
- #AVAILonFlipster + FlipsterID (harus benar kapital, kl salah ga elig)
- Wajib regis & KYC
- Post di @KomunitasFlipster
Hadiah:
15 USD Bonus masing-masing untuk 5 pemenang.
Periode:
- Start: 24 Juli 2024, 19.15 WIB
- End: 28 Juli 2024, 12.00 WIB
Post meme yang paling lucu yaaaa! ๐๐ฅฐ
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
Meme kontes $AVAIL di Flipster๐ค Syarat post: - #AVAILonFlipster + FlipsterID (harus benar kapital, kl salah ga elig) - Wajib regis & KYC - Post di @KomunitasFlipster Hadiah: 15 USD Bonus masing-masing untuk 5 pemenang. Periode: - Start: 24 Juli 2024, 19.15โฆ
Minimal kalian harus punya akun Flipster.
Cek disini untuk daftar:
https://t.me/CryptoProID/43747
Ini juga salah satu solusi, untuk kalian yang saldo bonusnya kena likuidasi.
Cek disini untuk daftar:
https://t.me/CryptoProID/43747
Ini juga salah satu solusi, untuk kalian yang saldo bonusnya kena likuidasi.
Telegram
CryptoProID Airdrop ๐ฎ๐ฉ
๐ดCRYPTOPROID X FLIPSTER EVENT๐ด
๐งงFree Up To 50$ Bonus Saldo Futures (For All User)
๐ Sign Up : https://flipster.io/signin?referral_code=CRYPTOPRO
โ Sign Up With Email
โ Use Code Bonus : CRYPTOPRO
โ Login Account
โ KYC Flipster Account
- KTP Depan + Belakangโฆ
๐งงFree Up To 50$ Bonus Saldo Futures (For All User)
๐ Sign Up : https://flipster.io/signin?referral_code=CRYPTOPRO
โ Sign Up With Email
โ Use Code Bonus : CRYPTOPRO
โ Login Account
โ KYC Flipster Account
- KTP Depan + Belakangโฆ
New airdrop backed by big CTs
๐ Check CatGram airdrop: https://t.me/catgram_play_bot/app?startapp=wpKKnCENy8
Tap-to-earn game, supported by CTs. Airdrops for all Telegram users like $NOT.
I saw CZ and Vitalik but might be some marketing stuffs. Big CTs are creating Guilds to
compete, this is the next Notcoin.
๐ Check CatGram airdrop: https://t.me/catgram_play_bot/app?startapp=wpKKnCENy8
Tap-to-earn game, supported by CTs. Airdrops for all Telegram users like $NOT.
I saw CZ and Vitalik but might be some marketing stuffs. Big CTs are creating Guilds to
compete, this is the next Notcoin.
๐19๐ฅ8๐ณ5
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
New airdrop backed by big CTs ๐ Check CatGram airdrop: https://t.me/catgram_play_bot/app?startapp=wpKKnCENy8 Tap-to-earn game, supported by CTs. Airdrops for all Telegram users like $NOT. I saw CZ and Vitalik but might be some marketing stuffs. Big CTsโฆ
Yok Lah Early Project Garap
๐5๐ฅ3๐3
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
FCFS 1000 Free 3 CBK ๐ Sign Up : HERE
CBK Ada Yang Land?
Worth 1.6$ Per Acc
Worth 1.6$ Per Acc
๐ฅ4๐2๐2
๐๐ซ๐ฒ๐ฉ๐ญ๐จ ๐๐ซ๐จ๐ญ๐จ๐๐จ๐ฅ ๐๐ | ๐๐ข๐ซ๐๐ซ๐จ๐ฉ
Free 20,000 CONV (500 Random) https://x.com/ConvergenceFin/status/1816024508157083979 DM UID OKX
CONV Distribusi
Worth Marlong 7 bungkus mah dapet
Worth Marlong 7 bungkus mah dapet
๐3๐ฅ2๐1