@@ -87,7 +87,7 @@ func (s *currencyServer) GetMints(ctx context.Context, req *currencypb.GetMintsR
8787 Decimals : uint32 (common .CoreMintDecimals ),
8888 Name : common .CoreMintName ,
8989 Symbol : strings .ToUpper (string (common .CoreMintSymbol )),
90- VmMetadata : & currencypb.VmMintMetadata {
90+ VmMetadata : & currencypb.VmMetadata {
9191 Vm : common .CodeVmAccount .ToProto (),
9292 Authority : common .GetSubsidizer ().ToProto (),
9393 LockDurationInDays : 21 ,
@@ -133,7 +133,7 @@ func (s *currencyServer) GetMints(ctx context.Context, req *currencypb.GetMintsR
133133 log .WithError (err ).Warn ("invalid mint vault account" )
134134 return nil , status .Error (codes .Internal , "" )
135135 }
136- coreMintVaulttAccount , err := common .NewAccountFromPublicKeyString (metadataRecord .VaultCore )
136+ coreMintVaultAccount , err := common .NewAccountFromPublicKeyString (metadataRecord .VaultCore )
137137 if err != nil {
138138 log .WithError (err ).Warn ("invalid core mint vault account" )
139139 return nil , status .Error (codes .Internal , "" )
@@ -153,18 +153,18 @@ func (s *currencyServer) GetMints(ctx context.Context, req *currencypb.GetMintsR
153153 Decimals : uint32 (metadataRecord .Decimals ),
154154 Name : metadataRecord .Name ,
155155 Symbol : metadataRecord .Symbol ,
156- VmMetadata : & currencypb.VmMintMetadata {
156+ VmMetadata : & currencypb.VmMetadata {
157157 Vm : vmAccount .ToProto (),
158158 Authority : vmAuthorityAccount .ToProto (),
159159 LockDurationInDays : uint32 (timelock_token .DefaultNumDaysLocked ),
160160 },
161- CurrencyCreatorMetadata : & currencypb.CurrencyCreatorMintMetadata {
161+ LaunchpadMetadata : & currencypb.LaunchpadMetadata {
162162 CurrencyConfig : currencyConfigAccount .ToProto (),
163163 LiquidityPool : liquidityPoolAccount .ToProto (),
164164 Seed : seed .ToProto (),
165165 Authority : currencyAuthorityAccount .ToProto (),
166166 MintVault : mintVaultAccount .ToProto (),
167- CoreMintVault : coreMintVaulttAccount .ToProto (),
167+ CoreMintVault : coreMintVaultAccount .ToProto (),
168168 CoreMintFees : coreMintFeesAccount .ToProto (),
169169 SupplyFromBonding : reserveRecord .SupplyFromBonding ,
170170 CoreMintLocked : reserveRecord .CoreMintLocked ,
0 commit comments