Skip to content

Commit de7ed6a

Browse files
authored
Update mod file and all imports to use scroll-tech URL (#15)
* Update mod file and all imports to use scroll-tech URL Fixes #14 * Update Discord link
1 parent 80940fa commit de7ed6a

File tree

805 files changed

+3533
-3533
lines changed

Some content is hidden

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

805 files changed

+3533
-3533
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Official Golang implementation of the Ethereum protocol.
44

55
[![API Reference](
66
https://camo.githubusercontent.com/915b7be44ada53c290eb157634330494ebe3e30a/68747470733a2f2f676f646f632e6f72672f6769746875622e636f6d2f676f6c616e672f6764646f3f7374617475732e737667
7-
)](https://pkg.go.dev/github.com/ethereum/go-ethereum?tab=doc)
8-
[![Go Report Card](https://goreportcard.com/badge/github.com/ethereum/go-ethereum)](https://goreportcard.com/report/github.com/ethereum/go-ethereum)
9-
[![Travis](https://travis-ci.com/ethereum/go-ethereum.svg?branch=master)](https://travis-ci.com/ethereum/go-ethereum)
10-
[![Discord](https://img.shields.io/badge/discord-join%20chat-blue.svg)](https://discord.gg/nthXNEv)
7+
)](https://pkg.go.dev/github.com/scroll-tech/go-ethereum?tab=doc)
8+
[![Go Report Card](https://goreportcard.com/badge/github.com/scroll-tech/go-ethereum)](https://goreportcard.com/report/github.com/scroll-tech/go-ethereum)
9+
[![Travis](https://travis-ci.com/scroll-tech/go-ethereum.svg?branch=master)](https://travis-ci.com/scroll-tech/go-ethereum)
10+
[![Discord](https://img.shields.io/badge/discord-join%20chat-blue.svg)](https://discord.gg/2stGbxwb)
1111

1212
## ZK-Rollup
1313

SECURITY.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22

33
## Supported Versions
44

5-
Please see [Releases](https://github.com/ethereum/go-ethereum/releases). We recommend using the [most recently released version](https://github.com/ethereum/go-ethereum/releases/latest).
5+
Please see [Releases](https://github.com/scroll-tech/go-ethereum/releases). We recommend using the [most recently released version](https://github.com/scroll-tech/go-ethereum/releases/latest).
66

77
## Audit reports
88

9-
Audit reports are published in the `docs` folder: https://github.com/ethereum/go-ethereum/tree/master/docs/audits
9+
Audit reports are published in the `docs` folder: https://github.com/scroll-tech/go-ethereum/tree/master/docs/audits
1010

1111
| Scope | Date | Report Link |
1212
| ------- | ------- | ----------- |
13-
| `geth` | 20170425 | [pdf](https://github.com/ethereum/go-ethereum/blob/master/docs/audits/2017-04-25_Geth-audit_Truesec.pdf) |
14-
| `clef` | 20180914 | [pdf](https://github.com/ethereum/go-ethereum/blob/master/docs/audits/2018-09-14_Clef-audit_NCC.pdf) |
15-
| `Discv5` | 20191015 | [pdf](https://github.com/ethereum/go-ethereum/blob/master/docs/audits/2019-10-15_Discv5_audit_LeastAuthority.pdf) |
16-
| `Discv5` | 20200124 | [pdf](https://github.com/ethereum/go-ethereum/blob/master/docs/audits/2020-01-24_DiscV5_audit_Cure53.pdf) |
13+
| `geth` | 20170425 | [pdf](https://github.com/scroll-tech/go-ethereum/blob/master/docs/audits/2017-04-25_Geth-audit_Truesec.pdf) |
14+
| `clef` | 20180914 | [pdf](https://github.com/scroll-tech/go-ethereum/blob/master/docs/audits/2018-09-14_Clef-audit_NCC.pdf) |
15+
| `Discv5` | 20191015 | [pdf](https://github.com/scroll-tech/go-ethereum/blob/master/docs/audits/2019-10-15_Discv5_audit_LeastAuthority.pdf) |
16+
| `Discv5` | 20200124 | [pdf](https://github.com/scroll-tech/go-ethereum/blob/master/docs/audits/2020-01-24_DiscV5_audit_Cure53.pdf) |
1717

1818
## Reporting a Vulnerability
1919

2020
**Please do not file a public ticket** mentioning the vulnerability.
2121

22-
To find out how to disclose a vulnerability in Ethereum visit [https://bounty.ethereum.org](https://bounty.ethereum.org) or email bounty@ethereum.org. Please read the [disclosure page](https://github.com/ethereum/go-ethereum/security/advisories?state=published) for more information about publically disclosed security vulnerabilities.
22+
To find out how to disclose a vulnerability in Ethereum visit [https://bounty.ethereum.org](https://bounty.ethereum.org) or email bounty@ethereum.org. Please read the [disclosure page](https://github.com/scroll-tech/go-ethereum/security/advisories?state=published) for more information about publically disclosed security vulnerabilities.
2323

2424
Use the built-in `geth version-check` feature to check whether the software is affected by any known vulnerability. This command will fetch the latest [`vulnerabilities.json`](https://geth.ethereum.org/docs/vulnerabilities/vulnerabilities.json) file which contains known security vulnerabilities concerning `geth`, and cross-check the data against its own version number.
2525

accounts/abi/abi.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"fmt"
2424
"io"
2525

26-
"github.com/ethereum/go-ethereum/common"
27-
"github.com/ethereum/go-ethereum/crypto"
26+
"github.com/scroll-tech/go-ethereum/common"
27+
"github.com/scroll-tech/go-ethereum/crypto"
2828
)
2929

3030
// The ABI holds information about a contract's context and available

accounts/abi/abi_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ import (
2626
"strings"
2727
"testing"
2828

29-
"github.com/ethereum/go-ethereum/common"
30-
"github.com/ethereum/go-ethereum/common/math"
31-
"github.com/ethereum/go-ethereum/crypto"
29+
"github.com/scroll-tech/go-ethereum/common"
30+
"github.com/scroll-tech/go-ethereum/common/math"
31+
"github.com/scroll-tech/go-ethereum/crypto"
3232
)
3333

3434
const jsondata = `

accounts/abi/bind/auth.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ import (
2424
"io/ioutil"
2525
"math/big"
2626

27-
"github.com/ethereum/go-ethereum/accounts"
28-
"github.com/ethereum/go-ethereum/accounts/external"
29-
"github.com/ethereum/go-ethereum/accounts/keystore"
30-
"github.com/ethereum/go-ethereum/common"
31-
"github.com/ethereum/go-ethereum/core/types"
32-
"github.com/ethereum/go-ethereum/crypto"
33-
"github.com/ethereum/go-ethereum/log"
27+
"github.com/scroll-tech/go-ethereum/accounts"
28+
"github.com/scroll-tech/go-ethereum/accounts/external"
29+
"github.com/scroll-tech/go-ethereum/accounts/keystore"
30+
"github.com/scroll-tech/go-ethereum/common"
31+
"github.com/scroll-tech/go-ethereum/core/types"
32+
"github.com/scroll-tech/go-ethereum/crypto"
33+
"github.com/scroll-tech/go-ethereum/log"
3434
)
3535

3636
// ErrNoChainID is returned whenever the user failed to specify a chain id.

accounts/abi/bind/backend.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121
"errors"
2222
"math/big"
2323

24-
"github.com/ethereum/go-ethereum"
25-
"github.com/ethereum/go-ethereum/common"
26-
"github.com/ethereum/go-ethereum/core/types"
24+
"github.com/scroll-tech/go-ethereum"
25+
"github.com/scroll-tech/go-ethereum/common"
26+
"github.com/scroll-tech/go-ethereum/core/types"
2727
)
2828

2929
var (

accounts/abi/bind/backends/simulated.go

+19-19
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ import (
2424
"sync"
2525
"time"
2626

27-
"github.com/ethereum/go-ethereum"
28-
"github.com/ethereum/go-ethereum/accounts/abi"
29-
"github.com/ethereum/go-ethereum/accounts/abi/bind"
30-
"github.com/ethereum/go-ethereum/common"
31-
"github.com/ethereum/go-ethereum/common/hexutil"
32-
"github.com/ethereum/go-ethereum/common/math"
33-
"github.com/ethereum/go-ethereum/consensus/ethash"
34-
"github.com/ethereum/go-ethereum/core"
35-
"github.com/ethereum/go-ethereum/core/bloombits"
36-
"github.com/ethereum/go-ethereum/core/rawdb"
37-
"github.com/ethereum/go-ethereum/core/state"
38-
"github.com/ethereum/go-ethereum/core/types"
39-
"github.com/ethereum/go-ethereum/core/vm"
40-
"github.com/ethereum/go-ethereum/eth/filters"
41-
"github.com/ethereum/go-ethereum/ethdb"
42-
"github.com/ethereum/go-ethereum/event"
43-
"github.com/ethereum/go-ethereum/log"
44-
"github.com/ethereum/go-ethereum/params"
45-
"github.com/ethereum/go-ethereum/rpc"
27+
"github.com/scroll-tech/go-ethereum"
28+
"github.com/scroll-tech/go-ethereum/accounts/abi"
29+
"github.com/scroll-tech/go-ethereum/accounts/abi/bind"
30+
"github.com/scroll-tech/go-ethereum/common"
31+
"github.com/scroll-tech/go-ethereum/common/hexutil"
32+
"github.com/scroll-tech/go-ethereum/common/math"
33+
"github.com/scroll-tech/go-ethereum/consensus/ethash"
34+
"github.com/scroll-tech/go-ethereum/core"
35+
"github.com/scroll-tech/go-ethereum/core/bloombits"
36+
"github.com/scroll-tech/go-ethereum/core/rawdb"
37+
"github.com/scroll-tech/go-ethereum/core/state"
38+
"github.com/scroll-tech/go-ethereum/core/types"
39+
"github.com/scroll-tech/go-ethereum/core/vm"
40+
"github.com/scroll-tech/go-ethereum/eth/filters"
41+
"github.com/scroll-tech/go-ethereum/ethdb"
42+
"github.com/scroll-tech/go-ethereum/event"
43+
"github.com/scroll-tech/go-ethereum/log"
44+
"github.com/scroll-tech/go-ethereum/params"
45+
"github.com/scroll-tech/go-ethereum/rpc"
4646
)
4747

4848
// This nil assignment ensures at compile time that SimulatedBackend implements bind.ContractBackend.

accounts/abi/bind/backends/simulated_test.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ import (
2727
"testing"
2828
"time"
2929

30-
"github.com/ethereum/go-ethereum"
31-
"github.com/ethereum/go-ethereum/accounts/abi"
32-
"github.com/ethereum/go-ethereum/accounts/abi/bind"
33-
"github.com/ethereum/go-ethereum/common"
34-
"github.com/ethereum/go-ethereum/core"
35-
"github.com/ethereum/go-ethereum/core/types"
36-
"github.com/ethereum/go-ethereum/crypto"
37-
"github.com/ethereum/go-ethereum/params"
30+
"github.com/scroll-tech/go-ethereum"
31+
"github.com/scroll-tech/go-ethereum/accounts/abi"
32+
"github.com/scroll-tech/go-ethereum/accounts/abi/bind"
33+
"github.com/scroll-tech/go-ethereum/common"
34+
"github.com/scroll-tech/go-ethereum/core"
35+
"github.com/scroll-tech/go-ethereum/core/types"
36+
"github.com/scroll-tech/go-ethereum/crypto"
37+
"github.com/scroll-tech/go-ethereum/params"
3838
)
3939

4040
func TestSimulatedBackend(t *testing.T) {

accounts/abi/bind/base.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ import (
2424
"strings"
2525
"sync"
2626

27-
"github.com/ethereum/go-ethereum"
28-
"github.com/ethereum/go-ethereum/accounts/abi"
29-
"github.com/ethereum/go-ethereum/common"
30-
"github.com/ethereum/go-ethereum/core/types"
31-
"github.com/ethereum/go-ethereum/crypto"
32-
"github.com/ethereum/go-ethereum/event"
27+
"github.com/scroll-tech/go-ethereum"
28+
"github.com/scroll-tech/go-ethereum/accounts/abi"
29+
"github.com/scroll-tech/go-ethereum/common"
30+
"github.com/scroll-tech/go-ethereum/core/types"
31+
"github.com/scroll-tech/go-ethereum/crypto"
32+
"github.com/scroll-tech/go-ethereum/event"
3333
)
3434

3535
// SignerFn is a signer function callback when a contract requires a method to

accounts/abi/bind/base_test.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ import (
2323
"strings"
2424
"testing"
2525

26-
"github.com/ethereum/go-ethereum"
27-
"github.com/ethereum/go-ethereum/accounts/abi"
28-
"github.com/ethereum/go-ethereum/accounts/abi/bind"
29-
"github.com/ethereum/go-ethereum/common"
30-
"github.com/ethereum/go-ethereum/common/hexutil"
31-
"github.com/ethereum/go-ethereum/core/types"
32-
"github.com/ethereum/go-ethereum/crypto"
33-
"github.com/ethereum/go-ethereum/rlp"
26+
"github.com/scroll-tech/go-ethereum"
27+
"github.com/scroll-tech/go-ethereum/accounts/abi"
28+
"github.com/scroll-tech/go-ethereum/accounts/abi/bind"
29+
"github.com/scroll-tech/go-ethereum/common"
30+
"github.com/scroll-tech/go-ethereum/common/hexutil"
31+
"github.com/scroll-tech/go-ethereum/core/types"
32+
"github.com/scroll-tech/go-ethereum/crypto"
33+
"github.com/scroll-tech/go-ethereum/rlp"
3434
"github.com/stretchr/testify/assert"
3535
)
3636

accounts/abi/bind/bind.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// Package bind generates Ethereum contract Go bindings.
1818
//
1919
// Detailed usage document and tutorial available on the go-ethereum Wiki page:
20-
// https://github.com/ethereum/go-ethereum/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts
20+
// https://github.com/scroll-tech/go-ethereum/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts
2121
package bind
2222

2323
import (
@@ -30,8 +30,8 @@ import (
3030
"text/template"
3131
"unicode"
3232

33-
"github.com/ethereum/go-ethereum/accounts/abi"
34-
"github.com/ethereum/go-ethereum/log"
33+
"github.com/scroll-tech/go-ethereum/accounts/abi"
34+
"github.com/scroll-tech/go-ethereum/log"
3535
)
3636

3737
// Lang is a target programming language selector to generate bindings for.

0 commit comments

Comments
 (0)