Skip to content

Commit

Permalink
Merge pull request #42 from bobanetwork/ufm-kms
Browse files Browse the repository at this point in the history
Support KMS in ufm
  • Loading branch information
boyuan-chen authored Sep 8, 2023
2 parents e5b8fe5 + 4327737 commit 33ce597
Show file tree
Hide file tree
Showing 6 changed files with 419 additions and 7 deletions.
4 changes: 2 additions & 2 deletions op-ufm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ the health of the network by measuring end-to-end transaction latency.
## Metrics

* Round-trip duration time to get transaction receipt (from creation timestamp)
* First-seen duration time (from creation timestamp)

* First-seen duration time (from creation timestamp)


## Usage
Expand Down
2 changes: 1 addition & 1 deletion op-ufm/example.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ port = "9761"
# see https://community.optimism.io/docs/useful-tools/networks/
chain_id = 420
# Signer method to use
# Possible values: signer | static
# Possible values: signer | static | kms
signer_method = "static"
# Address used to send transactions
address = "0x0000000000000000000000000000000000000000"
Expand Down
10 changes: 9 additions & 1 deletion op-ufm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,20 @@ go 1.20
require (
cloud.google.com/go/kms v1.12.1
github.com/BurntSushi/toml v1.3.2
github.com/aws/aws-sdk-go v1.45.5
github.com/ethereum-optimism/optimism/op-service v0.10.14
github.com/ethereum-optimism/optimism/op-signer v0.1.1
github.com/ethereum/go-ethereum v1.12.0
github.com/gorilla/mux v1.8.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.16.0
github.com/rs/cors v1.9.0
google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130
)

require (
github.com/google/uuid v1.3.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130 // indirect
)

require (
Expand Down Expand Up @@ -64,6 +70,8 @@ require (
github.com/tklauser/go-sysconf v0.3.10 // indirect
github.com/tklauser/numcpus v0.5.0 // indirect
github.com/urfave/cli v1.22.9 // indirect
github.com/urfave/cli/v2 v2.25.7 // indirect
github.com/welthee/go-ethereum-aws-kms-tx-signer v0.0.0-20211013075913-ca566ae7abeb
github.com/yusufpapurcu/wmi v1.2.2 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.11.0 // indirect
Expand Down
Loading

0 comments on commit 33ce597

Please sign in to comment.