사용자는 CLI, JSON-RPC, gRPC 또는 REST를 사용하여Documentation Index
Fetch the complete documentation index at: https://injectivelabs-mintlify-jp-developers-first-half-1777019423.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
evm 모듈을 쿼리하고 상호 작용할 수 있습니다.
CLI
다음은x/evm 모듈과 함께 추가된 injectived 명령 목록입니다. injectived -h 명령을 사용하여 전체 목록을 얻을 수 있습니다.
Queries
query 명령을 통해 사용자는 evm 상태를 쿼리할 수 있습니다.
code
사용자가 주어진 주소에서 스마트 컨트랙트 코드를 쿼리할 수 있습니다.
storage
사용자가 주어진 key와 height로 계정의 storage를 쿼리할 수 있습니다.
Transactions
tx 명령을 통해 사용자는 evm 모듈과 상호 작용할 수 있습니다.
raw
사용자가 raw ethereum 트랜잭션에서 cosmos 트랜잭션을 빌드할 수 있습니다.
JSON-RPC
Ethermint에서 지원되는 JSON-RPC 메서드 및 네임스페이스에 대한 개요는 https://docs.injective.zone/basics/json_rpc.html을 참조하십시오.gRPC
Queries
| Verb | Method | 설명 |
|---|---|---|
gRPC | injective.evm.v1.Query/Account | Ethereum 계정 가져오기 |
gRPC | injective.evm.v1.Query/CosmosAccount | Ethereum 계정의 Cosmos 주소 가져오기 |
gRPC | injective.evm.v1.Query/ValidatorAccount | validator consensus 주소에서 Ethereum 계정 가져오기 |
gRPC | injective.evm.v1.Query/Balance | 단일 EthAccount의 EVM denomination 잔액 가져오기 |
gRPC | injective.evm.v1.Query/Storage | 단일 계정의 모든 코인 잔액 가져오기 |
gRPC | injective.evm.v1.Query/Code | 단일 계정의 모든 코인 잔액 가져오기 |
gRPC | injective.evm.v1.Query/Params | x/evm 모듈의 매개변수 가져오기 |
gRPC | injective.evm.v1.Query/EthCall | eth_call rpc api 구현 |
gRPC | injective.evm.v1.Query/EstimateGas | eth_estimateGas rpc api 구현 |
gRPC | injective.evm.v1.Query/TraceTx | debug_traceTransaction rpc api 구현 |
gRPC | injective.evm.v1.Query/TraceBlock | debug_traceBlockByNumber 및 debug_traceBlockByHash rpc api 구현 |
GET | /injective/evm/v1/account/{address} | Ethereum 계정 가져오기 |
GET | /injective/evm/v1/cosmos_account/{address} | Ethereum 계정의 Cosmos 주소 가져오기 |
GET | /injective/evm/v1/validator_account/{cons_address} | validator consensus 주소에서 Ethereum 계정 가져오기 |
GET | /injective/evm/v1/balances/{address} | 단일 EthAccount의 EVM denomination 잔액 가져오기 |
GET | /injective/evm/v1/storage/{address}/{key} | 단일 계정의 모든 코인 잔액 가져오기 |
GET | /injective/evm/v1/codes/{address} | 단일 계정의 모든 코인 잔액 가져오기 |
GET | /injective/evm/v1/params | x/evm 모듈의 매개변수 가져오기 |
GET | /injective/evm/v1/eth_call | eth_call rpc api 구현 |
GET | /injective/evm/v1/estimate_gas | eth_estimateGas rpc api 구현 |
GET | /injective/evm/v1/trace_tx | debug_traceTransaction rpc api 구현 |
GET | /injective/evm/v1/trace_block | debug_traceBlockByNumber 및 debug_traceBlockByHash rpc api 구현 |
Transactions
| Verb | Method | 설명 |
|---|---|---|
gRPC | injective.evm.v1.Msg/EthereumTx | Ethereum 트랜잭션 제출 |
POST | /injective/evm/v1/ethereum_tx | Ethereum 트랜잭션 제출 |
