-
Notifications
You must be signed in to change notification settings - Fork 2
Added common code needed for generalized WT #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
228fe8f
0bd913d
beacbab
f24e297
39f5ab0
c923778
b46ae76
ae1e95d
64de64a
d5d5889
3cdd888
3ed1c84
56c681b
9e71b84
2b529f9
0647c81
510243c
43a4fc7
15a6ac5
fa81074
d91c986
a727f7f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,6 @@ linters: | |
| - errname | ||
| - errorlint | ||
| - exhaustive | ||
| - exportloopref | ||
| - fatcontext | ||
| - ginkgolinter | ||
| - gocritic | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| module github.com/smartcontractkit/chainlink-framework/capabilities | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add a readme with short description and instructions, also point to EVM and Aptos implementations. Thx! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can also do the same for the balance monitor part, point to Aptos implementation at least. |
||
|
|
||
| go 1.24.0 | ||
|
|
||
| require ( | ||
| github.com/smartcontractkit/chainlink-common v0.6.1-0.20250404155658-18d2d23ab3c9 | ||
| github.com/stretchr/testify v1.10.0 | ||
| go.opentelemetry.io/otel v1.30.0 | ||
| go.opentelemetry.io/otel/trace v1.30.0 | ||
| google.golang.org/protobuf v1.36.6 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/bahlo/generic-list-go v0.2.0 // indirect | ||
| github.com/beorn7/perks v1.0.1 // indirect | ||
| github.com/btcsuite/btcd v0.22.0-beta // indirect | ||
| github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect | ||
| github.com/buger/jsonparser v1.1.1 // indirect | ||
| github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
| github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
| github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
| github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect | ||
| github.com/ethereum/go-ethereum v1.14.11 // indirect | ||
| github.com/go-logr/logr v1.4.2 // indirect | ||
| github.com/go-logr/stdr v1.2.2 // indirect | ||
| github.com/go-playground/locales v0.13.0 // indirect | ||
| github.com/go-playground/universal-translator v0.17.0 // indirect | ||
| github.com/go-playground/validator/v10 v10.4.1 // indirect | ||
| github.com/go-viper/mapstructure/v2 v2.1.0 // indirect | ||
| github.com/golang/protobuf v1.5.4 // indirect | ||
| github.com/google/go-cmp v0.6.0 // indirect | ||
| github.com/google/uuid v1.6.0 // indirect | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect | ||
| github.com/holiman/uint256 v1.3.1 // indirect | ||
| github.com/invopop/jsonschema v0.12.0 // indirect | ||
| github.com/jpillora/backoff v1.0.0 // indirect | ||
| github.com/leodido/go-urn v1.2.0 // indirect | ||
| github.com/mailru/easyjson v0.7.7 // indirect | ||
| github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
| github.com/mr-tron/base58 v1.2.0 // indirect | ||
| github.com/pelletier/go-toml/v2 v2.2.0 // indirect | ||
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
| github.com/prometheus/client_golang v1.17.0 // indirect | ||
| github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect | ||
| github.com/prometheus/common v0.44.0 // indirect | ||
| github.com/prometheus/procfs v0.11.1 // indirect | ||
| github.com/santhosh-tekuri/jsonschema/v5 v5.2.0 // indirect | ||
| github.com/shopspring/decimal v1.4.0 // indirect | ||
| github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298 // indirect | ||
| github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.0.0-20240823153156-2a54df7bffb9 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.6.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.30.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.30.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.30.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.4.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.28.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.28.0 // indirect | ||
| go.opentelemetry.io/otel/log v0.6.0 // indirect | ||
| go.opentelemetry.io/otel/metric v1.30.0 // indirect | ||
| go.opentelemetry.io/otel/sdk v1.30.0 // indirect | ||
| go.opentelemetry.io/otel/sdk/log v0.6.0 // indirect | ||
| go.opentelemetry.io/otel/sdk/metric v1.30.0 // indirect | ||
| go.opentelemetry.io/proto/otlp v1.3.1 // indirect | ||
| go.uber.org/multierr v1.11.0 // indirect | ||
| go.uber.org/zap v1.27.0 // indirect | ||
| golang.org/x/crypto v0.32.0 // indirect | ||
| golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect | ||
| golang.org/x/net v0.30.0 // indirect | ||
| golang.org/x/sys v0.29.0 // indirect | ||
| golang.org/x/text v0.21.0 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
| google.golang.org/grpc v1.67.1 // indirect | ||
| gopkg.in/yaml.v3 v3.0.1 // indirect | ||
| ) | ||
Uh oh!
There was an error while loading. Please reload this page.