For the complete documentation index, see llms.txt. This page is also available as Markdown.

StrategyFactory

example contract: 0xc5Bd3bbd2184CEd3879AB5963DeC2928d0C0b85A

[
{
  "inputs": [],
  "name": "getAllPairs",
  "outputs": [
    {
      "internalType": "bytes32[]",
      "name": "",
      "type": "bytes32[]"
    }
  ],
  "stateMutability": "view",
  "type": "function"
}
]

1.Obtain the trading pairs supported by the contract

// Solidity
getAllPairs()returns (bytes32[] memory)

Return the bytes32 representations of all currently supported trading pairs by the contract

Last updated