Conversation
…rification Covers: - Arc domain 26 finalized-finality attestation latency (2-6 hours, not minutes) - Recommended retry pattern and fast-finality alternative - PUSH0/Osaka EVM compatibility correction - EIP-7825 gas cap note - Sourcify-based contract verification workaround Fixes circlefin#428, circlefin#429, partially documents circlefin#425 and circlefin#427
osr21
requested review from
ZhiyuCircle,
ancazamfir,
romac and
sergio-mena
as code owners
September 17, 2026 21:56
Contributor
|
Contributor
|
Hi @osr21, Thank you for your interest in contributing to Arc Node. This PR has been automatically closed because you are not assigned to issue #428. We require contributors to be explicitly assigned to an issue before submitting a PR. To contribute properly:
Please see our CONTRIBUTING.md for more details. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Closes #428. Partially documents #425 and #427. Corrects the stale PUSH0 claim raised in #429.
Adds
docs/cctp-integration.md— a developer-facing guide for integrating CCTP v2 on Arc Mainnet. The page collects information that is currently either absent or scattered across external sources and frequently causes support requests.Contents
CCTP parameters
Canonical table of Arc Mainnet domain, chain ID, TOKEN_MESSENGER_V2, MESSAGE_TRANSMITTER_V2, and USDC addresses.
Attestation timing (fixes #428)
Explains that
finalized-finality attestations for Arc domain 26 take 2–6 hours (not seconds), whypending_confirmations+message: nullis normal and not a failure, why callingreattestreturns"already finalized", and what retry interval and max-wait to use. Includes a TypeScript polling example. Recommendsfastfinality when the application does not requirefinalized.EVM compatibility (fixes #429)
Corrects the stale claim that Arc rejects
PUSH0(EIP-3855). Arc Mainnet is Osaka-active;PUSH0is fully supported andevm_version = "paris"is no longer needed. Also notes the EIP-7825 gas cap (2²⁴) and its effect oneth_estimateGas/eth_call(partially documents #427).Contract verification (documents #425)
Explains the Cloudflare WAF issue that blocks
--verifier blockscoutand shows the--verifier sourcify --skip-is-verified-checkworkaround that bypasses it.