{"id":29630918,"url":"https://github.com/donpushme/zetachain-solana-contract","last_synced_at":"2025-07-21T11:07:11.580Z","repository":{"id":301557578,"uuid":"946948794","full_name":"donpushme/zetachain-solana-contract","owner":"donpushme","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-11T23:36:19.000Z","size":203,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T23:28:35.599Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/donpushme.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-11T23:35:01.000Z","updated_at":"2025-03-11T23:36:29.000Z","dependencies_parsed_at":"2025-06-27T14:11:32.122Z","dependency_job_id":"8716380a-fbce-4192-9219-4e843e643090","html_url":"https://github.com/donpushme/zetachain-solana-contract","commit_stats":null,"previous_names":["donpushme/zetachain-solana-contract"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/donpushme/zetachain-solana-contract","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpushme%2Fzetachain-solana-contract","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpushme%2Fzetachain-solana-contract/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpushme%2Fzetachain-solana-contract/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpushme%2Fzetachain-solana-contract/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/donpushme","download_url":"https://codeload.github.com/donpushme/zetachain-solana-contract/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpushme%2Fzetachain-solana-contract/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266287824,"owners_count":23905461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-21T11:07:10.467Z","updated_at":"2025-07-21T11:07:11.551Z","avatar_url":"https://github.com/donpushme.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n**Note**: Mainnet-beta, testnet, devnet gateway program address:\n\n```\nZETAjseVjuFsxdRxo6MmTCvqFwb3ZHUx56Co3vCmGis\n```\n\nThe PDA account address (derived from seeds `b\"meta\"` and canonical bump) is\n```\n2f9SLuUNb7TNeM6gzBwT4ZjbL5ZyKzzHg1Ce9yiquEjj\n```\n\nThe PDA account address (derived from seeds `b\"rent-payer\")\n```\nAm1aA3XQciu3vMG6E9yLa2Y9TcTf2XB3D3akLtjVzu3L\n```\n\n\n# Introduction\n\nThis repository hosts the smart contract (program) deployed on the Solana network to enable ZetaChain's cross-chain functionality. It consists of a single program that supports the following actions:\n\n1. Users on the Solana network can send SOL to the program to deposit into ZetaChain, with the option to invoke a ZetaChain EVM contract.\n2. Contracts on the ZetaChain EVM can withdraw SOL to users on the Solana network.\n\n# Build and Test Instructions\n\nPrerequisites: a recent version of `rust` compiler and `cargo` package manger must be installed. The program is built with the `anchor` framework so it needs to be installed as well; see [installation](https://www.anchor-lang.com/docs/installation)\n\nPlease install compatible Solana tools and anchor-cli before build, otherwise the program will not be built successfully\n```bash\n$ solana-install init 1.18.15\n\n$ cargo install --git https://github.com/coral-xyz/anchor --tag v0.30.0 anchor-cli --locked\n```\n\nTo show the installed versions of the tools\n```bash\n$ cargo-build-sbf --version\nsolana-cargo-build-sbf 1.18.15\nplatform-tools v1.41\nrustc 1.75.0\n\n$ anchor --version\nanchor-cli 0.30.0\n```\n\nTo build (this will require at least 2GB disk space)\n```bash\n$ anchor build\n```\n\nTo run the tests\n```bash\n$ anchor test\n```\n\nTo generate Go code for program's IDL\n```bash\n$ make generate\n```\n\n# Authentication and Authorization\n\nAnyone can deposit and remote invoke ZetaChain contracts. \n\nOnly ZetaChain TSS account can call `withdraw` on the program. The ZetaChain TSS account is a collection of Observer/Signers which uses ECDSA TSS (Threshold Signature Scheme) to sign outbound transactions. The TSS address will appear in this program a single ECDSA secp256k1 address; but it does not have a single private key, rather its private key consists of multiple key shares and they collectively sign a message in a KeySign MPC ceremony. The program authenticates via verifying the TSS signature and is authorized by ZetaChain to perform outbound transactions as part of ZetaChain cross-chain machinery. \n\nThe ZetaChain TSS is on ECDSA secp256k1 curve;  But Solana native digital signature scheme is EdDSA Ed25519 curve. Therefore the program uses custom logic to verify the TSS ECDSA signature (like alternative authentication in smart contract wallet);  the native transaction signer (fee payer on Solana) does not carry authorization and it's only used to build the transaction and pay tx fees. There are no restrictions on who the native transaction signer/fee payer is. The following code excerpt is for authenticating TSS signature in the contract itself,  using the [Rust secp256k1 library bundled with solana](https://docs.rs/solana-program/latest/solana_program/secp256k1_recover/index.html): https://github.com/zeta-chain/protocol-contracts-solana/blob/01eeb9733a00b6e972de0578b0e07ebc5837ec54/programs/protocol-contracts-solana/src/lib.rs#L116-L121\n\nThe function `recover_eth_address` is implemented in the gateway program: https://github.com/zeta-chain/protocol-contracts-solana/blob/01eeb9733a00b6e972de0578b0e07ebc5837ec54/programs/protocol-contracts-solana/src/lib.rs#L180-L196\n\nThe TSS signature is a ECDSA secp256k1 signature; its public key therefore address (Ethereum compatible hashing from pubkey) is therefore verifiable using the `secp256k1_recover` function. Alternatively, Solana runtime also provides a program to provide this verification service via CPI; see [proposal 48](https://github.com/solana-foundation/solana-improvement-documents/blob/main/proposals/0048-native-program-for-secp256r1-sigverify.md) which might be more cost efficient. \n\nIn the instruction, the ECDSA signed message_hash must commit to the  `nonce`, `amount`, and `to` address. See the check in these instructions like:  https://github.com/zeta-chain/protocol-contracts-solana/blob/01eeb9733a00b6e972de0578b0e07ebc5837ec54/programs/protocol-contracts-solana/src/lib.rs#L110-L114 The commitment of `nonce` in the signature prevents replay of the TSS ECDSA signed message.  Also (to be added in https://github.com/zeta-chain/protocol-contracts-solana/issues/6) a chain id of Solana should be added to the commitment of the message hash, so that the signature cannot be replayed on *other blockchains* that potentially uses similar authentication (say in TON). \n\n\n# Relevant Account and Addresses\n\nThe Gateway program derives a PDA (Program Derived Address) with seeds `b\"meta\"` and canonical bump.  This PDA account/address actually holds the SOL balance of the Gateway program.  For SPL tokens, the program stores the SPL token in PDA derived ATAs. For each SPL token (different mint account), the program creates an ATA from the PDA and the Mint (standard way of deriving ATA in Solana SPL program).\n\nThe PDA account itself is a data account that holds Gateway program state, namely the following data types https://github.com/zeta-chain/protocol-contracts-solana/blob/01eeb9733a00b6e972de0578b0e07ebc5837ec54/programs/protocol-contracts-solana/src/lib.rs#L271-L275\n\nThe `nonce` is incremented on each successful withdraw transaction, and it's used to prevent replay of signed ECDSA messages. \nThe `tss_address` is the TSS address of ZetaChain (20Bytes, Ethereum style). `authority` is the one who can update the TSS address stored in PDA account. \nThe `initialize` instruction sets nonce to 0. \n\n# Troubleshooting\n\n## MacOS error when running `anchor test` or `solana-test-validator`\n\nIf you see errors like\n```\nUnable to get latest blockhash. Test validator does not look started. Check \".anchor/test-ledger/test-ledger-log.txt\" for errors. Consider increasing [test.startup_wait] in Anchor.toml.\n```\n\nor \n```bash\n% solana-test-validator --reset\nLedger location: test-ledger\nLog: test-ledger/validator.log\nError: failed to start validator: Failed to create ledger at test-ledger: io error: Error checking to unpack genesis archive: Archive error: extra entry found: \"._genesis.bin\" Regular\n```\n\nThis is because the BSD tar program is not compatible with the GNU tar program.\n\nTo fix the issue: install GNU tar program using homebrew and export it's executable path in your `.zshrc` file:\n\n**Mac with Apple Silicon**\n\n```bash\nbrew install gnu-tar\n# Put this in ~/.zshrc \nexport PATH=\"/opt/homebrew/opt/gnu-tar/libexec/gnubin:$PATH\"\n```\n\n**Intel-based Mac**\n\n```bash\nbrew install gnu-tar\n# Put this in ~/.zshrc \nexport PATH=\"/usr/local/opt/gnu-tar/libexec/gnubin:$PATH\"\n```\nsee https://solana.stackexchange.com/questions/4499/blockstore-error-when-starting-solana-test-validator-on-macos-13-0-1/16319#16319","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonpushme%2Fzetachain-solana-contract","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdonpushme%2Fzetachain-solana-contract","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonpushme%2Fzetachain-solana-contract/lists"}