開発者のリソース

ZetaChainは、すべてのブロックチェーンを1つにつなげると共に、ビットコインやドージコインのようなスマートコントラクト非対応チェーンへプログラマビリティの能力をもたらす、完全に相互運用可能なスマートコントラクト(オムニチェーンスマートコントラクト)を実現する史上初のL1ブロックチェーンです。私たちは、比べるもののないセキュリティ、シンプルさ、柔軟性の組み合わせを開発者に提供します。

開発者が今までにない体験をできるように構築

いったんデプロイすれば、すべてのチェーンにアクセス可能

対応するチェーンごとに1つのコントラクトを管理するのではなく、すべてのチェーンに対して単一のオムニチェーンコントラクトを管理しましょう。イーサリアム上で構築でき、ビットコインのようなスマートコントラクト非対応チェーンも含むすべてのチェーン上の資産へアクセスできるシンプルさを、ぜひ体験してください。

トランザクションを減らして、手数料を減らしましょう

ZetaChainの複雑なコントラクトロジックは、シンプルな移送と単一のトランザクションにより、接続されている外部チェーンのすべてにわたって資産の調整をおこないます。ユーザーは諸経費を最小限に抑えることが可能になります。

より安全で、すばらしい体験

トランザクションロジックはスマートコントラクトでアトミックに作動するので、遅延が抑えられ、アタックサーフェスが減少し、競合状態の影響を受けにくくなります。複数のチェーンで運用している場合でも、真のワンステップのトランザクション(そしてその手数料)を体験できます。

最高のDevX=最高のユーザー体験

Omnichainのスマートコントラクトとメッセージングは、完璧なツールキットです。理解が容易で、追跡のしやすいシングルステップトランザクションを簡単に構築してくれます。ユーザーが立ち往生したり、資金を危険にさらしたりすることがありません。

// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "@zetachain/protocol-contracts/contracts/zevm/SystemContract.sol";
import "@zetachain/protocol-contracts/contracts/zevm/interfaces/zContract.sol";

import "../shared/SwapHelperLib.sol";

contract ZetaSwap is zContract {
    SystemContract public immutable systemContract;

    constructor(address systemContractAddress) {
        systemContract = SystemContract(systemContractAddress);
    }

    modifier onlySystem() {
        require(msg.sender == address(systemContract), "Only system contract can call this function");
        _;
    }

    function onCrossChainCall(
        zContext calldata context,
        address zrc20,
        uint256 amount,
        bytes calldata message
    ) external virtual override onlySystem {
        (address targetZRC20, bytes32 receipient, uint256 minAmountOut) = abi.decode(
            message,
            (address, bytes32, uint256)
        );
        uint256 outputAmount = SwapHelperLib._doSwap(
            systemContract.wZetaContractAddress(),
            systemContract.uniswapv2FactoryAddress(),
            systemContract.uniswapv2Router02Address(),
            zrc20,
            amount,
            targetZRC20,
            minAmountOut
        );
        SwapHelperLib._doWithdrawal(targetZRC20, outputAmount, receipient);
    }
}

最も簡単で、最も汎用性の高いクロスチェーンプラットフォーム

ZetaChainのブロックチェーンを稼働させるには、dAppで3つの関数を実行します。理解が容易で、追跡のしやすい動作は元に戻すことも可能なので、ユーザーが立ち往生したり、資金を危険にさらしたりすることがありません。

コネクターAPIの使用を開始します
/**
/* Sending value and data cross-chain */
function send(ZetaInterfaces.SendInput calldata input) external;

/* onZetaMessage is called when cross-chain message reaches contract */
function onZetaMessage(ZetaInterfaces.ZetaMessage calldata zetaMessage) external;

/* onZetaRevert is called when cross-chain message reverts */
function onZetaRevert(ZetaInterfaces.ZetaRevert calldata zetaRevert) external;

Omnichainプリミティブ

ZetaChainのオムニチェーンプリミティブは、開発者に対し、アプリケーションを一度デプロイすれば、接続されているすべてのチェーン上の資産をロジックがある単一の場所からオーケストレーションする能力を与えます。

Omnichainツールキット

Omnichainスマートコントラクト

既存のイーサリアムのスマートコントラクトエコシステムを活用し、あらゆるものが単一のチェーン上にあるかのように、真に相互運用性のあるアプリをZetaChainに構築します。

詳しくは

クロスチェーンメッセージング

任意のメッセージを送信し、資産のラッピングやロックをせずに、いかなるチェーン間でも実際の額を移動します。

詳しくは

Omnichainアカウント

ZetaChainの新しいTSSアーキテクチャにより、ユーザーと委託を受けたカストディは、安全な分散型の方式で1か所から資産を管理できます。

間もなく入手できます

エクスプローラー

完全な探索ができるトランザクション:ZetaChainの内部トランザクションと、チェーン間で発生するトランザクションを表示して、モニターします。

エクスプローラーに進んでください

ZetaChainは、どのように匹敵しますか?

ブロックチェーン、そしてスマートコントラクトプラットフォームとして、ZetaChainは、完全公開された、透明性のある、分散型相互運用性ソリューションを提供します。これは、オムニチェーンメッセージングとスマートコントラクトの両方をサポートするものです。ZetaChainを使う開発者はdAppロジックを実行するだけでよく、ZetaChainはトラスト最小化の手法で、チェーン間のデータと額のトランザクションをおこないます。

ホワイトペーパーを読んでください
ZetaChainCosmosPolkadotTHORChainBridges/Messagingゼネラルスマートコントラクト
はい
はい
はい
いいえ
いいえ
クロスチェーンバリュートランスファー
はい
はい
はい
はい
はい
クロスチェーンメッセージパッシング
はい
はい
はい
いいえ
はい
チェーンアグノスティック
はい
Only Cosmos/IBC Chains
いいえ
はい
アプリケーション固有のチェーンペア
決済
即時ネイティブ決済
ラップ
ラップ
即時ネイティブ決済
ラップ、償還リスク
Native Bitcoin Vault Management
はい
いいえ
いいえ
はい
アプリケーション固有
オムニチェーンスマートコントラクト
はい
Only Cosmos/IBC Chains
Only Parachains
いいえ
いいえ

最小限のリスク

ZetaChainは、TSSとPoSテンダーミントコンセンサスで構築された分散型ネットワークで、アタックサーフェスは最小限に抑えられています。

流動性の統一

資産のラッピング、集中型ブリッジ、相互依存のリスク増加とは無縁です。もっと自由でコストの低いトランザクション。

無限の互換性

ZetaChainは、既存や新規のブロックチェーン、さらにはビットコインやドージコインのような非スマートコントラクトチェーンであってもサポート可能です。

構築を開始します

拡大するサンプルライブラリーで、開発を始めましょう。実際のユースケースとして、契約の実例も利用します。

オムニチェーンdAppをデプロイしてください
オムニチェーン貸与
任意間の支払い
オムニチェーンNFTs
クロスチェーンの所有権証明
ドージコインスマートコントラクト
クロスチェーンDEX
オムニチェーンDAOs
クロスチェーンステーブルスワップ
オムニチェーン貸与
任意間の支払い
オムニチェーンNFTs
クロスチェーンの所有権証明
ドージコインスマートコントラクト
クロスチェーンDEX
オムニチェーンDAOs
クロスチェーンステーブルスワップ

協力したいですか?

Discord Development ZoneのZetaChainでオムニチェーンdAppを構築するために、アイデアを共有し、協力してくれる人を見つけてください。当社のチームはいつでもお手伝いします。

最新

最新のZetaChainアップデートをチェックしてください

Placeholder

ZetaChain 2.0: The First Universal Blockchain

ZetaChain 2.0 proposes a series of potential upgrades to achieve the first Universal EVM for chain abstraction with features such as Universal Proof of Stake and Universal Apps that automate complex cross-chain interactions.

Placeholder

April 2024: The ZetaChain Universal EVM crosses 100 million transactions in 90 days!

ZetaChain, the first Universal EVM, crosses 100M TXs, fueling the start of the largest Ecosystem Growth Fund announcement to date (5% of total ZETA supply).

Placeholder

Building cross-chain DEX, Restaking, BTC staking as an Omnichain Smart Contract on ZetaChain

This blog explores deploying prominent crypto protocols as an Omnichain Smart Contract on ZetaChain. The mentioned products involve many functions, which are subject to change. Further, changes and upgrades to the ZetaChain protocol are required to achieve such functionality.

Placeholder

ZetaChain commits 5% of total ZETA supply to developer and dApp ecosystem growth program including 1% for Bitcoin projects

The new ecosystem program will accelerate growth of projects building on ZetaChain through developer grants, with a major carve out for Bitcoin-focused projects following the halving.

Placeholder

ZetaChain Enters Top 5 Blockchains by Total Weekly Active Users!

ZetaChain’s mission is to serve as a platform for universal access, simplicity, and utility across any blockchain. From entering the top five chains by users and top five Naming Service in one week on SPACE ID to the full day ZetaChain Bitcoin Builder Zone at ETH Seoul and everything in-between, March was a resounding success!

Placeholder

Coinbase launches Learning Rewards and ZetaChain support on Coinbase Wallet to bring omnichain to users

ZetaChain’s mission is to serve as a platform for universal access, simplicity, and utility across any blockchain. Today marks a significant milestone as leading wallet Coinbase Wallet adds support for ZetaChain to launch Learning Rewards quests campaign in Coinbase Wallet. The integration enables Coinbase Wallet users to experience omnichain interoperability across all chains in a simple, fast, and secure way.

Placeholder

Introducing universal web3 ID with the launch of .zeta Name Service with SPACE ID

.zeta universal identities span all of web3, from EVM to Cosmos, BNB and eventually even Bitcoin. Mint your ID and join the BTC Halving Claim Campaign hosted by Galxe!


質問はありますか?
よくある質問を確認するか、専門家とチャットしてください。