Skip to content

Commit af49c4e

Browse files
committed
feat(sdk): adds deployMarketplaceContract
1 parent eded4ff commit af49c4e

File tree

2 files changed

+259
-218
lines changed

2 files changed

+259
-218
lines changed

.changeset/famous-peaches-camp.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
"thirdweb": minor
3+
---
4+
5+
Feature: Adds deployMarketplaceContract
6+
7+
```ts
8+
9+
import { deployMarketplaceContract } from "thirdweb/deploys";
10+
11+
const address = await deployMarketplaceContract({
12+
client,
13+
chain,
14+
account,
15+
params: {
16+
name: "MarketplaceV3",
17+
description: "MarketplaceV3 deployed using thirdweb SDK",
18+
platformFeeRecipient: "0x21d514c90ee4E4e4Cd16Ce9185BF01F0F1eE4A04",
19+
platformFeeBps: 1000,
20+
}
21+
});
22+
```

0 commit comments

Comments
 (0)