UNPKG

@hyperlane-xyz/core

Version:

Core solidity contracts for Hyperlane

47 lines (34 loc) 1.01 kB
SHELL := /bin/bash GITCOMMIT := $(shell git rev-parse HEAD) GITDATE := $(shell git show -s --format='%ct') GITVERSION := $(shell cat package.json | jq .version) LDFLAGSSTRING +=-X main.GitCommit=$(GITCOMMIT) LDFLAGSSTRING +=-X main.GitDate=$(GITDATE) LDFLAGSSTRING +=-X main.GitVersion=$(GITVERSION) LDFLAGS :=-ldflags "$(LDFLAGSSTRING)" CONTRACTS_PATH := "../../packages/contracts/artifacts/contracts" gas-oracle: env GO111MODULE=on go build $(LDFLAGS) .PHONY: gas-oracle clean: rm gas-oracle test: go test -v ./... lint: golangci-lint run ./... abi: cat $(CONTRACTS_PATH)/L2/predeploys/OVM_GasPriceOracle.sol/OVM_GasPriceOracle.json \ | jq '{abi,bytecode}' \ > abis/OVM_GasPriceOracle.json binding: abi $(eval temp := $(shell mktemp)) cat abis/OVM_GasPriceOracle.json \ | jq -r .bytecode > $(temp) cat abis/OVM_GasPriceOracle.json \ | jq .abi \ | abigen --pkg bindings \ --abi - \ --out bindings/gaspriceoracle.go \ --type GasPriceOracle \ --bin $(temp) rm $(temp)