diff --git a/app/navs_mainnet.go b/app/navs_mainnet.go index d13b9c68b2..3e6bc51a4f 100644 --- a/app/navs_mainnet.go +++ b/app/navs_mainnet.go @@ -6,7 +6,10 @@ import ( markertypes "github.com/provenance-io/provenance/x/marker/types" ) -func GetDenomToNav() map[string]markertypes.NetAssetValue { +// GetPioMainnet1DenomToNav are net asset values for the pio-mainnet-1 taken at blockheight 13631650 +// Source: https://figure.tech/service-pricing-engine/external/api/v1/pricing/marker/new?time=2023-11-07T17:59:59.999722Z +// NOTE: These should not be ran against any other network but pio-mainnet-1 +func GetPioMainnet1DenomToNav() map[string]markertypes.NetAssetValue { return map[string]markertypes.NetAssetValue{ "pm.participation.agreement.1bcslgccejhm9v3higsx7c": markertypes.NewNetAssetValue(types.NewInt64Coin(markertypes.UsdDenom, 1037949704), 1), "pm.participation.agreement.1cag7ztnmm4rdbbtwdrodb": markertypes.NewNetAssetValue(types.NewInt64Coin(markertypes.UsdDenom, 788900239), 1), diff --git a/app/upgrades.go b/app/upgrades.go index abd8663be8..56739f8c95 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -165,7 +165,7 @@ var upgrades = map[string]appUpgrade{ setupICQ(ctx, app) updateMaxSupply(ctx, app) - addMarkerNavs(ctx, app, GetDenomToNav()) + addMarkerNavs(ctx, app, GetPioMainnet1DenomToNav()) setExchangeParams(ctx, app) updateIbcMarkerDenomMetadata(ctx, app)