Compatible Contracts

UPDATE : bundleZen now can work with various contract function

Not all smart contracts can be launched with BundleZen. You must ensure that the contract includes the enableTrading function in its code. For an example of a compatible contract, you can download it here:

// solidity
function enableTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        // others code here...
}

If you have a similar function but with a different name, you can simply rename it to enableTrading, or contact BundleZen support for assistance. for example like this one:

// solidity

function openTrading() external onlyOwner()
function startTrading() external onlyOwner()
function openTrade() external onlyOwner()
function startTrade() external onlyOwner()

if you have one of these function or similar one, please rename to:

function enableTrading() external onlyOwner()

Last updated