-
Notifications
You must be signed in to change notification settings - Fork 17
feat(cct-sdk): Add deploy verification + unify ops #316
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
Merged
apedrob
merged 29 commits into
cct-sdk
from
feature/DAPP-10572-build-deploy-verification
Jul 31, 2026
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
fcf62cb
Better separation of concerns and abstractions
apedrob b8cbf72
CCT: Add version dispatch + Transfer Ownership
apedrob 5c6491a
Merge branch 'feature/DAPP-10175-cct-sdk-set-pool' into feature/DAPP-…
apedrob 0d34c01
Merge branch 'feature/DAPP-10175-cct-sdk-set-pool' into feature/DAPP-…
apedrob 4cf2f1a
Adjust with base
apedrob e06660b
Merge branch 'feature/DAPP-10175-cct-sdk-set-pool' into feature/DAPP-…
apedrob 5f621db
Merge branch 'feature/DAPP-10175-cct-sdk-set-pool' into feature/DAPP-…
apedrob 87974f8
Address generic error types and doc examples
apedrob bbc9191
Fix linting
apedrob e2f4337
feat(cct-sdk): Add deploy evm token
apedrob ca537a7
Address PR comments
apedrob 8e50efc
Address PR comments by fixing chain-specific types
apedrob d5badf9
feat(cct-sdk): Source chainlink/contracts-ccip artifacts (#303)
apedrob 6530538
feat(cct-sdk): Add CrossChainToken deployment + token versioning (#305)
apedrob 0549852
Address preMint specs
apedrob b886b8e
feat(cct-sdk): Add deploy evm token pool + type/version resolution
apedrob 7bce7b5
add remarks ts doc comment
apedrob 59e7e16
Merge branch 'cct-sdk' into feature/DAPP-10545-deploy-evm-pool
apedrob fbc053d
Address PR comments
apedrob fa96c23
add lockfile to fix ci issue
apedrob e5fafc0
Add comments
apedrob a0172b0
feat(cct-sdk): Add EVM deployLockbox operation (DAPP-10738)
apedrob 2e44675
feat(cct-sdk): Add EVM authorizeLockboxCallers operation (DAPP-10788)
apedrob 1bee3c2
refactor(cct-sdk): add validateNonZeroAddress + guard single-tx submit
apedrob 56a58f2
feat(cct-sdk): EVM deploy verification + unify deploy ops
apedrob 224bceb
Address PR comments
apedrob 1e2d8eb
Merge branch 'cct-sdk' into feature/DAPP-10572-build-deploy-verification
apedrob b9ae03e
Review pass
apedrob 397ead2
Merge branch 'cct-sdk' into feature/DAPP-10572-build-deploy-verification
apedrob File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,29 @@ | ||
| /** | ||
| * EVM lockbox contract layer for CCT: the cached `ERC20LockBox` {@link Interface} | ||
| * ({@link LOCKBOX_INTERFACE}) for calldata encoding, and its deploy artifact | ||
| * ({@link getLockboxArtifact}). Only one lockbox version is deployable, so there is no version | ||
| * framework here. Mirrors `token/contracts.ts`. | ||
| * | ||
| * @packageDocumentation | ||
| */ | ||
|
|
||
| import { Interface } from 'ethers' | ||
|
|
||
| import ERC20_LOCKBOX_V2_0_0_ABI from '../artifacts/abi/V2_0_0/erc20-lockbox.ts' | ||
| import ERC20_LOCKBOX_V2_0_0_BYTECODE from '../artifacts/bytecode/V2_0_0/erc20-lockbox.ts' | ||
| import type { DeployArtifact } from '../operation.ts' | ||
|
|
||
| /** Shared, cached `ERC20LockBox` interface for constructor and calldata encoding. */ | ||
| export const LOCKBOX_INTERFACE = new Interface(ERC20_LOCKBOX_V2_0_0_ABI) | ||
|
|
||
| /** `ERC20LockBox` creation bytecode for `deployLockbox`. */ | ||
| export const LOCKBOX_BYTECODE = ERC20_LOCKBOX_V2_0_0_BYTECODE | ||
|
|
||
| /** `ERC20LockBox` deploy artifact: contract name + ctor {@link Interface} + creation bytecode. */ | ||
| export function getLockboxArtifact(): DeployArtifact { | ||
| return { | ||
| contract: 'ERC20LockBox', | ||
| iface: LOCKBOX_INTERFACE, | ||
| bytecode: LOCKBOX_BYTECODE, | ||
| } | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.