BscScan - Sponsored slots available. Book your slot here!
Overview
BNB Balance
0 BNB
BNB Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
9421660 | 1265 days ago | Contract Creation | 0 BNB |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xAc1583dF...0257581fe The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
PairVault
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-07-25 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; contract PairVault { constructor() public { } } abstract contract PairsHolder { mapping(address => address) internal pair_vaults; address[] public pairs; function _addPairToTrack(address pair) internal { require(!isPair(pair), "Already tracking"); require(pairs.length < 25, "Maximum 25 LP Pairs reached"); pair_vaults[pair] = address(new PairVault()); pairs.push(pair); } function isPair(address account) public view returns (bool) { return getPairVault(account) != address(0); } function getPairVault(address pair) public view returns (address) { return pair_vaults[pair]; } function pairsLength() public view returns (uint256) { return pairs.length; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Deployed Bytecode
0x6080604052600080fdfea2646970667358221220733a4b4f843536e0c73d5e8856031ba10bff90f45916adbda172e5253b2bf75664736f6c634300060c0033
Deployed Bytecode Sourcemap
60:58:0:-:0;;;;;
Swarm Source
ipfs://733a4b4f843536e0c73d5e8856031ba10bff90f45916adbda172e5253b2bf756
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.