Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,21 @@ jobs:
ref: ${{ inputs.commit_branch }}
fetch-depth: 0
fetch-tags: true
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
# Configure SSH for private Go modules
- name: Setup SSH for private modules
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_KEY_B64 }}" | base64 -d > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan github.com >> ~/.ssh/known_hosts
# Build and push docker image
- name: Run go releaser
run: |
docker run --rm -e CGO_ENABLED -e GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} \
docker run --rm -e CGO_ENABLED -e GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} -e GOPRIVATE=github.com/xrplevm/evm-sec-papyrus\
-v /var/run/docker.sock:/var/run/docker.sock -v $PWD:/go/src/exrp -w /go/src/exrp \
goreleaser/goreleaser-cross:v1.22 release --clean --skip validate
-v ~/.ssh:/root/.ssh:ro \
--entrypoint /bin/sh \
goreleaser/goreleaser-cross:v1.22 -c \
'git config --global --add safe.directory /go/src/exrp && git config --global url."ssh://git@github.com/xrplevm/evm-sec-papyrus".insteadOf "https://github.com/xrplevm/evm-sec-papyrus" && goreleaser release --clean --skip validate'
26 changes: 8 additions & 18 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,12 @@ jobs:
- uses: actions/checkout@v2
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ github.job }}-${{ runner.os }}-${{ github.event.pull_request.number }}-buildx
restore-keys: |
${{ github.job }}-${{ runner.os }}-${{ github.event.pull_request.number }}-buildx
# Build docker image
- name: Build docker image
uses: docker/build-push-action@v4
with:
target: integration
push: false
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Move cache
if: always()
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
- name: Build docker image
uses: docker/build-push-action@v4
with:
context: .
target: integration
push: false
secrets: |
ssh_key_b64=${{ secrets.SSH_KEY_B64 }}
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ jobs:
tags: |
peersyst/exrp:${{ github.event.inputs.tag }}
${{ fromJSON('["", "peersyst/exrp:latest"]')[github.event.inputs.is_latest_release == 'true'] }}
secrets: |
ssh_key_b64=${{ secrets.SSH_KEY_B64 }}
- name: Publish the Release
uses: softprops/action-gh-release@v1
with:
Expand Down
14 changes: 12 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ RUN apt update && \
ca-certificates
WORKDIR /app
COPY . .

# Hotfix to allow download of private go module
ENV GOPRIVATE=github.com/xrplevm/evm-sec-papyrus
RUN mkdir -p ~/.ssh
RUN --mount=type=secret,id=ssh_key_b64 base64 -d -i /run/secrets/ssh_key_b64 > ~/.ssh/id_rsa
RUN chmod 600 ~/.ssh/id_rsa
RUN ssh-keyscan github.com >> ~/.ssh/known_hosts
RUN git config --global url."ssh://git@github.com/xrplevm/evm-sec-papyrus".insteadOf "https://github.com/xrplevm/evm-sec-papyrus"

RUN make install


Expand All @@ -21,8 +30,9 @@ RUN make test-poa
# Integration tests
RUN make test-integration
# Simulation tests
RUN make test-sim-benchmark-simulation
RUN make test-sim-full-app-fast
# TODO: Restore simulation tests if possible
# RUN make test-sim-benchmark-simulation
# RUN make test-sim-full-app-fast

RUN touch /test.lock

Expand Down
2 changes: 1 addition & 1 deletion app/ante/cosmos_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
evmante "github.com/cosmos/evm/ante/evm"
evmtypes "github.com/cosmos/evm/x/vm/types"
ibcante "github.com/cosmos/ibc-go/v10/modules/core/ante"
poaante "github.com/xrplevm/node/v9/x/poa/ante"
poaante "github.com/xrplevm/node/v10/x/poa/ante"

sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth/ante"
Expand Down
10 changes: 5 additions & 5 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"cosmossdk.io/core/appmodule"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/x/auth/posthandler"
"github.com/xrplevm/node/v9/app/ante"
"github.com/xrplevm/node/v10/app/ante"

"github.com/ethereum/go-ethereum/common"

Expand All @@ -26,15 +26,15 @@
paramproposal "github.com/cosmos/cosmos-sdk/x/params/types/proposal"

sdkmempool "github.com/cosmos/cosmos-sdk/types/mempool"
evmmempool "github.com/cosmos/evm/mempool"

Check failure on line 29 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:

evmante "github.com/cosmos/evm/ante"

Check failure on line 31 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:

antetypes "github.com/cosmos/evm/ante/types"

Check failure on line 33 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
evmaddress "github.com/cosmos/evm/encoding/address"

Check failure on line 34 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
precompiletypes "github.com/cosmos/evm/precompiles/types"

Check failure on line 35 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:

cosmosevmutils "github.com/cosmos/evm/utils"

Check failure on line 37 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
"github.com/cosmos/gogoproto/proto"
ratelimit "github.com/cosmos/ibc-apps/modules/rate-limiting/v10"
ratelimittypes "github.com/cosmos/ibc-apps/modules/rate-limiting/v10/types"
Expand All @@ -52,7 +52,7 @@
consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper"
consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types"
vmmod "github.com/cosmos/evm/x/vm"
"github.com/xrplevm/node/v9/x/poa"
"github.com/xrplevm/node/v10/x/poa"

"cosmossdk.io/log"
storetypes "cosmossdk.io/store/types"
Expand Down Expand Up @@ -123,13 +123,13 @@
ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper"

"github.com/xrplevm/node/v9/docs"
poakeeper "github.com/xrplevm/node/v9/x/poa/keeper"
poatypes "github.com/xrplevm/node/v9/x/poa/types"
"github.com/xrplevm/node/v10/docs"
poakeeper "github.com/xrplevm/node/v10/x/poa/keeper"
poatypes "github.com/xrplevm/node/v10/x/poa/types"

srvflags "github.com/cosmos/evm/server/flags"

Check failure on line 130 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:

"github.com/cosmos/evm/x/erc20"

Check failure on line 132 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
erc20keeper "github.com/cosmos/evm/x/erc20/keeper"
erc20types "github.com/cosmos/evm/x/erc20/types"
"github.com/cosmos/evm/x/feemarket"
Expand Down
8 changes: 4 additions & 4 deletions app/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import (
"cosmossdk.io/x/tx/signing"
"github.com/cosmos/cosmos-sdk/codec/address"
legacytypes "github.com/xrplevm/node/v9/types/legacy/ethermint/types"
legacytypes "github.com/xrplevm/node/v10/types/legacy/ethermint/types"

amino "github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/types"
Expand All @@ -12,16 +12,16 @@
"github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx"
"github.com/cosmos/cosmos-sdk/x/auth/tx"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
enccodec "github.com/cosmos/evm/encoding/codec"

Check failure on line 15 in app/encoding.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
"github.com/cosmos/evm/ethereum/eip712"

Check failure on line 16 in app/encoding.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.1: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
erc20types "github.com/cosmos/evm/x/erc20/types"
vmtypes "github.com/cosmos/evm/x/vm/types"
"github.com/cosmos/gogoproto/proto"
"google.golang.org/protobuf/reflect/protoreflect"

feemarketlegacytypes "github.com/xrplevm/node/v9/types/legacy/ethermint/feemarket"
erc20legacytypes "github.com/xrplevm/node/v9/types/legacy/evmos/erc20"
poalegacytypes "github.com/xrplevm/node/v9/x/poa/types/legacy"
feemarketlegacytypes "github.com/xrplevm/node/v10/types/legacy/ethermint/feemarket"
erc20legacytypes "github.com/xrplevm/node/v10/types/legacy/evmos/erc20"
poalegacytypes "github.com/xrplevm/node/v10/x/poa/types/legacy"
)

func MakeEncodingConfig(evmChainID uint64) sdktestutil.TestEncodingConfig {
Expand Down
4 changes: 2 additions & 2 deletions app/simulation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
evmante "github.com/cosmos/evm/ante"
antetypes "github.com/cosmos/evm/ante/types"
"github.com/cosmos/evm/crypto/ethsecp256k1"
"github.com/xrplevm/node/v9/app"
"github.com/xrplevm/node/v9/app/ante"
"github.com/xrplevm/node/v10/app"
"github.com/xrplevm/node/v10/app/ante"

dbm "github.com/cosmos/cosmos-db"
"github.com/cosmos/cosmos-sdk/baseapp"
Expand Down
12 changes: 6 additions & 6 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import (

storetypes "cosmossdk.io/store/types"
upgradetypes "cosmossdk.io/x/upgrade/types"
v10 "github.com/xrplevm/node/v9/app/upgrades/v10"
v9 "github.com/xrplevm/node/v9/app/upgrades/v9"
v10 "github.com/xrplevm/node/v10/app/upgrades/v10"
v9 "github.com/xrplevm/node/v10/app/upgrades/v9"

v5 "github.com/xrplevm/node/v9/app/upgrades/v5"
v6 "github.com/xrplevm/node/v9/app/upgrades/v6"
v7 "github.com/xrplevm/node/v9/app/upgrades/v7"
v8 "github.com/xrplevm/node/v9/app/upgrades/v8"
v5 "github.com/xrplevm/node/v10/app/upgrades/v5"
v6 "github.com/xrplevm/node/v10/app/upgrades/v6"
v7 "github.com/xrplevm/node/v10/app/upgrades/v7"
v8 "github.com/xrplevm/node/v10/app/upgrades/v8"
)

func (app *App) setupUpgradeHandlers() {
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/v9/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
erc20types "github.com/cosmos/evm/x/erc20/types"
evmtypes "github.com/cosmos/evm/x/vm/types"
"github.com/ethereum/go-ethereum/common"
legacyevmtypes "github.com/xrplevm/node/v9/types/legacy/ethermint/evm"
legacytypes "github.com/xrplevm/node/v9/types/legacy/ethermint/types"
legacyevmtypes "github.com/xrplevm/node/v10/types/legacy/ethermint/evm"
legacytypes "github.com/xrplevm/node/v10/types/legacy/ethermint/types"
)

func CreateUpgradeHandler(
Expand Down
2 changes: 1 addition & 1 deletion cmd/exrpd/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import (

evmclient "github.com/cosmos/evm/client"
ethermintservercfg "github.com/cosmos/evm/server/config"
"github.com/xrplevm/node/v9/app"
"github.com/xrplevm/node/v10/app"
)

type emptyAppOptions struct{}
Expand Down
4 changes: 2 additions & 2 deletions cmd/exrpd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"

"github.com/xrplevm/node/v9/app"
"github.com/xrplevm/node/v9/cmd/exrpd/cmd"
"github.com/xrplevm/node/v10/app"
"github.com/xrplevm/node/v10/cmd/exrpd/cmd"
)

func main() {
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/xrplevm/node/v9
module github.com/xrplevm/node/v10

go 1.23.8

Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/evm/v1/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
syntax = "proto3";
package ethermint.evm.v1;

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/evm";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/evm";

// EventEthereumTx defines the event for an Ethereum transaction
message EventEthereumTx {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/evm/v1/evm.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package ethermint.evm.v1;
import "amino/amino.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/evm";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/evm";

// Params defines the EVM module parameters
message Params {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/evm/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "amino/amino.proto";
import "ethermint/evm/v1/evm.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/evm";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/evm";

// GenesisState defines the evm module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/evm/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
import "google/protobuf/timestamp.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/evm";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/evm";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/evm/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
import "google/protobuf/any.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/evm";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/evm";

// Msg defines the evm Msg service.
service Msg {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/feemarket/v1/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
syntax = "proto3";
package ethermint.feemarket.v1;

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/feemarket";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/feemarket";

// EventFeeMarket is the event type for the fee market module
message EventFeeMarket {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/feemarket/v1/feemarket.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package ethermint.feemarket.v1;
import "amino/amino.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/feemarket";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/feemarket";

// Params defines the EVM module parameters
message Params {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/feemarket/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "amino/amino.proto";
import "ethermint/feemarket/v1/feemarket.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/feemarket";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/feemarket";

// GenesisState defines the feemarket module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/feemarket/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "ethermint/feemarket/v1/feemarket.proto";
import "gogoproto/gogo.proto";
import "google/api/annotations.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/feemarket";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/feemarket";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/feemarket/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import "cosmos_proto/cosmos.proto";
import "ethermint/feemarket/v1/feemarket.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/feemarket";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/feemarket";

// Msg defines the erc20 Msg service.
service Msg {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/types/v1/account.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "cosmos/auth/v1beta1/auth.proto";
import "cosmos_proto/cosmos.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/types";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/types";

// EthAccount implements the authtypes.AccountI interface and embeds an
// authtypes.BaseAccount type. It is compatible with the auth AccountKeeper.
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/types/v1/dynamic_fee.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package ethermint.types.v1;
import "amino/amino.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/types";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/types";

// ExtensionOptionDynamicFeeTx is an extension option that specifies the maxPrioPrice for cosmos tx
message ExtensionOptionDynamicFeeTx {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/types/v1/indexer.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package ethermint.types.v1;

import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/types";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/types";

// TxResult is the value stored in eth tx indexer
message TxResult {
Expand Down
2 changes: 1 addition & 1 deletion proto/ethermint/types/v1/web3.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package ethermint.types.v1;

import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/ethermint/types";
option go_package = "github.com/xrplevm/node/v10/types/legacy/ethermint/types";

// ExtensionOptionsWeb3Tx is an extension option that specifies the typed chain id,
// the fee payer as well as its signature data.
Expand Down
2 changes: 1 addition & 1 deletion proto/evmos/erc20/v1/erc20.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package evmos.erc20.v1;

import "cosmos/bank/v1beta1/bank.proto";
import "gogoproto/gogo.proto";
option go_package = "github.com/xrplevm/node/v9/types/legacy/evmos/erc20";
option go_package = "github.com/xrplevm/node/v10/types/legacy/evmos/erc20";

// Owner enumerates the ownership of a ERC20 contract.
enum Owner {
Expand Down
2 changes: 1 addition & 1 deletion proto/evmos/erc20/v1/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
syntax = "proto3";
package evmos.erc20.v1;

option go_package = "github.com/xrplevm/node/v9/types/legacy/evmos/erc20";
option go_package = "github.com/xrplevm/node/v10/types/legacy/evmos/erc20";

// EventRegisterPair is an event emitted when a coin is registered.
message EventRegisterPair {
Expand Down
2 changes: 1 addition & 1 deletion proto/evmos/erc20/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "amino/amino.proto";
import "evmos/erc20/v1/erc20.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/evmos/erc20";
option go_package = "github.com/xrplevm/node/v10/types/legacy/evmos/erc20";

// GenesisState defines the module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/evmos/erc20/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import "evmos/erc20/v1/genesis.proto";
import "gogoproto/gogo.proto";
import "google/api/annotations.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/evmos/erc20";
option go_package = "github.com/xrplevm/node/v10/types/legacy/evmos/erc20";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/evmos/erc20/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import "evmos/erc20/v1/genesis.proto";
import "gogoproto/gogo.proto";
import "google/api/annotations.proto";

option go_package = "github.com/xrplevm/node/v9/types/legacy/evmos/erc20";
option go_package = "github.com/xrplevm/node/v10/types/legacy/evmos/erc20";

// Msg defines the erc20 Msg service.
service Msg {
Expand Down
Loading