Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .mockery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ packages:
ContractReader:
EVMService:
TONService:
SolanaService:
github.com/smartcontractkit/chainlink-common/pkg/types/core:
interfaces:
CapabilitiesRegistry:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ require (
github.com/kylelemons/godebug v1.1.0
github.com/lib/pq v1.10.9
github.com/marcboeker/go-duckdb v1.8.5
github.com/mr-tron/base58 v1.2.0
github.com/pelletier/go-toml v1.9.5
github.com/pelletier/go-toml/v2 v2.2.4
github.com/prometheus/client_golang v1.22.0
Expand Down Expand Up @@ -125,7 +126,6 @@ require (
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/mr-tron/base58 v1.2.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/oklog/run v1.2.0 // indirect
github.com/pierrec/lz4/v4 v4.1.22 // indirect
Expand Down
2 changes: 2 additions & 0 deletions pkg/chains/solana/generate.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
//go:generate go run ./generate
package solana
11 changes: 11 additions & 0 deletions pkg/chains/solana/generate/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package main

import "github.com/smartcontractkit/chainlink-protos/cre/go/installer/pkg"

func main() {
gen := &pkg.ProtocGen{Plugins: []pkg.Plugin{pkg.GoPlugin, {Name: "go-grpc"}}}
gen.AddSourceDirectories("../..", ".")
if err := gen.GenerateFile("solana.proto", "."); err != nil {
panic(err)
}
}
Loading
Loading