Skip to content

Commit cdd438e

Browse files
committed
fix coreth related changes
1 parent 68ad972 commit cdd438e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Each blockchain is an instance of a Virtual Machine (VM), much like an object in an object-oriented language is an instance of a class.
88
That is, the VM defines the behavior of the blockchain.
99

10-
Subnet EVM is the [Virtual Machine (VM)](https://docs.avax.network/learn/avalanche/virtual-machines) that defines the Subnet Contract Chains. Subnet EVM is a simplified version of [Coreth VM (C-Chain)](https://github.com/ava-labs/subnet-evm).
10+
Subnet EVM is the [Virtual Machine (VM)](https://docs.avax.network/learn/avalanche/virtual-machines) that defines the Subnet Contract Chains. Subnet EVM is a simplified version of [Coreth VM (C-Chain)](https://github.com/ava-labs/coreth).
1111

1212
This chain implements the Ethereum Virtual Machine and supports Solidity smart contracts as well as most other Ethereum client functionality.
1313

@@ -68,7 +68,7 @@ The Subnet EVM supports the following API namespaces:
6868
- `debug`
6969

7070
Only the `eth` namespace is enabled by default.
71-
Subnet EVM is a simplified version of [Coreth VM (C-Chain)](https://github.com/ava-labs/subnet-evm).
71+
Subnet EVM is a simplified version of [Coreth VM (C-Chain)](https://github.com/ava-labs/coreth).
7272
Full documentation for the C-Chain's API can be found [here](https://docs.avax.network/apis/avalanchego/apis/c-chain).
7373

7474
## Compatibility
@@ -107,7 +107,7 @@ Download the `subnet-evm` repository into your `$GOPATH`:
107107
cd $GOPATH
108108
mkdir -p src/github.com/ava-labs
109109
cd src/github.com/ava-labs
110-
git clone [email protected]:ava-labs/coreth.git
110+
git clone [email protected]:ava-labs/subnet-evm.git
111111
cd subnet-evm
112112
```
113113

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ require (
5454
github.com/DataDog/zstd v1.5.2 // indirect
5555
github.com/Microsoft/go-winio v0.5.2 // indirect
5656
github.com/NYTimes/gziphandler v1.1.1 // indirect
57+
github.com/ava-labs/coreth v0.12.10-wip-bloom-metrics // indirect
5758
github.com/beorn7/perks v1.0.1 // indirect
5859
github.com/bits-and-blooms/bitset v1.7.0 // indirect
5960
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ github.com/ava-labs/avalanche-network-runner v1.7.4-rc.0 h1:xNbCMNqenaDr0bb35j27
6363
github.com/ava-labs/avalanche-network-runner v1.7.4-rc.0/go.mod h1:B7Ynk/avkCk49CCIWbM4j1UrPlqIi0IHCPAB2MZNvLw=
6464
github.com/ava-labs/avalanchego v1.10.19-legacy-upgrade-times h1:VWI/+vOP63QzrHK2HFw+So+qK1f8gKGpFmdvrKFzOM8=
6565
github.com/ava-labs/avalanchego v1.10.19-legacy-upgrade-times/go.mod h1:bxbOXEYGnwz0K6uPsiB56Ig3pQbBfi4P8NOLtRNhNgw=
66+
github.com/ava-labs/coreth v0.12.10-wip-bloom-metrics h1:uSISbdHpLVlTkwUUqVonMgdX91ePbgP/qJ7iHup9xS4=
67+
github.com/ava-labs/coreth v0.12.10-wip-bloom-metrics/go.mod h1:bw3pxnF+IBw5SoxAKujUiZPbPimieJHPd9fQWZZ/MOM=
6668
github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g=
6769
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
6870
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=

plugin/evm/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
var (
1111
// GitCommit is set by the build script
1212
GitCommit string
13-
// Version is the version of Coreth
14-
Version string = "v0.12.11"
13+
// Version is the version of Subnet EVM
14+
Version string = "v0.5.11"
1515
)
1616

1717
func init() {

0 commit comments

Comments
 (0)