This action generates an Ethereum address using a given source data value.
Required Source data to use when generating the address. Input value is tipically a public key.
The generated Ethereum address.
- name: Generate Ethereum Address
uses: cladular/generate-eth-address@v0
id: ethgen # Later used for reading the output
with:
data: '...PUBLIC-KEY...'
# Use the output from the `ethgen` step
- name: Print Gernerated Address
run: 'echo "Ethereum address: ${{ steps.ethgen.outputs.address }}"'
The scripts and documentation in this project are released under the MIT License