BNB Price: $698.95 (+1.13%)
Gas: 1 GWei
 

Overview

BNB Balance

BNB Smart Chain LogoBNB Smart Chain LogoBNB Smart Chain Logo0 BNB

BNB Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction found.

Latest 1 internal transaction

Parent Transaction Hash Block From To
94216602021-07-23 23:41:531265 days ago1627083713  Contract Creation0 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

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *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

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"}]

Deployed Bytecode

0x6080604052600080fdfea2646970667358221220733a4b4f843536e0c73d5e8856031ba10bff90f45916adbda172e5253b2bf75664736f6c634300060c0033

Deployed Bytecode Sourcemap

60:58:0:-:0;;;;;

Swarm Source

ipfs://733a4b4f843536e0c73d5e8856031ba10bff90f45916adbda172e5253b2bf756

Block Transaction Gas Used Reward
view all blocks produced
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
View All Validatorset

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.