@zoralabs/protocol-deployments 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zoralabs/protocol-deployments",
3
- "version": "0.4.2",
3
+ "version": "0.5.0",
4
4
  "repository": "https://github.com/ourzora/zora-protocol",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -1586,12 +1586,6 @@ export const coinABI = [
1586
1586
  type: 'uint256',
1587
1587
  indexed: false,
1588
1588
  },
1589
- {
1590
- name: 'comment',
1591
- internalType: 'string',
1592
- type: 'string',
1593
- indexed: false,
1594
- },
1595
1589
  ],
1596
1590
  name: 'CoinBuy',
1597
1591
  },
@@ -1600,7 +1594,7 @@ export const coinABI = [
1600
1594
  anonymous: false,
1601
1595
  inputs: [
1602
1596
  {
1603
- name: 'creatorPayoutAddress',
1597
+ name: 'payoutRecipient',
1604
1598
  internalType: 'address',
1605
1599
  type: 'address',
1606
1600
  indexed: true,
@@ -1741,12 +1735,6 @@ export const coinABI = [
1741
1735
  type: 'uint256',
1742
1736
  indexed: false,
1743
1737
  },
1744
- {
1745
- name: 'comment',
1746
- internalType: 'string',
1747
- type: 'string',
1748
- indexed: false,
1749
- },
1750
1738
  ],
1751
1739
  name: 'CoinSell',
1752
1740
  },
@@ -1755,7 +1743,7 @@ export const coinABI = [
1755
1743
  anonymous: false,
1756
1744
  inputs: [
1757
1745
  {
1758
- name: 'creatorPayoutRecipient',
1746
+ name: 'payoutRecipient',
1759
1747
  internalType: 'address',
1760
1748
  type: 'address',
1761
1749
  indexed: true,
@@ -2141,13 +2129,7 @@ export const coinFactoryABI = [
2141
2129
  anonymous: false,
2142
2130
  inputs: [
2143
2131
  {
2144
- name: 'deployer',
2145
- internalType: 'address',
2146
- type: 'address',
2147
- indexed: true,
2148
- },
2149
- {
2150
- name: 'creator',
2132
+ name: 'caller',
2151
2133
  internalType: 'address',
2152
2134
  type: 'address',
2153
2135
  indexed: true,
@@ -2162,7 +2144,7 @@ export const coinFactoryABI = [
2162
2144
  name: 'platformReferrer',
2163
2145
  internalType: 'address',
2164
2146
  type: 'address',
2165
- indexed: false,
2147
+ indexed: true,
2166
2148
  },
2167
2149
  {
2168
2150
  name: 'currency',
@@ -2170,12 +2152,7 @@ export const coinFactoryABI = [
2170
2152
  type: 'address',
2171
2153
  indexed: false,
2172
2154
  },
2173
- {
2174
- name: 'tokenURI',
2175
- internalType: 'string',
2176
- type: 'string',
2177
- indexed: false,
2178
- },
2155
+ { name: 'uri', internalType: 'string', type: 'string', indexed: false },
2179
2156
  { name: 'name', internalType: 'string', type: 'string', indexed: false },
2180
2157
  {
2181
2158
  name: 'symbol',
@@ -2195,6 +2172,12 @@ export const coinFactoryABI = [
2195
2172
  type: 'address',
2196
2173
  indexed: false,
2197
2174
  },
2175
+ {
2176
+ name: 'version',
2177
+ internalType: 'string',
2178
+ type: 'string',
2179
+ indexed: false,
2180
+ },
2198
2181
  ],
2199
2182
  name: 'CoinCreated',
2200
2183
  },