Skip to content

Commit

Permalink
change repository from github/ian to github/tn606024
Browse files Browse the repository at this point in the history
  • Loading branch information
tn606024 committed Aug 21, 2020
1 parent 1ebcbb8 commit afbee8d
Show file tree
Hide file tree
Showing 25 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion cmd/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/ian/ethwallet/cmd"
"github.com/tn606024/ethwallet/cmd"
"github.com/urfave/cli/v2"
"os"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/nodecmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cmd
import (
"encoding/json"
"fmt"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/wallet"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/wallet"
"github.com/urfave/cli/v2"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/nodewalletcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmd

import (
"fmt"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/utils"
"github.com/urfave/cli/v2"
"math/big"
"os"
Expand Down
2 changes: 1 addition & 1 deletion cmd/servercmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmd

import (
"fmt"
"github.com/ian/ethwallet/server"
"github.com/tn606024/ethwallet/server"
"github.com/urfave/cli/v2"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package cmd
import (
"fmt"
"github.com/ethereum/go-ethereum/common"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/utils"
"github.com/ian/ethwallet/wallet"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/utils"
"github.com/tn606024/ethwallet/wallet"
"github.com/urfave/cli/v2"
"golang.org/x/crypto/ssh/terminal"
"io/ioutil"
Expand Down
6 changes: 3 additions & 3 deletions cmd/walletcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"encoding/json"
"fmt"
"github.com/ethereum/go-ethereum/common"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/utils"
"github.com/ian/ethwallet/wallet"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/utils"
"github.com/tn606024/ethwallet/wallet"
"github.com/urfave/cli/v2"
"os"
)
Expand Down
4 changes: 2 additions & 2 deletions conn/ethconn.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"encoding/json"
"fmt"
"github.com/ethereum/go-ethereum/common"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/utils"
"io/ioutil"
"math/big"
"net/http"
Expand Down
4 changes: 2 additions & 2 deletions ethclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bytes"
"encoding/json"
"fmt"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/utils"
"io/ioutil"
"net/http"
"sync"
Expand Down
4 changes: 2 additions & 2 deletions ethclient/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package ethclient
import (
"encoding/hex"
"github.com/ethereum/go-ethereum/common"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/utils"
"math/big"
"sync"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ian/ethwallet
module github.com/tn606024/ethwallet

go 1.14

Expand Down
2 changes: 1 addition & 1 deletion rlp/rlp.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package rlp

import "github.com/ian/ethwallet/utils"
import "github.com/tn606024/ethwallet/utils"

type Offset struct {
short byte
Expand Down
6 changes: 3 additions & 3 deletions server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package server
import (
"fmt"
"github.com/gin-gonic/gin"
"github.com/ian/ethwallet/ethclient"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/ethclient"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/utils"
"net/http"
"os"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion tests/abi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package tests

import (
"bytes"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/utils"
"testing"
)

Expand Down
4 changes: 2 additions & 2 deletions tests/ethconn_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package tests

import (
"github.com/ian/ethwallet/conn"
"github.com/ian/ethwallet/server"
"github.com/tn606024/ethwallet/conn"
"github.com/tn606024/ethwallet/server"
"net/http/httptest"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions tests/request_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package tests

import (
"fmt"
"github.com/ian/ethwallet/ethclient"
"github.com/ian/ethwallet/types"
"github.com/tn606024/ethwallet/ethclient"
"github.com/tn606024/ethwallet/types"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion tests/rlp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package tests

import (
"bytes"
"github.com/ian/ethwallet/rlp"
"github.com/tn606024/ethwallet/rlp"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion tests/testdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package tests

import (
"github.com/ethereum/go-ethereum/common"
"github.com/ian/ethwallet/types"
"github.com/tn606024/ethwallet/types"
)
var (
TestNetwork = types.RopstenNet
Expand Down
6 changes: 3 additions & 3 deletions tests/wallet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package tests

import (
"fmt"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/utils"
"github.com/ian/ethwallet/wallet"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/utils"
"github.com/tn606024/ethwallet/wallet"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion types/erc20.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package types
import (
"encoding/json"
"github.com/ethereum/go-ethereum/common"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/utils"
"math/big"
)

Expand Down
2 changes: 1 addition & 1 deletion types/param.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package types

import (
"fmt"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/utils"
)

type BlockParam string
Expand Down
6 changes: 3 additions & 3 deletions types/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package types
import (
"encoding/json"
"github.com/ethereum/go-ethereum/common"
"github.com/ian/ethwallet/crypto"
"github.com/ian/ethwallet/rlp"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/crypto"
"github.com/tn606024/ethwallet/rlp"
"github.com/tn606024/ethwallet/utils"
"math/big"
)

Expand Down
2 changes: 1 addition & 1 deletion types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/hex"
"encoding/json"
"fmt"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/utils"
"io/ioutil"
"math/big"
"os"
Expand Down
2 changes: 1 addition & 1 deletion utils/abi.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package utils
import (
"fmt"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ian/ethwallet/crypto"
"github.com/tn606024/ethwallet/crypto"
"reflect"
"strings"
)
Expand Down
4 changes: 2 additions & 2 deletions wallet/key.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"crypto/rand"
"fmt"
"github.com/ethereum/go-ethereum/accounts/keystore"
"github.com/ian/ethwallet/crypto"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/crypto"
"github.com/tn606024/ethwallet/utils"
"github.com/pborman/uuid"
"io/ioutil"
"os"
Expand Down
8 changes: 4 additions & 4 deletions wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package wallet
import (
"fmt"
"github.com/ethereum/go-ethereum/common"
"github.com/ian/ethwallet/conn"
"github.com/ian/ethwallet/crypto"
"github.com/ian/ethwallet/types"
"github.com/ian/ethwallet/utils"
"github.com/tn606024/ethwallet/conn"
"github.com/tn606024/ethwallet/crypto"
"github.com/tn606024/ethwallet/types"
"github.com/tn606024/ethwallet/utils"
"math/big"
)

Expand Down

0 comments on commit afbee8d

Please sign in to comment.