Skip to content

Commit fdd68b0

Browse files
Version Packages (#1383)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent aca0b8a commit fdd68b0

File tree

14 files changed

+141
-72
lines changed

14 files changed

+141
-72
lines changed

.changeset/brave-buttons-shake.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/mighty-mugs-hunt.md

Lines changed: 0 additions & 51 deletions
This file was deleted.

.changeset/zora-incentive.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/pages/changelogs/coins-sdk.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Coins SDK Changelog
22

33

4+
## 0.3.1
5+
6+
### Patch Changes
7+
8+
- [1bd2452c](https://github.com/ourzora/zora-protocol/commit/1bd2452c): Fix chainId default setting logic
9+
410
## 0.3.0
511

612
### Minor Changes

docs/pages/changelogs/coins.mdx

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,58 @@
11
# Coins Changelog
22

33

4+
## 2.2.0
5+
6+
### Minor Changes
7+
8+
- [adf98059](https://github.com/ourzora/zora-protocol/commit/adf98059): Adds platform referral and trade referral functionality to creator coins, and unifies the fee structure between content and creator coins with a simplified 1% total fee.
9+
10+
**New Features:**
11+
12+
- Platform referral and trade referral functionality for creator coins (previously only supported on content coins)
13+
- Unified fee structure: Both content and creator coins use identical 1% fee distribution
14+
15+
**Fee Structure Changes:**
16+
17+
**Before (Content Coins - 3% total fee):**
18+
| Recipient | % of Market Rewards | % of Total Fees |
19+
| --------------- | ------------------- | --------------- |
20+
| Creator | 50% | 33.33% |
21+
| Create Referral | 15% | 10% |
22+
| Trade Referral | 15% | 10% |
23+
| Doppler | 5% | 3.33% |
24+
| Protocol | 15% | 10% |
25+
| --------------- | ------------------- | --------------- |
26+
| LP Rewards | - | 33.33% |
27+
28+
**Before (Creator Coins - 3% total fee):**
29+
| Recipient | % of Market Rewards | % of Total Fees |
30+
| --------------- | ------------------- | --------------- |
31+
| Creator | 50% | 33.33% |
32+
| Protocol | 50% | 33.33% |
33+
| --------------- | ------------------- | --------------- |
34+
| LP Rewards | - | 33.33% |
35+
36+
**After (All Coins - 1% total fee):**
37+
| Recipient | % of Market Rewards | % of Total Fee |
38+
| ----------------- | ------------------- | -------------- |
39+
| Creator | 62.5% | 50% |
40+
| Platform Referral | 25% | 20% |
41+
| Trade Referral | 5% | 4% |
42+
| Doppler | 1.25% | 1% |
43+
| Protocol | 6.25% | 5% |
44+
| ----------------- | ------------------- | -------------- |
45+
| LP Rewards | - | 20% |
46+
47+
**Implementation Changes:**
48+
49+
- Consolidated reward logic into `CoinRewardsV4.distributeMarketRewards()`
50+
51+
**Backwards Compatibility:**
52+
53+
- Existing `CreatorCoinRewards` event is still emitted for backwards compatibility when rewards are distributed for a CreatorCoin
54+
- Additionally, when market rewards are distributed for a CreatorCoin, the same `CoinMarketRewardsV4` event that is already emitted for ContentCoins is now also emitted
55+
456
## 2.1.2
557

658
### Patch Changes

nft-docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# nft-docs
22

3+
## 0.0.31
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [1bd2452c]
8+
- @zoralabs/coins-sdk@0.3.1
9+
310
## 0.0.30
411

512
### Patch Changes

nft-docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nft-docs",
3-
"version": "0.0.30",
3+
"version": "0.0.31",
44
"type": "module",
55
"private": true,
66
"scripts": {

packages/coins-sdk/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @zoralabs/coins-sdk
22

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- 1bd2452c: Fix chainId default setting logic
8+
39
## 0.3.0
410

511
### Minor Changes

packages/coins-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zoralabs/coins-sdk",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"repository": "https://github.com/ourzora/zora-protocol",
55
"license": "MIT",
66
"type": "module",

packages/coins/CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
11
# @zoralabs/coins
22

3+
## 2.2.0
4+
5+
### Minor Changes
6+
7+
- adf98059: Adds platform referral and trade referral functionality to creator coins, and unifies the fee structure between content and creator coins with a simplified 1% total fee.
8+
9+
**New Features:**
10+
11+
- Platform referral and trade referral functionality for creator coins (previously only supported on content coins)
12+
- Unified fee structure: Both content and creator coins use identical 1% fee distribution
13+
14+
**Fee Structure Changes:**
15+
16+
**Before (Content Coins - 3% total fee):**
17+
| Recipient | % of Market Rewards | % of Total Fees |
18+
| --------------- | ------------------- | --------------- |
19+
| Creator | 50% | 33.33% |
20+
| Create Referral | 15% | 10% |
21+
| Trade Referral | 15% | 10% |
22+
| Doppler | 5% | 3.33% |
23+
| Protocol | 15% | 10% |
24+
| --------------- | ------------------- | --------------- |
25+
| LP Rewards | - | 33.33% |
26+
27+
**Before (Creator Coins - 3% total fee):**
28+
| Recipient | % of Market Rewards | % of Total Fees |
29+
| --------------- | ------------------- | --------------- |
30+
| Creator | 50% | 33.33% |
31+
| Protocol | 50% | 33.33% |
32+
| --------------- | ------------------- | --------------- |
33+
| LP Rewards | - | 33.33% |
34+
35+
**After (All Coins - 1% total fee):**
36+
| Recipient | % of Market Rewards | % of Total Fee |
37+
| ----------------- | ------------------- | -------------- |
38+
| Creator | 62.5% | 50% |
39+
| Platform Referral | 25% | 20% |
40+
| Trade Referral | 5% | 4% |
41+
| Doppler | 1.25% | 1% |
42+
| Protocol | 6.25% | 5% |
43+
| ----------------- | ------------------- | -------------- |
44+
| LP Rewards | - | 20% |
45+
46+
**Implementation Changes:**
47+
48+
- Consolidated reward logic into `CoinRewardsV4.distributeMarketRewards()`
49+
50+
**Backwards Compatibility:**
51+
52+
- Existing `CreatorCoinRewards` event is still emitted for backwards compatibility when rewards are distributed for a CreatorCoin
53+
- Additionally, when market rewards are distributed for a CreatorCoin, the same `CoinMarketRewardsV4` event that is already emitted for ContentCoins is now also emitted
54+
355
## 2.1.2
456

557
### Patch Changes

0 commit comments

Comments
 (0)