EVM Gateway 项目教程

EVM Gateway 项目教程

evmgatewayThis repository implements a generic CCIP-Read gateway for fetching state proofs of data on other EVM chains. The intended use is for contracts on L1 to be able to fetch and verify data from contracts on L2 in a read context.项目地址:https://gitcode.com/gh_mirrors/ev/evmgateway

1. 项目的目录结构及介绍

EVM Gateway 项目的目录结构如下:

evmgateway/
├── README.md
├── LICENSE
├── package.json
├── src/
│   ├── main.js
│   ├── config.js
│   ├── utils/
│   └── ...
├── tests/
│   ├── test_main.js
│   └── ...
└── ...
  • README.md: 项目介绍和使用说明。
  • LICENSE: 项目许可证文件。
  • package.json: 项目依赖和脚本配置。
  • src/: 源代码目录。
    • main.js: 项目启动文件。
    • config.js: 项目配置文件。
    • utils/: 工具函数目录。
  • tests/: 测试代码目录。

2. 项目的启动文件介绍

src/main.js 是项目的启动文件,负责初始化和启动 EVM Gateway。以下是启动文件的主要内容和功能:

const config = require('./config');
const utils = require('./utils');

async function start() {
    // 初始化配置
    await config.init();
    
    // 启动服务
    utils.startServer();
}

start();
  • config.init(): 初始化项目配置。
  • utils.startServer(): 启动 EVM Gateway 服务。

3. 项目的配置文件介绍

src/config.js 是项目的配置文件,包含项目的各种配置选项。以下是配置文件的主要内容和功能:

module.exports = {
    accessNodeGrpcHost: 'https://testnet.evm.nodes.onflow.org',
    flowNetworkId: 'flow-testnet',
    coinbase: 'EVM-account',
    coaAddress: 'funded Flow account address',
    coaKeyFile: 'file containing private keys for coa-address',
    coaResourceCreate: true,
    // 其他配置选项...
};
  • accessNodeGrpcHost: 访问节点的 gRPC 主机地址。
  • flowNetworkId: Flow 网络 ID。
  • coinbase: EVM 账户。
  • coaAddress: 资助的 Flow 账户地址。
  • coaKeyFile: 包含私钥的文件。
  • coaResourceCreate: 是否创建资源。

以上是 EVM Gateway 项目的基本教程,涵盖了项目的目录结构、启动文件和配置文件的介绍。希望对您有所帮助!

evmgatewayThis repository implements a generic CCIP-Read gateway for fetching state proofs of data on other EVM chains. The intended use is for contracts on L1 to be able to fetch and verify data from contracts on L2 in a read context.项目地址:https://gitcode.com/gh_mirrors/ev/evmgateway

  • 5
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

尤歌泽Vigour

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值