Skip to content

Commit

Permalink
fix missing transferable arg / add permabrawl tag
Browse files Browse the repository at this point in the history
  • Loading branch information
NickJ202 committed Feb 13, 2025
1 parent 7cd98ec commit 73b6637
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@irys/sdk": "^0.1.0-a1",
"@othent/kms": "^1.0.12",
"@permaweb/aoconnect": "0.0.51",
"@permaweb/libs": "0.0.23",
"@permaweb/libs": "^0.0.23",
"@permaweb/stampjs": "0.6.1",
"@permaweb/ucm": "^0.0.6",
"@stripe/react-stripe-js": "^2.4.0",
Expand Down
3 changes: 2 additions & 1 deletion src/views/Upload/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,13 @@ export default function Upload() {
const asset: any = {
name: assetName,
description: assetDescription,
topics: uploadReducer.data.topics,
topics: [...uploadReducer.data.topics, 'permabrawl-test'],
creator: arProvider.profile.id,
data: buffer,
contentType: contentType,
assetType: contentType,
supply: assetSupply,
transferable: uploadReducer.data.transferableTokens,
};

if (collectionId) asset.metadata = { collectionId };
Expand Down

0 comments on commit 73b6637

Please sign in to comment.