Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 709 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 709 Bytes

generate-eth-address

This action generates an Ethereum address using a given source data value.

Inputs

data

Required Source data to use when generating the address. Input value is tipically a public key.

Outputs

address

The generated Ethereum address.

Usage

- 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 }}"'

License

The scripts and documentation in this project are released under the MIT License