Payout Contracts
Payout contracts from different chains is listed here.
Sample approval function :
address public DEX3_PAYOUT_CONTRACT; //Get the contract address from below tableaddress public EMERGENCY_ADDR;
uint MAX_UINT;
//_tokenAddr is the address of the token like USDT, USDC for which you want to grant approval.
function approveForDex3Payout(address _tokenAddr) external onlyOwner {
IERC20(_tokenAddr).approve(DEX3_PAYOUT_CONTRACT, MAX_UINT);
}
Dex3 Payout Contracts :
Chain
Smart Contract Address
Binance Smart Chain
0x0F9604506F04d668f019909623DA325eaA3eAecE
Binance Smart Chain (Testnet)
0x074EeC00AAcaD36c546889076eb2AA562B98b141
Polygon
0x3C50c9148b5Ff65155039485dF4Ef2c46711B8da
Last updated
Was this helpful?