From 31500584b26d49c4072837c998a73cbe3f9aee3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Mon, 12 Nov 2018 11:59:51 +0100 Subject: [PATCH 1/2] docs: Mention language bindings --- docs/EVMC.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/EVMC.md b/docs/EVMC.md index eddf03c..14a39cf 100644 --- a/docs/EVMC.md +++ b/docs/EVMC.md @@ -35,6 +35,15 @@ can be referenced as EVMC ABIv3 or just EVMC 3. – the EVMC-compatibility testing tool for VM implementations. +# Language bindings + +## Go + +```go +import "github.com/ethereum/evmc/bindings/go/evmc" +``` + + [ewasm]: https://github.com/ewasm/design From 3b399a2ab932f9f6603103ad3bf93d3905950252 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Mon, 12 Nov 2018 12:04:42 +0100 Subject: [PATCH 2/2] docs: Mark main page sections --- docs/EVMC.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/EVMC.md b/docs/EVMC.md index 14a39cf..73c5e6a 100644 --- a/docs/EVMC.md +++ b/docs/EVMC.md @@ -6,7 +6,7 @@ On the Client-side it defines the interface for EVM implementations to access Ethereum environment and state. -# Guides +# Guides {#guides} - [Host Implementation Guide](@ref hostguide) - [VM Implementation Guide](@ref vmguide) @@ -21,7 +21,7 @@ For example EVMC 3.2.1 would have ABI version 3 and therefore this project relea can be referenced as EVMC ABIv3 or just EVMC 3. -# Modules +# Modules {#modules} - [EVMC](@ref EVMC) – the main component that defines API for VMs and Clients (Hosts). @@ -35,7 +35,7 @@ can be referenced as EVMC ABIv3 or just EVMC 3. – the EVMC-compatibility testing tool for VM implementations. -# Language bindings +# Language bindings {#bindings} ## Go