protectedTokenWhitelist()

NetworkSettings.sol
    function protectedTokenWhitelist() external view returns (Token[] memory);

This function allows to identify which tokens/pools are part of the DAO approved whitelist (view votes).

Example

protectedTokenWhitelist()
returns (
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48, //array of token addresses
0xdAC17F958D2ee523a2206206994597C13D831ec7
)

Last updated