Skip to content

Commit fbdb3c5

Browse files
fix wrong package path
1 parent 3d803f2 commit fbdb3c5

28 files changed

+78
-52
lines changed

actions/action_bytecode_scan.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ package actions
33
import (
44
"bytes"
55
"context"
6-
"evm-trackooor/shared"
76
"fmt"
87
"os"
98
"sync"
109

10+
"github.com/Zellic/EVM-trackooor/shared"
11+
1112
"github.com/ethereum/go-ethereum/common"
1213
)
1314

actions/action_erc20.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
package actions
22

33
import (
4-
discordwebhook "evm-trackooor/discord-webhook"
5-
"evm-trackooor/shared"
6-
"evm-trackooor/utils"
74
"fmt"
85
"log/slog"
96
"math/big"
@@ -12,6 +9,10 @@ import (
129
"sync"
1310
"time"
1411

12+
discordwebhook "github.com/Zellic/EVM-trackooor/discord-webhook"
13+
"github.com/Zellic/EVM-trackooor/shared"
14+
"github.com/Zellic/EVM-trackooor/utils"
15+
1516
"github.com/ethereum/go-ethereum/common"
1617
"github.com/ethereum/go-ethereum/core/types"
1718
)

actions/action_graph.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package actions
22

33
import (
4-
"evm-trackooor/shared"
5-
"evm-trackooor/utils"
64
"fmt"
75
"log"
86
"math/big"
@@ -11,6 +9,9 @@ import (
119
"slices"
1210
"sync"
1311

12+
"github.com/Zellic/EVM-trackooor/shared"
13+
"github.com/Zellic/EVM-trackooor/utils"
14+
1415
"github.com/dominikbraun/graph"
1516
"github.com/dominikbraun/graph/draw"
1617
"github.com/ethereum/go-ethereum/common"

actions/action_logging.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ package actions
22

33
import (
44
"encoding/hex"
5-
discordwebhook "evm-trackooor/discord-webhook"
6-
"evm-trackooor/shared"
7-
"evm-trackooor/utils"
85
"fmt"
96
"log"
107
"log/slog"
118
"strconv"
129
"strings"
1310
"time"
1411

12+
discordwebhook "github.com/Zellic/EVM-trackooor/discord-webhook"
13+
"github.com/Zellic/EVM-trackooor/shared"
14+
"github.com/Zellic/EVM-trackooor/utils"
15+
1516
"github.com/ethereum/go-ethereum/core/types"
1617
)
1718

actions/action_monitor_transfers.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
package actions
22

33
import (
4-
"evm-trackooor/shared"
5-
"evm-trackooor/utils"
64
"fmt"
75
"math/big"
86
"slices"
97

8+
"github.com/Zellic/EVM-trackooor/shared"
9+
"github.com/Zellic/EVM-trackooor/utils"
10+
1011
"github.com/ethereum/go-ethereum/common"
1112
)
1213

actions/action_ownershiptransfer.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
package actions
22

33
import (
4-
"evm-trackooor/shared"
5-
"evm-trackooor/utils"
64
"fmt"
75
"log"
86
"math/big"
97
"strconv"
108

9+
"github.com/Zellic/EVM-trackooor/shared"
10+
"github.com/Zellic/EVM-trackooor/utils"
11+
1112
"github.com/ethereum/go-ethereum/common"
1213
)
1314

actions/action_proxy_upgrades.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ package actions
22

33
import (
44
"context"
5-
"evm-trackooor/shared"
6-
"evm-trackooor/utils"
75
"fmt"
86
"log"
97
"strconv"
108

9+
"github.com/Zellic/EVM-trackooor/shared"
10+
"github.com/Zellic/EVM-trackooor/utils"
11+
1112
"github.com/ethereum/go-ethereum/common"
1213
)
1314

actions/action_send_transaction.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ package actions
33
import (
44
"context"
55
"crypto/ecdsa"
6-
"evm-trackooor/shared"
76
"fmt"
87
"log"
98
"math/big"
109

10+
"github.com/Zellic/EVM-trackooor/shared"
11+
1112
"github.com/ethereum/go-ethereum/common"
1213
"github.com/ethereum/go-ethereum/core/types"
1314
"github.com/ethereum/go-ethereum/crypto"

actions/action_tethertrack.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
package actions
22

33
import (
4-
"evm-trackooor/utils"
54
"fmt"
65
"math/big"
76

7+
"github.com/Zellic/EVM-trackooor/utils"
8+
89
"github.com/ethereum/go-ethereum/common"
910
)
1011

actions/action_tornado_funded_exploits.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ package actions
33
import (
44
"encoding/json"
55
"errors"
6-
"evm-trackooor/shared"
7-
"evm-trackooor/utils"
86
"fmt"
97
"log"
108
"math/big"
@@ -15,6 +13,9 @@ import (
1513
"sync"
1614
"time"
1715

16+
"github.com/Zellic/EVM-trackooor/shared"
17+
"github.com/Zellic/EVM-trackooor/utils"
18+
1819
"github.com/dominikbraun/graph"
1920
"github.com/dominikbraun/graph/draw"
2021
"github.com/ethereum/go-ethereum/common"

0 commit comments

Comments
 (0)