Skip to content

Commit

Permalink
Merge pull request #215 from Totemancer/dev-v19
Browse files Browse the repository at this point in the history
Updated the denominator for the NFT collection deployment example
  • Loading branch information
xssnick authored Jul 15, 2024
2 parents 98d6ede + 4cb1aff commit 5cbfaac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/deploy-nft-collection/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ func getContractData(collectionOwnerAddr, royaltyAddr *address.Address) *cell.Ce
// = Storage;

royalty := cell.BeginCell().
MustStoreUInt(50, 16). // 5% royalty
MustStoreUInt(1000, 16).
MustStoreAddr(royaltyAddr).
MustStoreUInt(5, 16). // 5% royalty
MustStoreUInt(100, 16). // denominator
MustStoreAddr(royaltyAddr). // fee addr destination
EndCell()

// collection data
Expand Down

0 comments on commit 5cbfaac

Please sign in to comment.