Skip to content

Commit 68ad972

Browse files
committed
revert pkg rename
1 parent c899947 commit 68ad972

File tree

411 files changed

+1472
-1472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

411 files changed

+1472
-1472
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Subnet EVM
22

3-
[![Build + Test + Release](https://github.com/ava-labs/coreth/actions/workflows/lint-tests-release.yml/badge.svg)](https://github.com/ava-labs/coreth/actions/workflows/lint-tests-release.yml)
4-
[![CodeQL](https://github.com/ava-labs/coreth/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/ava-labs/coreth/actions/workflows/codeql-analysis.yml)
3+
[![Build + Test + Release](https://github.com/ava-labs/subnet-evm/actions/workflows/lint-tests-release.yml/badge.svg)](https://github.com/ava-labs/subnet-evm/actions/workflows/lint-tests-release.yml)
4+
[![CodeQL](https://github.com/ava-labs/subnet-evm/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/ava-labs/subnet-evm/actions/workflows/codeql-analysis.yml)
55

66
[Avalanche](https://docs.avax.network/overview/getting-started/avalanche-platform) is a network composed of multiple blockchains.
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/coreth).
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).
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/coreth).
71+
Subnet EVM is a simplified version of [Coreth VM (C-Chain)](https://github.com/ava-labs/subnet-evm).
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

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Please refer to the [Bug Bounty Page](https://hackenproof.com/avalanche) for the
1616

1717
## Supported Versions
1818

19-
Please use the [most recently released version](https://github.com/ava-labs/coreth/releases/latest) to perform testing and to validate security issues.
19+
Please use the [most recently released version](https://github.com/ava-labs/subnet-evm/releases/latest) to perform testing and to validate security issues.

accounts/abi/bind/auth.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ import (
3333
"io"
3434
"math/big"
3535

36-
"github.com/ava-labs/coreth/accounts"
37-
"github.com/ava-labs/coreth/accounts/external"
38-
"github.com/ava-labs/coreth/accounts/keystore"
39-
"github.com/ava-labs/coreth/core/types"
36+
"github.com/ava-labs/subnet-evm/accounts"
37+
"github.com/ava-labs/subnet-evm/accounts/external"
38+
"github.com/ava-labs/subnet-evm/accounts/keystore"
39+
"github.com/ava-labs/subnet-evm/core/types"
4040
"github.com/ethereum/go-ethereum/common"
4141
"github.com/ethereum/go-ethereum/crypto"
4242
"github.com/ethereum/go-ethereum/log"

accounts/abi/bind/backend.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ import (
3131
"errors"
3232
"math/big"
3333

34-
"github.com/ava-labs/coreth/core/types"
35-
"github.com/ava-labs/coreth/interfaces"
34+
"github.com/ava-labs/subnet-evm/core/types"
35+
"github.com/ava-labs/subnet-evm/interfaces"
3636
"github.com/ethereum/go-ethereum/common"
3737
)
3838

accounts/abi/bind/backends/simulated.go

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ import (
3434
"sync"
3535
"time"
3636

37-
"github.com/ava-labs/coreth/eth"
38-
"github.com/ava-labs/coreth/vmerrs"
39-
40-
"github.com/ava-labs/coreth/accounts/abi"
41-
"github.com/ava-labs/coreth/accounts/abi/bind"
42-
"github.com/ava-labs/coreth/consensus/dummy"
43-
"github.com/ava-labs/coreth/core"
44-
"github.com/ava-labs/coreth/core/bloombits"
45-
"github.com/ava-labs/coreth/core/rawdb"
46-
"github.com/ava-labs/coreth/core/state"
47-
"github.com/ava-labs/coreth/core/types"
48-
"github.com/ava-labs/coreth/core/vm"
49-
"github.com/ava-labs/coreth/eth/filters"
50-
"github.com/ava-labs/coreth/interfaces"
51-
"github.com/ava-labs/coreth/params"
52-
"github.com/ava-labs/coreth/rpc"
37+
"github.com/ava-labs/subnet-evm/eth"
38+
"github.com/ava-labs/subnet-evm/vmerrs"
39+
40+
"github.com/ava-labs/subnet-evm/accounts/abi"
41+
"github.com/ava-labs/subnet-evm/accounts/abi/bind"
42+
"github.com/ava-labs/subnet-evm/consensus/dummy"
43+
"github.com/ava-labs/subnet-evm/core"
44+
"github.com/ava-labs/subnet-evm/core/bloombits"
45+
"github.com/ava-labs/subnet-evm/core/rawdb"
46+
"github.com/ava-labs/subnet-evm/core/state"
47+
"github.com/ava-labs/subnet-evm/core/types"
48+
"github.com/ava-labs/subnet-evm/core/vm"
49+
"github.com/ava-labs/subnet-evm/eth/filters"
50+
"github.com/ava-labs/subnet-evm/interfaces"
51+
"github.com/ava-labs/subnet-evm/params"
52+
"github.com/ava-labs/subnet-evm/rpc"
5353
"github.com/ethereum/go-ethereum/common"
5454
"github.com/ethereum/go-ethereum/common/hexutil"
5555
"github.com/ethereum/go-ethereum/common/math"

accounts/abi/bind/backends/simulated_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ import (
3737
"testing"
3838
"time"
3939

40-
"github.com/ava-labs/coreth/accounts/abi"
41-
"github.com/ava-labs/coreth/accounts/abi/bind"
42-
"github.com/ava-labs/coreth/core"
43-
"github.com/ava-labs/coreth/core/types"
44-
"github.com/ava-labs/coreth/interfaces"
45-
"github.com/ava-labs/coreth/params"
40+
"github.com/ava-labs/subnet-evm/accounts/abi"
41+
"github.com/ava-labs/subnet-evm/accounts/abi/bind"
42+
"github.com/ava-labs/subnet-evm/core"
43+
"github.com/ava-labs/subnet-evm/core/types"
44+
"github.com/ava-labs/subnet-evm/interfaces"
45+
"github.com/ava-labs/subnet-evm/params"
4646
"github.com/ethereum/go-ethereum/common"
4747
"github.com/ethereum/go-ethereum/crypto"
4848
)

accounts/abi/bind/base.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ import (
3434
"strings"
3535
"sync"
3636

37-
"github.com/ava-labs/coreth/accounts/abi"
38-
"github.com/ava-labs/coreth/core/types"
39-
"github.com/ava-labs/coreth/interfaces"
37+
"github.com/ava-labs/subnet-evm/accounts/abi"
38+
"github.com/ava-labs/subnet-evm/core/types"
39+
"github.com/ava-labs/subnet-evm/interfaces"
4040
"github.com/ethereum/go-ethereum/common"
4141
"github.com/ethereum/go-ethereum/crypto"
4242
"github.com/ethereum/go-ethereum/event"

accounts/abi/bind/base_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ import (
3434
"strings"
3535
"testing"
3636

37-
"github.com/ava-labs/coreth/accounts/abi"
38-
"github.com/ava-labs/coreth/accounts/abi/bind"
39-
"github.com/ava-labs/coreth/core/types"
40-
"github.com/ava-labs/coreth/interfaces"
37+
"github.com/ava-labs/subnet-evm/accounts/abi"
38+
"github.com/ava-labs/subnet-evm/accounts/abi/bind"
39+
"github.com/ava-labs/subnet-evm/core/types"
40+
"github.com/ava-labs/subnet-evm/interfaces"
4141
"github.com/ethereum/go-ethereum/common"
4242
"github.com/ethereum/go-ethereum/common/hexutil"
4343
"github.com/ethereum/go-ethereum/crypto"

accounts/abi/bind/bind.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import (
3939
"text/template"
4040
"unicode"
4141

42-
"github.com/ava-labs/coreth/accounts/abi"
42+
"github.com/ava-labs/subnet-evm/accounts/abi"
4343
"github.com/ethereum/go-ethereum/log"
4444
)
4545

0 commit comments

Comments
 (0)