-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
42ed1da
commit bc536f0
Showing
3 changed files
with
45 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
package changeset | ||
|
||
import ( | ||
"github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings/ccip_router" | ||
"github.com/smartcontractkit/chainlink/deployment" | ||
) | ||
|
||
// SolChainState holds a Go binding for all the currently deployed CCIP programs | ||
// on a chain. If a binding is nil, it means here is no such contract on the chain. | ||
|
||
var ( | ||
SolRouter deployment.ContractType = "SolRouter" | ||
) | ||
|
||
type SolCCIPChainState struct { | ||
SolRouter *ccip_router.Instruction | ||
} |
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