💁Compatible Contracts

ETH-Bundler now can work with various contract function

Not every smart contract is compatible with Eth-Bundler. To use the platform, your contract must include an enableTrading function (or a similar functions). For reference, you can download a sample of a compatible contract here:

// solidity

function enableTrading() external onlyOwner()
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, then all good. */

Last updated