Skip to content

Commit dee101f

Browse files
committed
all: rename "microstack-tech" to "ParallaxProtocol" across all files
1 parent 6c70ef1 commit dee101f

File tree

798 files changed

+3487
-3487
lines changed

Some content is hidden

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

798 files changed

+3487
-3487
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: go
2-
go_import_path: github.com/microstack-tech/parallax
2+
go_import_path: github.com/ParallaxProtocol/parallax
33
sudo: false
44
jobs:
55
allow_failures:
@@ -82,7 +82,7 @@ jobs:
8282
- python-paramiko
8383
script:
8484
- echo '|1|7SiYPr9xl3uctzovOTj4gMwAC1M=|t6ReES75Bo/PxlOPJ6/GsGbTrM0= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0aKz5UTUndYgIGG7dQBV+HaeuEZJ2xPHo2DS2iSKvUL4xNMSAY4UguNW+pX56nAQmZKIZZ8MaEvSj6zMEDiq6HFfn5JcTlM80UwlnyKe8B8p7Nk06PPQLrnmQt5fh0HmEcZx+JU9TZsfCHPnX7MNz4ELfZE6cFsclClrKim3BHUIGq//t93DllB+h4O9LHjEUsQ1Sr63irDLSutkLJD6RXchjROXkNirlcNVHH/jwLWR5RcYilNX7S5bIkK8NlWPjsn/8Ua5O7I9/YoE97PpO6i73DTGLh5H9JN/SITwCKBkgSDWUt61uPK3Y11Gty7o2lWsBjhBUm2Y38CBsoGmBw==' >> ~/.ssh/known_hosts
85-
- go run build/ci.go debsrc -upload microstack-tech/parallax -sftp-user prlx-ci -signer "Parallax Linux Builder <[email protected]>"
85+
- go run build/ci.go debsrc -upload ParallaxProtocol/parallax -sftp-user prlx-ci -signer "Parallax Linux Builder <[email protected]>"
8686

8787
# This builder does the Linux Azure uploads
8888
- stage: build
@@ -154,8 +154,8 @@ jobs:
154154
- export GOPATH=$HOME/go
155155
script:
156156
# Build the Android archive and upload it to Maven Central and Azure
157-
- mkdir -p $GOPATH/src/github.com/microstack-tech
158-
- ln -s `pwd` $GOPATH/src/github.com/microstack-tech/parallax
157+
- mkdir -p $GOPATH/src/github.com/ParallaxProtocol
158+
- ln -s `pwd` $GOPATH/src/github.com/ParallaxProtocol/parallax
159159
- go run build/ci.go aar -signer ANDROID_SIGNING_KEY -signify SIGNIFY_KEY -deploy https://oss.sonatype.org -upload prlxstore/builds
160160

161161
# This builder does the OSX Azure, iOS CocoaPods and iOS Azure uploads

accounts/abi/abi.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"fmt"
2424
"io"
2525

26-
"github.com/microstack-tech/parallax/common"
27-
"github.com/microstack-tech/parallax/crypto"
26+
"github.com/ParallaxProtocol/parallax/common"
27+
"github.com/ParallaxProtocol/parallax/crypto"
2828
)
2929

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

accounts/abi/abi_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ import (
2626
"strings"
2727
"testing"
2828

29-
"github.com/microstack-tech/parallax/common"
30-
"github.com/microstack-tech/parallax/common/math"
31-
"github.com/microstack-tech/parallax/crypto"
29+
"github.com/ParallaxProtocol/parallax/common"
30+
"github.com/ParallaxProtocol/parallax/common/math"
31+
"github.com/ParallaxProtocol/parallax/crypto"
3232
)
3333

3434
const jsondata = `

accounts/abi/bind/auth.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ import (
2323
"io"
2424
"math/big"
2525

26-
"github.com/microstack-tech/parallax/accounts"
27-
"github.com/microstack-tech/parallax/accounts/external"
28-
"github.com/microstack-tech/parallax/accounts/keystore"
29-
"github.com/microstack-tech/parallax/common"
30-
"github.com/microstack-tech/parallax/core/types"
31-
"github.com/microstack-tech/parallax/crypto"
32-
"github.com/microstack-tech/parallax/log"
26+
"github.com/ParallaxProtocol/parallax/accounts"
27+
"github.com/ParallaxProtocol/parallax/accounts/external"
28+
"github.com/ParallaxProtocol/parallax/accounts/keystore"
29+
"github.com/ParallaxProtocol/parallax/common"
30+
"github.com/ParallaxProtocol/parallax/core/types"
31+
"github.com/ParallaxProtocol/parallax/crypto"
32+
"github.com/ParallaxProtocol/parallax/log"
3333
)
3434

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

accounts/abi/bind/backend.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121
"errors"
2222
"math/big"
2323

24-
"github.com/microstack-tech/parallax"
25-
"github.com/microstack-tech/parallax/common"
26-
"github.com/microstack-tech/parallax/core/types"
24+
"github.com/ParallaxProtocol/parallax"
25+
"github.com/ParallaxProtocol/parallax/common"
26+
"github.com/ParallaxProtocol/parallax/core/types"
2727
)
2828

2929
var (

accounts/abi/bind/backends/simulated.go

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ import (
2424
"sync"
2525
"time"
2626

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

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

accounts/abi/bind/backends/simulated_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ import (
2727
"testing"
2828
"time"
2929

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

4040
func TestSimulatedBackend(t *testing.T) {

accounts/abi/bind/base.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ import (
2424
"strings"
2525
"sync"
2626

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

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

accounts/abi/bind/base_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ import (
2424
"strings"
2525
"testing"
2626

27-
"github.com/microstack-tech/parallax"
28-
"github.com/microstack-tech/parallax/accounts/abi"
29-
"github.com/microstack-tech/parallax/accounts/abi/bind"
30-
"github.com/microstack-tech/parallax/common"
31-
"github.com/microstack-tech/parallax/common/hexutil"
32-
"github.com/microstack-tech/parallax/core/types"
33-
"github.com/microstack-tech/parallax/crypto"
34-
"github.com/microstack-tech/parallax/rlp"
27+
"github.com/ParallaxProtocol/parallax"
28+
"github.com/ParallaxProtocol/parallax/accounts/abi"
29+
"github.com/ParallaxProtocol/parallax/accounts/abi/bind"
30+
"github.com/ParallaxProtocol/parallax/common"
31+
"github.com/ParallaxProtocol/parallax/common/hexutil"
32+
"github.com/ParallaxProtocol/parallax/core/types"
33+
"github.com/ParallaxProtocol/parallax/crypto"
34+
"github.com/ParallaxProtocol/parallax/rlp"
3535
"github.com/stretchr/testify/assert"
3636
)
3737

accounts/abi/bind/bind.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// Package bind generates Parallax contract Go bindings.
1818
//
1919
// Detailed usage document and tutorial available on the go-ethereum Wiki page:
20-
// https://github.com/microstack-tech/parallax/wiki/Native-DApps:-Go-bindings-to-Parallax-contracts
20+
// https://github.com/ParallaxProtocol/parallax/wiki/Native-DApps:-Go-bindings-to-Parallax-contracts
2121
package bind
2222

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

33-
"github.com/microstack-tech/parallax/accounts/abi"
33+
"github.com/ParallaxProtocol/parallax/accounts/abi"
3434
)
3535

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

0 commit comments

Comments
 (0)