Junca X protocol
interface IJuncaswapV2Pair {
...
// whether gasless pair or not
function gasless()external view returns(bool);
// gas left to pay for minerfee
function gasLeft()external view returns(uint);
// pay for minerfee per transaction
function gasPerTx()external view returns(uint);
// the gas low water mark
function gasLowWaterMark()external returns(uint);
// pair creater
function issuer()external view returns(address);
// recharge gas to pay for minerfee,anyone can recharge to obtain the authority to fees
// min recharge value is 1 ether JGC
function gasRecharge()external payable;
// return the min sell value of token0 and token1
function mtv()external view returns(uint,uint);
// set min tranact value,only by issuer
function setMTV(uint _mtv0,uint _mtv1)external;
}Feature
Contract Address
Last updated