Skip to content

cladular/generate-eth-address

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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