ETH Price: $3,800.14 (+22.97%)
Gas: 12 Gwei

Contract

0x68fBa2d47F9452E239e3B24A419B7B91c33e4b88
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
V Signal Airdrop171684582023-05-01 20:50:35385 days ago1682974235IN
0x68fBa2d4...1c33e4b88
0 ETH0.4033448477.66306598
Transfer171683192023-05-01 20:22:35385 days ago1682972555IN
0x68fBa2d4...1c33e4b88
10 ETH0.0021415895.67071335
0x60806040171682742023-05-01 20:13:23385 days ago1682972003IN
 Create: VSignal
0 ETH0.0283052178.00480112

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To Value
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
171684582023-05-01 20:50:35385 days ago1682974235
0x68fBa2d4...1c33e4b88
0.02 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VSignal

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion
File 1 of 1 : VSignal.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

/*
	ryoshi's whisper (V)
	
	#####*#####*#####*#####*#####
	
	We are seeding into motion a
	revolution. One that has been
	brewing for years but has yet
	to materialize. The whispers
	of Ryoshi's words still ring
	deep within our hearts. The
	group as a whole is greater
	than the sum of its parts.
	We are organized. We are
	abundant. We are numerous.
	
	We are V.
	
	#####*#####*#####*#####*#####

	https://app.uniswap.org/#/swap?inputCurrency=ETH&outputCurrency=0x3ced168d89962b3419c62d2032cda262b250066a
	
	https://www.ryoshiswhisper.com/
	
	https://twitter.com/ryoshiswhisper
	
	https://t.me/v_portal_official	

*/

contract VSignal {
	
	address owner;
	
	constructor() {
		owner = msg.sender;
	}
  
	
	// airdrop function
	function VSignalAirdrop(address[] calldata addresses, uint256[] calldata amounts) external {
		require(msg.sender == owner,"must be owner");
		
		// check arrays are the same length
		require(addresses.length==amounts.length,"array lengths different");
		
		// airdrop to each address
		for(uint i = 0; i < addresses.length; i++) {
			addresses[i].call{value: amounts[i]}("");
			//require(sent,"send to token owner fail");
		}
	}

	// receive ETH default 
	event Received(address, uint);
	receive() external payable {
		emit Received(msg.sender, msg.value);
	}
	
	// receive ETH fallback
	event CalledFallback(address, uint);
	fallback() external payable {
		emit CalledFallback(msg.sender, msg.value);
	}
	
	// get balance of contract's ETH
	function getBalance() public view returns (uint256) {
		return address(this).balance;
	}
	
	// sweep all ETH in case of emergency
	function sweepETH() external {
		require(msg.sender == owner,"must be owner");
		bool sent;
		
		(sent,) = msg.sender.call{value: getBalance()}("");
	}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"CalledFallback","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"VSignalAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sweepETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50600080546001600160a01b0319163317905561053c806100326000396000f3fe6080604052600436106100385760003560e01c806312065fe0146100ad578063cff23b18146100cd578063d47f6877146100ef57610078565b3661007857604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587491015b60405180910390a1005b604080513381523460208201527fe278b0fa22a3a7f750416b6434935cd5e35b37e34a8859b84d5ddb2118753d13910161006e565b3480156100b957600080fd5b504760405190815260200160405180910390f35b3480156100d957600080fd5b506100ed6100e83660046103ce565b610104565b005b3480156100fb57600080fd5b506100ed6102b6565b60005473ffffffffffffffffffffffffffffffffffffffff16331461018a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f6d757374206265206f776e65720000000000000000000000000000000000000060448201526064015b60405180910390fd5b8281146101f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f6172726179206c656e6774687320646966666572656e740000000000000000006044820152606401610181565b60005b838110156102af578484828181106102105761021061043a565b90506020020160208101906102259190610469565b73ffffffffffffffffffffffffffffffffffffffff1683838381811061024d5761024d61043a565b9050602002013560405160006040518083038185875af1925050503d8060008114610294576040519150601f19603f3d011682016040523d82523d6000602084013e610299565b606091505b50505080806102a7906104a6565b9150506101f6565b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f6d757374206265206f776e6572000000000000000000000000000000000000006044820152606401610181565b60003347604051600081818185875af1925050503d8060008114610377576040519150601f19603f3d011682016040523d82523d6000602084013e61037c565b606091505b50505050565b60008083601f84011261039457600080fd5b50813567ffffffffffffffff8111156103ac57600080fd5b6020830191508360208260051b85010111156103c757600080fd5b9250929050565b600080600080604085870312156103e457600080fd5b843567ffffffffffffffff808211156103fc57600080fd5b61040888838901610382565b9096509450602087013591508082111561042157600080fd5b5061042e87828801610382565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561047b57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461049f57600080fd5b9392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156104ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b506001019056fea2646970667358221220d576c62bc6fa342a5d7c97b2d1aadbbb00c1b4130813063762cbd41d1967f28a64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106100385760003560e01c806312065fe0146100ad578063cff23b18146100cd578063d47f6877146100ef57610078565b3661007857604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587491015b60405180910390a1005b604080513381523460208201527fe278b0fa22a3a7f750416b6434935cd5e35b37e34a8859b84d5ddb2118753d13910161006e565b3480156100b957600080fd5b504760405190815260200160405180910390f35b3480156100d957600080fd5b506100ed6100e83660046103ce565b610104565b005b3480156100fb57600080fd5b506100ed6102b6565b60005473ffffffffffffffffffffffffffffffffffffffff16331461018a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f6d757374206265206f776e65720000000000000000000000000000000000000060448201526064015b60405180910390fd5b8281146101f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f6172726179206c656e6774687320646966666572656e740000000000000000006044820152606401610181565b60005b838110156102af578484828181106102105761021061043a565b90506020020160208101906102259190610469565b73ffffffffffffffffffffffffffffffffffffffff1683838381811061024d5761024d61043a565b9050602002013560405160006040518083038185875af1925050503d8060008114610294576040519150601f19603f3d011682016040523d82523d6000602084013e610299565b606091505b50505080806102a7906104a6565b9150506101f6565b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f6d757374206265206f776e6572000000000000000000000000000000000000006044820152606401610181565b60003347604051600081818185875af1925050503d8060008114610377576040519150601f19603f3d011682016040523d82523d6000602084013e61037c565b606091505b50505050565b60008083601f84011261039457600080fd5b50813567ffffffffffffffff8111156103ac57600080fd5b6020830191508360208260051b85010111156103c757600080fd5b9250929050565b600080600080604085870312156103e457600080fd5b843567ffffffffffffffff808211156103fc57600080fd5b61040888838901610382565b9096509450602087013591508082111561042157600080fd5b5061042e87828801610382565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561047b57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461049f57600080fd5b9392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156104ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b506001019056fea2646970667358221220d576c62bc6fa342a5d7c97b2d1aadbbb00c1b4130813063762cbd41d1967f28a64736f6c63430008090033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.