Bump @metamask/eth-sig-util from 5.0.0 to 7.0.2 in /webapp #2727
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow that is manually triggered | |
name: compile dig | |
# Controls when the action will run. Workflow runs when manually triggered using the UI | |
# or API. | |
on: [push, pull_request, workflow_dispatch] | |
# This workflow makes x86_64 binaries for mac, windows, and linux. | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: dig | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
go-version: '^1.19' | |
env: | |
GOOS: ${{ matrix.targetos }} | |
GOARCH: ${{ matrix.arch }} | |
- name: Compile dig | |
run: | | |
make install | |
# proof: | |
# runs-on: ubuntu-latest | |
# name: prove that v0.46 works | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/[email protected] | |
# with: | |
# go-version: '^1.19' | |
# - name: Prove dig | |
# run: | | |
# make install | |
# digd init test | |
# cp ~/.dig/data/priv_validator_state.json ~/priv_validator_state.json | |
# rm -rf ~/.dig/data | |
# cp networks/mainnets/dig-1/genesis.json ~/.dig/config/genesis.json | |
# cd ~/.dig | |
# URL=https://quicksync.ccvalidators.com/SNAPSHOTS/dig-1_20221029_default.tar.lz4 && wget -O - $URL | lz4 -d | tar -xvf - | |
# cp ~/priv_validator_state.json ~/.dig/data/priv_validator_state.json | |
# digd start --home ~/.dig --minimum-gas-prices 0.00001udig | |