From 04889a9f43f268a6482244abca5ca96796fa98a6 Mon Sep 17 00:00:00 2001 From: theodore Date: Tue, 16 Jul 2024 19:38:13 +0800 Subject: [PATCH] feat: add ListedNFTTotalAmountMap --- contract/Forest/ForestContractState.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contract/Forest/ForestContractState.cs b/contract/Forest/ForestContractState.cs index c21a6ff..6e59878 100755 --- a/contract/Forest/ForestContractState.cs +++ b/contract/Forest/ForestContractState.cs @@ -53,6 +53,11 @@ public partial class ForestContractState : ContractState /// public MappedState OfferTotalAmountMap { get; set; } + /// + /// Collection Symbol -> User Address -> Listing Amount * decimal + /// + public MappedState ListedNFTTotalAmountMap { get; set; } + public SingletonState AIServiceFeeConfig { get; set; } public SingletonState
AIServiceFeeReceiver { get; set; }