@zoralabs/protocol-deployments 0.4.2 → 0.5.1

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.1",
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,
@@ -2079,7 +2067,10 @@ export const coinFactoryABI = [
2079
2067
  { name: 'orderSize', internalType: 'uint256', type: 'uint256' },
2080
2068
  ],
2081
2069
  name: 'deploy',
2082
- outputs: [{ name: '', internalType: 'address', type: 'address' }],
2070
+ outputs: [
2071
+ { name: '', internalType: 'address', type: 'address' },
2072
+ { name: '', internalType: 'uint256', type: 'uint256' },
2073
+ ],
2083
2074
  stateMutability: 'payable',
2084
2075
  },
2085
2076
  {
@@ -2141,13 +2132,7 @@ export const coinFactoryABI = [
2141
2132
  anonymous: false,
2142
2133
  inputs: [
2143
2134
  {
2144
- name: 'deployer',
2145
- internalType: 'address',
2146
- type: 'address',
2147
- indexed: true,
2148
- },
2149
- {
2150
- name: 'creator',
2135
+ name: 'caller',
2151
2136
  internalType: 'address',
2152
2137
  type: 'address',
2153
2138
  indexed: true,
@@ -2162,7 +2147,7 @@ export const coinFactoryABI = [
2162
2147
  name: 'platformReferrer',
2163
2148
  internalType: 'address',
2164
2149
  type: 'address',
2165
- indexed: false,
2150
+ indexed: true,
2166
2151
  },
2167
2152
  {
2168
2153
  name: 'currency',
@@ -2170,12 +2155,7 @@ export const coinFactoryABI = [
2170
2155
  type: 'address',
2171
2156
  indexed: false,
2172
2157
  },
2173
- {
2174
- name: 'tokenURI',
2175
- internalType: 'string',
2176
- type: 'string',
2177
- indexed: false,
2178
- },
2158
+ { name: 'uri', internalType: 'string', type: 'string', indexed: false },
2179
2159
  { name: 'name', internalType: 'string', type: 'string', indexed: false },
2180
2160
  {
2181
2161
  name: 'symbol',
@@ -2195,6 +2175,12 @@ export const coinFactoryABI = [
2195
2175
  type: 'address',
2196
2176
  indexed: false,
2197
2177
  },
2178
+ {
2179
+ name: 'version',
2180
+ internalType: 'string',
2181
+ type: 'string',
2182
+ indexed: false,
2183
+ },
2198
2184
  ],
2199
2185
  name: 'CoinCreated',
2200
2186
  },