From 56a9cc5bea06442471a9e47aa3bd9dbd32c1aaba Mon Sep 17 00:00:00 2001 From: jeffyanta Date: Wed, 13 May 2026 15:35:29 -0400 Subject: [PATCH] Update Core Mint name and description --- ocp/config/config.go | 4 ++-- ocp/rpc/currency/availability.go | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ocp/config/config.go b/ocp/config/config.go index d05741d..647e62a 100644 --- a/ocp/config/config.go +++ b/ocp/config/config.go @@ -14,9 +14,9 @@ const ( CoreMintPublicKeyString = usdf.Mint CoreMintQuarksPerUnit = uint64(usdf.QuarksPerUsdf) CoreMintDecimals = usdf.Decimals - CoreMintName = "USDF" + CoreMintName = "USD on Flipcash" CoreMintSymbol = "USDF" - CoreMintDescription = "USDF is a fully backed digital dollar created in partnership with Coinbase. USDF can be used to buy currencies on Flipcash, or can be withdrawn to any other crypto wallet that supports the Solana blockchain. USDF can also be sold, allowing you to move your funds into a traditional bank account." + CoreMintDescription = "A currency friends use to settle up after a night out. Simple, fast, and made for shared moments." SubsidizerPublicKey = "cash11ndAmdKFEnG2wrQQ5Zqvr1kN9htxxLyoPLYFUV" diff --git a/ocp/rpc/currency/availability.go b/ocp/rpc/currency/availability.go index 26db1fb..bb9b502 100644 --- a/ocp/rpc/currency/availability.go +++ b/ocp/rpc/currency/availability.go @@ -17,6 +17,7 @@ import ( var reservedCurrencyNames = []string{ common.CoreMintName, + common.CoreMintSymbol, } func (s *currencyServer) CheckAvailability(ctx context.Context, req *currencypb.CheckAvailabilityRequest) (*currencypb.CheckAvailabilityResponse, error) {