From 21361cf8d33b44964e27b3d02cda47a225c90154 Mon Sep 17 00:00:00 2001 From: kienn6034 Date: Wed, 27 Dec 2023 17:04:39 +0700 Subject: [PATCH] chore: add terra core token factory module --- go.mod | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go.mod b/go.mod index 6c0a4d12..99db9b70 100644 --- a/go.mod +++ b/go.mod @@ -21,6 +21,7 @@ require ( github.com/strangelove-ventures/packet-forward-middleware/v7 v7.0.0-20230523193151-73dea436e53f github.com/stretchr/testify v1.8.4 github.com/terra-money/alliance v0.2.2 + github.com/classic-terra/core/v2 v2.5.0 ) require ( @@ -205,4 +206,7 @@ replace ( github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.0 // Downgraded to avoid bugs in following commits which caused simulations to fail. github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 + + // Use terra core 2.5.0 + github.com/classic-terra/core/v2 => github.com/terra-money/core/v2 v2.5.0 )