-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0bb25bd
commit 999fbe5
Showing
7 changed files
with
114 additions
and
9 deletions.
There are no files selected for viewing
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cronJob: | ||
config: | | ||
debug: true | ||
# Updater fields | ||
environment: "preprod" | ||
network: "holesky" | ||
rpc_url: "https://ethereum-holesky-rpc.publicnode.com" | ||
private_key: "0e15d829eade2d9ab61c756ea71c422b7a301a9db2ac281ed2d5cf1708cb9757" # address: 0x18a0f92Ad9645385E8A8f3db7d0f6CF7aBBb0aD4 | ||
proof_store_base_url: "https://eigenpayments-dev.s3.us-east-2.amazonaws.com" | ||
payment_coordinator_address: "0xb22Ef643e1E067c994019A4C19e403253C05c2B0" | ||
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package tracer | ||
|
||
import ( | ||
"github.com/opentracing/opentracing-go" | ||
"gopkg.in/DataDog/dd-trace-go.v1/ddtrace/opentracer" | ||
"gopkg.in/DataDog/dd-trace-go.v1/ddtrace/tracer" | ||
) | ||
|
||
var t opentracing.Tracer | ||
|
||
func GetTracer() opentracing.Tracer { | ||
if t == nil { | ||
NewTracer() | ||
} | ||
return t | ||
} | ||
|
||
func NewTracer() opentracing.Tracer { | ||
t := opentracer.New(tracer.WithServiceName("eigenlayer-payment-updater")) | ||
return t | ||
} |
Oops, something went wrong.