erc20-transfer-authorization

Simple approval escrow for ERC20 spending
Log | Files | Refs

Dockerfile (229B)


      1 FROM grassrootseconomics:bancor
      2 
      3 ARG pip_extra_index_url=https://pip.grassrootseconomics.net:8433
      4 
      5 COPY ./python/ ./erc20-approval-escrow/
      6 
      7 RUN cd erc20-approval-escrow && \
      8 	pip install --extra-index-url $pip_extra_index_url .
      9