diff --git a/go.mod b/go.mod index 1e26d969..0dc1f112 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/ava-labs/avalanchego v1.11.1 github.com/ava-labs/coreth v0.13.0-rc.0 github.com/ava-labs/subnet-evm v0.6.1 - github.com/ava-labs/teleporter v0.2.0 + github.com/ava-labs/teleporter v1.0.0 github.com/ethereum/go-ethereum v1.12.0 github.com/onsi/ginkgo/v2 v2.16.0 github.com/onsi/gomega v1.31.1 diff --git a/go.sum b/go.sum index 7873d18d..da4a4f6c 100644 --- a/go.sum +++ b/go.sum @@ -70,8 +70,8 @@ github.com/ava-labs/coreth v0.13.0-rc.0 h1:V2l3qj2ek3geKDJAnF2M94mYJK8kg2kePixuj github.com/ava-labs/coreth v0.13.0-rc.0/go.mod h1:eUMbBLDhlZASJjcbf0gIcD2GMn2rRRCUxC8MXLt5QQk= github.com/ava-labs/subnet-evm v0.6.1 h1:NyknPPWBKGN9VIwfKi1+oR6NpvephiNkWEwzjGcNLkA= github.com/ava-labs/subnet-evm v0.6.1/go.mod h1:PRwf9C3KgXzrANnrCvKa/gQVvIBomKzQgZM2ucECGYE= -github.com/ava-labs/teleporter v0.2.0 h1:X0jcwyJbtiWN76UjK3ddpo3kMaxRhMWXh9ElBh6UltI= -github.com/ava-labs/teleporter v0.2.0/go.mod h1:0OW9hYMTD96PWVRKdX8X76Cb6K2qUAdITT3UdD2/w+g= +github.com/ava-labs/teleporter v1.0.0 h1:io209qZh3SDpwLre0oStMzOFRcPvOrmMQuLq5OFvzJo= +github.com/ava-labs/teleporter v1.0.0/go.mod h1:4Wyz/5sZDHMaaLegh2ULyrAOWnyaBk6upTmbwSrVSMs= github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= diff --git a/sample-relayer-config.json b/sample-relayer-config.json index 041ea78c..0880457c 100644 --- a/sample-relayer-config.json +++ b/sample-relayer-config.json @@ -9,7 +9,7 @@ "rpc-endpoint": "https://api.avax-test.network/ext/bc/C/rpc", "ws-endpoint": "wss://api.avax-test.network/ext/bc/C/ws", "message-contracts": { - "0xF7cBd95f1355f0d8d659864b92e2e9fbfaB786f7": { + "0x253b2784c75e510dD0fF1da844684a1aC0aa5fcf": { "message-format": "teleporter", "settings": { "reward-address": "0x5072..." diff --git a/scripts/versions.sh b/scripts/versions.sh index eae7243e..3ce6f927 100755 --- a/scripts/versions.sh +++ b/scripts/versions.sh @@ -3,7 +3,7 @@ # See the file LICENSE for licensing terms. # The go version for this project is set from a combination of major.minor from go.mod and the patch version set here. -GO_PATCH_VERSION=7 +GO_PATCH_VERSION=8 RELAYER_PATH=$( cd "$(dirname "${BASH_SOURCE[0]}")"