Skip to content

Fix native transfers checks#276

Merged
andrevmatos merged 7 commits into
mainfrom
fix/native-transfers-checks
Jun 23, 2026
Merged

Fix native transfers checks#276
andrevmatos merged 7 commits into
mainfrom
fix/native-transfers-checks

Conversation

@marek-sadura

Copy link
Copy Markdown
Contributor

Problem

Since 1.8.0, getFee runs a token-pool preflight (checkSendMessage, added in "validate token is connected to remote and has enough RL before send"). The preflight resolves a TokenAdminRegistry from the router address and looks up a token pool per token in the message.

This breaks native value transfers:

  • Native is represented as token: ZeroAddress, which has no token pool / registry entry / rate limiter — so getTokenPoolRemote(tokenPool!) runs against an undefined pool.
  • Integrators that send native via a helper contract (e.g. EtherSenderReceiver) pass that contract as router, so getTokenAdminRegistryFor(router) throws CCIPContractNotRouterError ("Not a Router, Ramp or expected contract").

Either way getFee throws for native, where 1.7.1 succeeded.

Fix

Native value transfers aren't pool-managed, so they must be excluded from the token preflights:

  • Add protected isNativeAsset(token) on Chain (default false), overridden in EVMChain (token === ZeroAddress).
  • Skip native tokens in checkSendMessage and checkExecute before any registry/pool lookup.

For a native-only message the preflight loop is a no-op, the registry is never resolved, and getFee proceeds. ERC20 transfers over a real Router are unchanged.

Scope / risk

  • No change to fee computation or to ERC20 rate-limit behavior.
  • isNativeAsset defaults to false, so non-EVM chains are unaffected unless they opt in.

@marek-sadura marek-sadura requested review from a team, PabloMansanet and aelmanaa as code owners June 22, 2026 15:51
@vercel

vercel Bot commented Jun 22, 2026

Copy link
Copy Markdown

You must have Developer access to commit code to Chainlink Labs on Vercel. If you contact an administrator and receive Developer access, commit again to see your changes.

Learn more: https://vercel.com/docs/accounts/team-members-and-roles/access-roles#team-level-roles

@github-actions

Copy link
Copy Markdown

👋 marek-sadura, thanks for creating this pull request!

To help reviewers, please consider creating future PRs as drafts first. This allows you to self-review and make any final changes before notifying the team.

Once you're ready, you can mark it as "Ready for review" to request feedback. Thanks!

andrevmatos
andrevmatos previously approved these changes Jun 22, 2026
@vercel

vercel Bot commented Jun 22, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
ccip-tools-ts Ready Ready Preview, Comment Jun 23, 2026 2:49pm

Request Review

andrevmatos
andrevmatos previously approved these changes Jun 22, 2026
@andrevmatos andrevmatos requested review from a team as code owners June 22, 2026 21:49
andrevmatos
andrevmatos previously approved these changes Jun 22, 2026
pedrovsg
pedrovsg previously approved these changes Jun 22, 2026
Token-2022 mints that use the built-in tokenMetadata extension store
symbol/name inside `parsed.info.extensions[].state`, not in
`parsed.info.symbol/name`. The old code fell through to Metaplex PDA
lookup which returns null for these tokens, leaving symbol as 'UNKNOWN'.

Fix: check for a `tokenMetadata` extension entry before falling back to
Metaplex, so tokens like PYUSD resolve correctly without an extra RPC call.
The previous fix broke a test case where a token in the `unknownTokens`
hardcoded map (e.g. devnet USDC) should still be overridden by Metaplex
metadata. The condition `symbol === 'UNKNOWN'` was too narrow.

Track `hasAuthoritativeSymbol` / `hasAuthoritativeName` to distinguish
on-chain data (parsed fields + Token-2022 extensions) from fallbacks
(unknownTokens, 'UNKNOWN'). Only skip Metaplex fetch when we already
have authoritative data for both symbol and name.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@github-actions

Copy link
Copy Markdown

Coverage Report

ℹ tests 933
ℹ suites 258
ℹ pass 933
ℹ fail 0
ℹ cancelled 0
ℹ skipped 0
ℹ todo 0
ℹ duration_ms 62674.026286

> @chainlink/ccip-cli@1.9.1 test
> node --test

✔ src/commands/e2e-helpers.test.ts (147.516797ms)
Verbose mode enabled
▶ getCtx
  ▶ output — always stdout
    ✔ output.write goes to stdout (2.119027ms)
    ✔ output.table goes to stdout (1.308107ms)
  ✔ output — always stdout (5.227076ms)
  ▶ logger — always stderr
    ✔ logger.info goes to stderr (0.66044ms)
    ✔ logger.warn goes to stderr (0.575562ms)
    ✔ logger.error goes to stderr (0.494581ms)
  ✔ logger — always stderr (2.074455ms)
  ▶ verbose mode
    ✔ logger.debug is a no-op when verbose is false (1.379069ms)
    ✔ logger.debug goes to stderr when verbose is true (1.478634ms)
  ✔ verbose mode (3.118609ms)
  ▶ destroy signal
    ✔ returns a working destroy function (18.715731ms)
    ✔ calling destroy twice does not throw (0.760977ms)
  ✔ destroy signal (19.875802ms)
✔ getCtx (31.405738ms)
▶ lane-latency command
  ✔ should output JSON format correctly (6.081799ms)
  ✔ should resolve chain IDs to chain selectors (2.901385ms)
  ✔ should use custom API URL when provided (0.676811ms)
  ✔ should output log format correctly (0.797736ms)
  ✔ should handle chain IDs as input (0.547721ms)
  ✔ should handle chain selectors as input (0.57483ms)
  ✔ should throw CCIPApiClientNotAvailableError when --no-api flag is set (1.988214ms)
  ✔ should work normally when --no-api flag is false (0.738716ms)
  ✔ should forward blockConfirmations to API URL (0.839163ms)
  ✔ should not include numOfBlocks when blockConfirmations is not provided (0.720852ms)
  ▶ CCIP_API environment variable integration
    ✔ should respect CCIP_API=false environment variable (0.57921ms)
  ✔ CCIP_API environment variable integration (1.527475ms)
✔ lane-latency command (19.698643ms)
▶ e2e command lane EVM v1.5
  ✔ should show lane config Sepolia -> Fuji (v1.5) in JSON (5681.926052ms)
  ✔ should show lane config Sepolia -> Fuji (v1.5) in pretty format (3867.712594ms)
✔ e2e command lane EVM v1.5 (9551.672383ms)
▶ e2e command lane EVM v2.0
  ✔ should show lane config Sepolia -> Fuji (v2.0) in JSON (3780.101372ms)
✔ e2e command lane EVM v2.0 (3780.394587ms)
▶ e2e command lane EVM <-> Aptos (v1.6)
  ✔ should show lane config Sepolia -> Aptos (v1.6) (4127.813898ms)
  ✔ should show lane config Aptos -> Sepolia (v1.6) (3917.092983ms)
✔ e2e command lane EVM <-> Aptos (v1.6) (8045.247847ms)
▶ e2e command lane EVM <-> Solana (v1.6)
  ✔ should show lane config Sepolia -> Solana (v1.6) (4518.542777ms)
  ✔ should show lane config Solana -> Sepolia (v1.6) (5009.355844ms)
✔ e2e command lane EVM <-> Solana (v1.6) (9528.241108ms)
▶ e2e command lane EVM <-> TON (v1.6)
  ✔ should show lane config TON -> Sepolia (v1.6) (35027.635569ms)
  ✔ should show lane config Sepolia -> TON (v1.6) (16805.059107ms)
✔ e2e command lane EVM <-> TON (v1.6) (51833.006447ms)
▶ selectRequest non-interactive behavior
  ✔ returns the single request without prompting (1.125166ms)
  ✔ returns the request matching logIndex (0.234657ms)
  ✔ throws CCIPInteractiveRequiredError for multiple requests without logIndex (1.731145ms)
✔ selectRequest non-interactive behavior (4.514859ms)
▶ CCIPInteractiveRequiredError
  ✔ has correct code and is not transient (0.315878ms)
  ✔ uses default recovery when none provided (0.403061ms)
  ✔ preserves context fields (0.249074ms)
✔ CCIPInteractiveRequiredError (1.187572ms)
▶ preprocessArgv TTY auto-detection
  ✔ --interactive flag is defined in globalOpts (0.227514ms)
✔ preprocessArgv TTY auto-detection (0.372694ms)
▶ search messages command
  ✔ should throw CCIPApiClientNotAvailableError when --no-api flag is set (2.40542ms)
  ✔ should output JSON format correctly (12.346207ms)
  ✔ should pass sender filter to API (2.737249ms)
  ✔ should pass receiver filter to API (2.606465ms)
  ✔ should resolve source chain to selector (3.953865ms)
  ✔ should resolve dest chain to selector (3.20488ms)
  ✔ should pass manual-exec-only filter to API (3.049982ms)
  ✔ should treat limit 0 as unlimited (7.613701ms)
  ✔ should respect limit parameter (7.177109ms)
  ✔ should warn when no results found (1.16486ms)
  ✔ should use custom API URL when provided (2.565108ms)
  ✔ should warn on negative limit and fall back to default (1.906281ms)
  ✔ should output log format (1.779876ms)
✔ search messages command (54.677947ms)
▶ e2e command show EVM
  ▶ pretty format (default)
    ✔ should show complete CCIP transaction details EVM to EVM (9050.591981ms)
  ✔ pretty format (default) (9051.856748ms)
  ▶ json format
    ✔ should output a single valid JSON envelope with all expected fields (7846.222406ms)
  ✔ json format (7846.518007ms)
  ▶ log format
    ✔ should output in log format with object assignments (6871.990601ms)
  ✔ log format (6872.262948ms)
  ▶ verbose flag
    ✔ should work with verbose flag enabled (8671.231745ms)
  ✔ verbose flag (8671.464327ms)
  ▶ error handling
    ✔ should handle invalid transaction hash gracefully (6331.099626ms)
    ✔ should require transaction hash argument (1717.88162ms)
  ✔ error handling (8049.303436ms)
  ✔ should show complete CCIP transaction details EVM to Aptos (8827.889744ms)
  ✔ should show complete CCIP transaction details EVM to Solana (7051.812335ms)
✔ e2e command show EVM (56373.692668ms)
▶ e2e command show Solana
  ✔ should show complete CCIP transaction details Solana to EVM (7843.609861ms)
✔ e2e command show Solana (7843.879653ms)
▶ e2e command show Aptos
  ✔ should show complete CCIP transaction details Aptos to EVM (6781.909736ms)
✔ e2e command show Aptos (6782.120909ms)
﹣ e2e command show TON (0.070722ms) # SKIP
▶ formatCCIPError
  ✔ should return null for non-CCIPError instances (1.138059ms)
  ✔ should format CCIPError with code and message (0.542511ms)
  ✔ should include help section with recovery hint (0.26329ms)
  ✔ should include note section for transient errors (0.243053ms)
  ✔ should include retry timing for transient errors with retryAfterMs (0.452824ms)
  ✔ should not include note section for permanent errors (0.200353ms)
  ✔ should format error with structured output (0.314455ms)
  ✔ should include stack trace when verbose is true (0.329704ms)
  ✔ should not include stack trace when verbose is false (0.23073ms)
✔ formatCCIPError (5.35357ms)
▶ yieldResolved
  ✔ throws if a promise rejects while the generator is paused after a yield (13.879087ms)
✔ yieldResolved (14.123953ms)
▶ canton/signer
  ▶ Ed25519TransactionSigner constructor
    ✔ constructs with a valid 64-char hex seed (5.333372ms)
    ✔ constructs with a 0x-prefixed seed (0.537832ms)
    ✔ throws when seed is too short (0.747131ms)
    ✔ throws when seed is too long (2.536705ms)
    ✔ throws when seed contains non-hex characters (0.250927ms)
    ✔ computes the correct Canton fingerprint (4.200152ms)
    ✔ produces different fingerprints for different seeds (0.7839ms)
  ✔ Ed25519TransactionSigner constructor (16.298763ms)
  ▶ Ed25519TransactionSigner.sign()
    ✔ returns a PartySignatures structure (1.351937ms)
    ✔ includes the correct party ID (0.574039ms)
    ✔ produces a signature with correct properties (0.933188ms)
    ✔ produces a valid Ed25519 signature (64 bytes) (0.568068ms)
    ✔ produces a cryptographically valid signature (1.731275ms)
    ✔ produces different signatures for different hashes (0.75177ms)
    ✔ produces different signatures for different signers (same hash) (0.90181ms)
    ✔ handles empty hash (edge case) (0.509879ms)
  ✔ Ed25519TransactionSigner.sign() (7.8725ms)
  ▶ Ed25519TransactionSigner.getFingerprint()
    ✔ returns the fingerprint computed during construction (0.490974ms)
    ✔ returns a 68-character hex string (0.42967ms)
  ✔ Ed25519TransactionSigner.getFingerprint() (1.137078ms)
  ▶ Integration: multiple signers with same party
    ✔ allows multiple signers for the same party with different keys (0.905296ms)
  ✔ Integration: multiple signers with same party (1.042051ms)
✔ canton/signer (27.461431ms)
▶ fetchChainsFromRpcs
  ✔ lets duplicate tx-hash race endpoints query before aborting losers (16.134207ms)
  ✔ chainGetter: returns chain from first winning endpoint and destroys late arrivals (52.434239ms)
  ✔ chainGetter: resolves a pending request once the endpoint connects (Branch 2) (22.836901ms)
  ✔ chainGetter: rejects with CCIPRpcNotFoundError when all endpoints fail to connect (2.40588ms)
  ✔ chainGetter: rejects immediately with CCIPRpcNotFoundError once family is already exhausted (2.630319ms)
  ✔ txHash: rejects with CCIPTransactionNotFoundError when tx not on any chain (1.421568ms)
  ✔ txHash: Branch-4 (txOnlyRacer) is destroyed via catch when it loses the tx race (10.57296ms)
  ✔ txHash: chain connecting after txFoundIn is set is immediately destroyed without calling getTransaction (24.436343ms)
  ✔ txHash: Branch-2 chain given to a pending chainGetter is NOT destroyed when it cannot find the tx (12.966577ms)
  ✔ txFoundIn shared across families: SVM txOnlyRacer is destroyed after EVM wins (34.767378ms)
✔ fetchChainsFromRpcs (183.242169ms)
ℹ tests 98
ℹ suites 33
ℹ pass 98
ℹ fail 0
ℹ cancelled 0
ℹ skipped 0
ℹ todo 0
ℹ duration_ms 83108.283271
---------------------------------------|---------|----------|---------|---------|-------------------
File                                   | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s 
---------------------------------------|---------|----------|---------|---------|-------------------
All files                              |   74.19 |    77.76 |   58.84 |   74.19 |                   
 ccip-cli/src                          |   90.16 |    59.25 |      75 |   90.16 |                   
  index.ts                             |   90.16 |    59.25 |      75 |   90.16 | ...68-169,175-180 
 ccip-cli/src/commands                 |   52.88 |    73.03 |   61.66 |   52.88 |                   
  index.ts                             |     100 |      100 |     100 |     100 |                   
  lane-latency.ts                      |   72.56 |     90.9 |   33.33 |   72.56 | ...,63-70,105-111 
  lane.ts                              |   85.25 |       70 |     100 |   85.25 | ...34-137,141-143 
  manual-exec.ts                       |   22.87 |      100 |       0 |   22.87 | ...28-138,140-304 
  parse.ts                             |   57.14 |      100 |       0 |   57.14 | 46-50,57-64,66-91 
  search.ts                            |   81.25 |      100 |       0 |   81.25 | 24-29             
  send.ts                              |   14.46 |      100 |       0 |   14.46 | ...90-221,223-484 
  show.ts                              |   78.91 |    64.93 |     100 |   78.91 | ...91-294,322-323 
  supported-tokens.ts                  |   16.85 |      100 |       0 |   16.85 | ...61-335,337-350 
  token.ts                             |   22.72 |      100 |       0 |   22.72 | ...3,60-67,69-132 
  types.ts                             |     100 |      100 |     100 |     100 |                   
  utils.ts                             |    87.9 |    74.83 |   96.42 |    87.9 | ...88-598,606-614 
 ccip-cli/src/commands/search          |   49.19 |    82.85 |    12.5 |   49.19 |                   
  messages.ts                          |   49.19 |    82.85 |    12.5 |   49.19 | ...89-211,213-248 
 ccip-cli/src/providers                |   57.07 |    82.71 |   35.29 |   57.07 |                   
  aptos.ts                             |   51.47 |      100 |       0 |   51.47 | ...,95-96,105-136 
  canton.ts                            |   85.33 |     90.9 |    87.5 |   85.33 | 179-191,206-225   
  evm.ts                               |    36.3 |      100 |       0 |    36.3 | ...69-104,116-168 
  index.ts                             |   78.82 |       80 |   83.33 |   78.82 | ...38-140,207-255 
  solana.ts                            |   47.44 |      100 |       0 |   47.44 | ...02-103,112-137 
  sui.ts                               |   64.28 |      100 |       0 |   64.28 | 10-14             
  ton.ts                               |   15.03 |      100 |       0 |   15.03 | 24-153            
 ccip-sdk/src                          |   95.12 |    85.29 |    93.7 |   95.12 |                   
  chain.ts                             |   94.02 |    74.48 |   81.25 |   94.02 | ...2182,2215-2216 
  commits.ts                           |   72.47 |    95.23 |      50 |   72.47 | 75-123            
  execution.ts                         |   92.45 |    92.59 |     100 |   92.45 | 137-144,156-163   
  explorer.ts                          |     100 |      100 |     100 |     100 |                   
  extra-args.ts                        |     100 |    89.47 |     100 |     100 | 213,248,285,300   
  fetch.ts                             |   98.76 |    94.82 |   97.14 |   98.76 | ...66-567,643-644 
  gas.ts                               |   93.28 |    61.29 |     100 |   93.28 | ...92-196,250-261 
  http-status.ts                       |     100 |      100 |     100 |     100 |                   
  index.ts                             |     100 |      100 |     100 |     100 |                   
  messages.ts                          |   88.53 |    45.09 |     100 |   88.53 | ...30-231,255-256 
  networks.ts                          |     100 |      100 |     100 |     100 |                   
  offchain.ts                          |   94.19 |       80 |     100 |   94.19 | ...25-227,236-237 
  requests.ts                          |   95.41 |    87.26 |     100 |   95.41 | ...15-616,641-646 
  supported-chains.ts                  |     100 |      100 |     100 |     100 |                   
  types.ts                             |     100 |      100 |     100 |     100 |                   
  utils.ts                             |   97.05 |    90.97 |     100 |   97.05 | ...36,238,578-586 
 ccip-sdk/src/api                      |   90.48 |       85 |   88.88 |   90.48 |                   
  index.ts                             |   90.48 |       85 |   88.88 |   90.48 | ...03-806,809-812 
 ccip-sdk/src/aptos                    |   62.44 |    69.23 |   61.01 |   62.44 |                   
  exec.ts                              |   29.31 |      100 |       0 |   29.31 | 18-58             
  hasher.ts                            |   75.89 |       80 |   66.66 |   75.89 | 17-36,50-56       
  index.ts                             |    66.5 |    76.92 |   64.28 |    66.5 | ...1008,1012-1023 
  logs.ts                              |   86.81 |    50.94 |   85.71 |   86.81 | ...07-213,215-226 
  send.ts                              |    25.8 |      100 |       0 |    25.8 | ...2,63-80,93-124 
  token.ts                             |   23.75 |       75 |     100 |   23.75 | 35-156            
  types.ts                             |   65.97 |      100 |       0 |   65.97 | 26-33,65-89       
 ccip-sdk/src/canton                   |   34.03 |    63.63 |       5 |   34.03 |                   
  events.ts                            |   35.67 |      100 |       0 |   35.67 | ...71-383,389-398 
  index.ts                             |   29.11 |    55.55 |    5.97 |   29.11 | ...1864,1875-1879 
  types.ts                             |   88.05 |      100 |       0 |   88.05 | 55-62,149-159     
 ccip-sdk/src/canton/client            |   62.01 |     61.9 |   23.33 |   62.01 |                   
  client.ts                            |   60.12 |       60 |   23.33 |   60.12 | ...08-627,642-662 
  index.ts                             |     100 |      100 |     100 |     100 |                   
 ...dk/src/canton/explicit-disclosures |   69.45 |    70.83 |   35.29 |   69.45 |                   
  acs.ts                               |   82.87 |    70.21 |      80 |   82.87 | ...54-360,390-412 
  eds.ts                               |    54.7 |      100 |       0 |    54.7 | ...76-383,387-392 
 ccip-sdk/src/canton/token-metadata    |   62.64 |      100 |       0 |   62.64 |                   
  client.ts                            |   62.64 |      100 |       0 |   62.64 | 104-163,170-174   
 ...dk/src/canton/transfer-instruction |   52.15 |      100 |       0 |   52.15 |                   
  client.ts                            |   52.15 |      100 |       0 |   52.15 | 92-175,182-186    
 ccip-sdk/src/errors                   |    86.8 |    73.59 |   48.09 |    86.8 |                   
  CCIPError.ts                         |     100 |      100 |     100 |     100 |                   
  codes.ts                             |     100 |      100 |     100 |     100 |                   
  index.ts                             |     100 |      100 |     100 |     100 |                   
  pure.ts                              |     100 |       75 |     100 |     100 | 32                
  recovery.ts                          |     100 |      100 |     100 |     100 |                   
  specialized.ts                       |   83.81 |     68.2 |   45.16 |   83.81 | ...3609,3746-3755 
  utils.ts                             |   94.44 |    81.48 |     100 |   94.44 | 15,17,22,24       
 ccip-sdk/src/evm                      |    86.7 |    76.09 |   89.41 |    86.7 |                   
  const.ts                             |     100 |      100 |     100 |     100 |                   
  errors.ts                            |   89.87 |    79.24 |     100 |   89.87 | ...76,224-227,232 
  extra-args.ts                        |   94.47 |    61.01 |     100 |   94.47 | ...11-212,328-340 
  fork.test.data.ts                    |     100 |      100 |     100 |     100 |                   
  gas.ts                               |   97.97 |    53.33 |     100 |   97.97 | 72-73,75          
  hasher.ts                            |     100 |     92.3 |     100 |     100 | 135               
  index.ts                             |   82.77 |     75.7 |   88.88 |   82.77 | ...2264,2266-2313 
  logs.ts                              |   61.81 |    84.12 |      60 |   61.81 | ...59-160,212-308 
  messages.ts                          |     100 |      100 |     100 |     100 |                   
  offchain.ts                          |   81.25 |    33.33 |     100 |   81.25 | 11,13-14          
  types.ts                             |     100 |      100 |     100 |     100 |                   
 ccip-sdk/src/evm/viem                 |   79.76 |    90.62 |   69.23 |   79.76 |                   
  client-adapter.ts                    |     100 |       90 |     100 |     100 | 48,74             
  index.ts                             |     100 |      100 |     100 |     100 |                   
  wallet-adapter.ts                    |   63.09 |     90.9 |   55.55 |   63.09 | ...91-124,131-157 
 ccip-sdk/src/hasher                   |   94.29 |    78.94 |     100 |   94.29 |                   
  common.ts                            |     100 |      100 |     100 |     100 |                   
  hasher.ts                            |     100 |    66.66 |     100 |     100 | 19                
  index.ts                             |     100 |      100 |     100 |     100 |                   
  merklemulti.ts                       |   93.43 |       78 |     100 |   93.43 | ...06-307,315-316 
 ccip-sdk/src/shared                   |   90.29 |    76.92 |     100 |   90.29 |                   
  bcs-codecs.ts                        |   90.15 |       75 |     100 |   90.15 | 75-87             
  constants.ts                         |     100 |      100 |     100 |     100 |                   
 ccip-sdk/src/solana                   |   75.69 |     69.6 |   80.89 |   75.69 |                   
  cleanup.ts                           |   26.95 |    66.66 |   33.33 |   26.95 | ...59-101,114-227 
  exec.ts                              |   69.11 |    62.96 |   66.66 |   69.11 | ...69-473,513-514 
  fork.test.data.ts                    |     100 |      100 |     100 |     100 |                   
  gas.ts                               |   92.06 |    68.57 |     100 |   92.06 | ...,81-90,170-171 
  hasher.ts                            |   96.49 |    81.81 |     100 |   96.49 | 64-67             
  index.ts                             |   79.02 |    74.38 |   82.69 |   79.02 | ...1763,1767-1800 
  logs.ts                              |   65.54 |     60.6 |     100 |   65.54 | ...28-129,134-141 
  offchain.ts                          |     100 |      100 |     100 |     100 |                   
  patchBorsh.ts                        |   78.31 |       50 |     100 |   78.31 | ...47,65-66,72-78 
  send.ts                              |    77.6 |    33.33 |      80 |    77.6 | ...52-360,403-442 
  types.ts                             |     100 |      100 |     100 |     100 |                   
  utils.ts                             |   72.91 |    65.62 |   72.72 |   72.91 | ...42-444,476-491 
 ccip-sdk/src/sui                      |    34.7 |    86.66 |      20 |    34.7 |                   
  discovery.ts                         |   14.86 |      100 |       0 |   14.86 | ...49-185,188-222 
  events.ts                            |   30.76 |       50 |      25 |   30.76 | ...19-288,310-311 
  exec.ts                              |   31.81 |      100 |       0 |   31.81 | 32-75,87-132      
  hasher.ts                            |   98.18 |    66.66 |     100 |   98.18 | 34,50             
  index.ts                             |   39.55 |    93.18 |   18.91 |   39.55 | ...17-818,822-823 
  objects.ts                           |   18.93 |      100 |       0 |   18.93 | ...33-184,195-338 
 ccip-sdk/src/sui/manuallyExec         |   54.12 |       75 |      50 |   54.12 |                   
  encoder.ts                           |    83.9 |    66.66 |     100 |    83.9 | 51-58,73-77,82    
  index.ts                             |   34.35 |      100 |       0 |   34.35 | 46-131            
 ccip-sdk/src/ton                      |   79.17 |     77.7 |   79.26 |   79.17 |                   
  exec.ts                              |     100 |      100 |     100 |     100 |                   
  extra-args.ts                        |   98.66 |    72.72 |     100 |   98.66 | 156-157,222       
  hasher.ts                            |   78.07 |    77.77 |      75 |   78.07 | 100-108,156-187   
  index.ts                             |   75.72 |    71.75 |    65.9 |   75.72 | ...1363,1370-1371 
  logs.ts                              |     100 |    94.54 |     100 |     100 | 74-79,111         
  send.ts                              |   95.93 |       70 |     100 |   95.93 | 37-44             
  types.ts                             |   91.24 |    81.25 |     100 |   91.24 | ...61-63,71-74,92 
  utils.ts                             |    63.1 |    77.77 |    90.9 |    63.1 | ...37-395,397-400 
---------------------------------------|---------|----------|---------|---------|-------------------

@andrevmatos andrevmatos requested a review from pedrovsg June 23, 2026 14:52
@andrevmatos andrevmatos merged commit 3446388 into main Jun 23, 2026
13 checks passed
@andrevmatos andrevmatos deleted the fix/native-transfers-checks branch June 23, 2026 15:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants