1
This commit is contained in:
parent
9904a9ed77
commit
ee7e7073c3
@ -16,15 +16,16 @@ func (this *NftDetailApi) Hero(c *gin.Context) {
|
|||||||
netId := q5.ToInt32(c.Param("netId"))
|
netId := q5.ToInt32(c.Param("netId"))
|
||||||
tokenId := c.Param("tokenId")
|
tokenId := c.Param("tokenId")
|
||||||
contractMeta := mt.Table.Contract.GetByNetIdName(netId, constant.CONTRACT_NAME_CFHero)
|
contractMeta := mt.Table.Contract.GetByNetIdName(netId, constant.CONTRACT_NAME_CFHero)
|
||||||
if contractMeta == nil {
|
contractAddress := ""
|
||||||
|
if contractMeta != nil {
|
||||||
|
contractAddress = contractMeta.GetAddress()
|
||||||
}
|
}
|
||||||
f5.GetHttpCliMgr().SendGoStyleRequest(
|
f5.GetHttpCliMgr().SendGoStyleRequest(
|
||||||
mt.Table.Config.GetGameApiUrl() + "/webapp/index.php",
|
mt.Table.Config.GetGameApiUrl() + "/webapp/index.php",
|
||||||
map[string]string{
|
map[string]string{
|
||||||
"c": "OutAppNft",
|
"c": "OutAppNft",
|
||||||
"a": "nftDetail",
|
"a": "nftDetail",
|
||||||
"nft_type": "hero",
|
"contract_address": contractAddress,
|
||||||
"net_id": q5.ToString(netId),
|
"net_id": q5.ToString(netId),
|
||||||
"token_id": tokenId,
|
"token_id": tokenId,
|
||||||
},
|
},
|
||||||
@ -34,15 +35,20 @@ func (this *NftDetailApi) Hero(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *NftDetailApi) GoldBullion(c *gin.Context) {
|
func (this *NftDetailApi) GoldBullion(c *gin.Context) {
|
||||||
netId := c.Param("netId")
|
netId := q5.ToInt32(c.Param("netId"))
|
||||||
tokenId := c.Param("tokenId")
|
tokenId := c.Param("tokenId")
|
||||||
|
contractMeta := mt.Table.Contract.GetByNetIdName(netId, constant.CONTRACT_NAME_CFHero)
|
||||||
|
contractAddress := ""
|
||||||
|
if contractMeta != nil {
|
||||||
|
contractAddress = contractMeta.GetAddress()
|
||||||
|
}
|
||||||
f5.GetHttpCliMgr().SendGoStyleRequest(
|
f5.GetHttpCliMgr().SendGoStyleRequest(
|
||||||
mt.Table.Config.GetGameApiUrl() + "/webapp/index.php",
|
mt.Table.Config.GetGameApiUrl() + "/webapp/index.php",
|
||||||
map[string]string{
|
map[string]string{
|
||||||
"c": "OutAppNft",
|
"c": "OutAppNft",
|
||||||
"a": "nftDetail",
|
"a": "nftDetail",
|
||||||
"nft_type": "gold_bullion",
|
"contract_address": contractAddress,
|
||||||
"net_id": netId,
|
"net_id": q5.ToString(netId),
|
||||||
"token_id": tokenId,
|
"token_id": tokenId,
|
||||||
},
|
},
|
||||||
func (rsp f5.HttpCliResponse) {
|
func (rsp f5.HttpCliResponse) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user