ApeWorX / ApePay

A smart contract payment system built for automated service management
https://apeworx.io/apepay
Apache License 2.0
18 stars 6 forks source link

Source 'selected token' from token list [SBK-298] #44

Closed alexisnsns closed 10 months ago

alexisnsns commented 11 months ago

in [ui/lib/CreateStream.tsx]:

    <select
      value={selectedToken}
      onChange={(e) => setSelectedToken(e.target.value)}
    >
      <option value="USDC">USDC</option>
      <option value="">Matic (Coming soon)</option>
      <option value="">ETH (Coming soon)</option>
    </select>

Source these values from a token list; https://github.com/Uniswap/token-lists#automated

This would replace props.tokenAddress with a tokenlist to select from

alexisnsns commented 10 months ago

Fixed with #49