@zoralabs/protocol-deployments 0.4.1 → 0.4.2

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/dist/index.js CHANGED
@@ -1998,6 +1998,259 @@ var coinABI = [
1998
1998
  { type: "error", inputs: [], name: "SlippageBoundsExceeded" },
1999
1999
  { type: "error", inputs: [], name: "UseRevokeOwnershipToRemoveSelf" }
2000
2000
  ];
2001
+ var coinFactoryABI = [
2002
+ {
2003
+ type: "constructor",
2004
+ inputs: [{ name: "_coinImpl", internalType: "address", type: "address" }],
2005
+ stateMutability: "nonpayable"
2006
+ },
2007
+ {
2008
+ type: "function",
2009
+ inputs: [],
2010
+ name: "UPGRADE_INTERFACE_VERSION",
2011
+ outputs: [{ name: "", internalType: "string", type: "string" }],
2012
+ stateMutability: "view"
2013
+ },
2014
+ {
2015
+ type: "function",
2016
+ inputs: [],
2017
+ name: "coinImpl",
2018
+ outputs: [{ name: "", internalType: "address", type: "address" }],
2019
+ stateMutability: "view"
2020
+ },
2021
+ {
2022
+ type: "function",
2023
+ inputs: [
2024
+ { name: "payoutRecipient", internalType: "address", type: "address" },
2025
+ { name: "owners", internalType: "address[]", type: "address[]" },
2026
+ { name: "uri", internalType: "string", type: "string" },
2027
+ { name: "name", internalType: "string", type: "string" },
2028
+ { name: "symbol", internalType: "string", type: "string" },
2029
+ { name: "platformReferrer", internalType: "address", type: "address" },
2030
+ { name: "currency", internalType: "address", type: "address" },
2031
+ { name: "tickLower", internalType: "int24", type: "int24" },
2032
+ { name: "orderSize", internalType: "uint256", type: "uint256" }
2033
+ ],
2034
+ name: "deploy",
2035
+ outputs: [{ name: "", internalType: "address", type: "address" }],
2036
+ stateMutability: "payable"
2037
+ },
2038
+ {
2039
+ type: "function",
2040
+ inputs: [],
2041
+ name: "implementation",
2042
+ outputs: [{ name: "", internalType: "address", type: "address" }],
2043
+ stateMutability: "view"
2044
+ },
2045
+ {
2046
+ type: "function",
2047
+ inputs: [
2048
+ { name: "initialOwner", internalType: "address", type: "address" }
2049
+ ],
2050
+ name: "initialize",
2051
+ outputs: [],
2052
+ stateMutability: "nonpayable"
2053
+ },
2054
+ {
2055
+ type: "function",
2056
+ inputs: [],
2057
+ name: "owner",
2058
+ outputs: [{ name: "", internalType: "address", type: "address" }],
2059
+ stateMutability: "view"
2060
+ },
2061
+ {
2062
+ type: "function",
2063
+ inputs: [],
2064
+ name: "proxiableUUID",
2065
+ outputs: [{ name: "", internalType: "bytes32", type: "bytes32" }],
2066
+ stateMutability: "view"
2067
+ },
2068
+ {
2069
+ type: "function",
2070
+ inputs: [],
2071
+ name: "renounceOwnership",
2072
+ outputs: [],
2073
+ stateMutability: "nonpayable"
2074
+ },
2075
+ {
2076
+ type: "function",
2077
+ inputs: [{ name: "newOwner", internalType: "address", type: "address" }],
2078
+ name: "transferOwnership",
2079
+ outputs: [],
2080
+ stateMutability: "nonpayable"
2081
+ },
2082
+ {
2083
+ type: "function",
2084
+ inputs: [
2085
+ { name: "newImplementation", internalType: "address", type: "address" },
2086
+ { name: "data", internalType: "bytes", type: "bytes" }
2087
+ ],
2088
+ name: "upgradeToAndCall",
2089
+ outputs: [],
2090
+ stateMutability: "payable"
2091
+ },
2092
+ {
2093
+ type: "event",
2094
+ anonymous: false,
2095
+ inputs: [
2096
+ {
2097
+ name: "deployer",
2098
+ internalType: "address",
2099
+ type: "address",
2100
+ indexed: true
2101
+ },
2102
+ {
2103
+ name: "creator",
2104
+ internalType: "address",
2105
+ type: "address",
2106
+ indexed: true
2107
+ },
2108
+ {
2109
+ name: "payoutRecipient",
2110
+ internalType: "address",
2111
+ type: "address",
2112
+ indexed: true
2113
+ },
2114
+ {
2115
+ name: "platformReferrer",
2116
+ internalType: "address",
2117
+ type: "address",
2118
+ indexed: false
2119
+ },
2120
+ {
2121
+ name: "currency",
2122
+ internalType: "address",
2123
+ type: "address",
2124
+ indexed: false
2125
+ },
2126
+ {
2127
+ name: "tokenURI",
2128
+ internalType: "string",
2129
+ type: "string",
2130
+ indexed: false
2131
+ },
2132
+ { name: "name", internalType: "string", type: "string", indexed: false },
2133
+ {
2134
+ name: "symbol",
2135
+ internalType: "string",
2136
+ type: "string",
2137
+ indexed: false
2138
+ },
2139
+ {
2140
+ name: "coin",
2141
+ internalType: "address",
2142
+ type: "address",
2143
+ indexed: false
2144
+ },
2145
+ {
2146
+ name: "pool",
2147
+ internalType: "address",
2148
+ type: "address",
2149
+ indexed: false
2150
+ }
2151
+ ],
2152
+ name: "CoinCreated"
2153
+ },
2154
+ {
2155
+ type: "event",
2156
+ anonymous: false,
2157
+ inputs: [
2158
+ {
2159
+ name: "version",
2160
+ internalType: "uint64",
2161
+ type: "uint64",
2162
+ indexed: false
2163
+ }
2164
+ ],
2165
+ name: "Initialized"
2166
+ },
2167
+ {
2168
+ type: "event",
2169
+ anonymous: false,
2170
+ inputs: [
2171
+ {
2172
+ name: "previousOwner",
2173
+ internalType: "address",
2174
+ type: "address",
2175
+ indexed: true
2176
+ },
2177
+ {
2178
+ name: "newOwner",
2179
+ internalType: "address",
2180
+ type: "address",
2181
+ indexed: true
2182
+ }
2183
+ ],
2184
+ name: "OwnershipTransferred"
2185
+ },
2186
+ {
2187
+ type: "event",
2188
+ anonymous: false,
2189
+ inputs: [
2190
+ {
2191
+ name: "implementation",
2192
+ internalType: "address",
2193
+ type: "address",
2194
+ indexed: true
2195
+ }
2196
+ ],
2197
+ name: "Upgraded"
2198
+ },
2199
+ {
2200
+ type: "error",
2201
+ inputs: [{ name: "target", internalType: "address", type: "address" }],
2202
+ name: "AddressEmptyCode"
2203
+ },
2204
+ {
2205
+ type: "error",
2206
+ inputs: [{ name: "account", internalType: "address", type: "address" }],
2207
+ name: "AddressInsufficientBalance"
2208
+ },
2209
+ { type: "error", inputs: [], name: "ERC1167FailedCreateClone" },
2210
+ {
2211
+ type: "error",
2212
+ inputs: [
2213
+ { name: "implementation", internalType: "address", type: "address" }
2214
+ ],
2215
+ name: "ERC1967InvalidImplementation"
2216
+ },
2217
+ { type: "error", inputs: [], name: "ERC1967NonPayable" },
2218
+ { type: "error", inputs: [], name: "ERC20TransferAmountMismatch" },
2219
+ { type: "error", inputs: [], name: "EthTransferInvalid" },
2220
+ { type: "error", inputs: [], name: "FailedInnerCall" },
2221
+ { type: "error", inputs: [], name: "InvalidInitialization" },
2222
+ { type: "error", inputs: [], name: "NotInitializing" },
2223
+ {
2224
+ type: "error",
2225
+ inputs: [{ name: "owner", internalType: "address", type: "address" }],
2226
+ name: "OwnableInvalidOwner"
2227
+ },
2228
+ {
2229
+ type: "error",
2230
+ inputs: [{ name: "account", internalType: "address", type: "address" }],
2231
+ name: "OwnableUnauthorizedAccount"
2232
+ },
2233
+ { type: "error", inputs: [], name: "ReentrancyGuardReentrantCall" },
2234
+ {
2235
+ type: "error",
2236
+ inputs: [{ name: "token", internalType: "address", type: "address" }],
2237
+ name: "SafeERC20FailedOperation"
2238
+ },
2239
+ { type: "error", inputs: [], name: "UUPSUnauthorizedCallContext" },
2240
+ {
2241
+ type: "error",
2242
+ inputs: [{ name: "slot", internalType: "bytes32", type: "bytes32" }],
2243
+ name: "UUPSUnsupportedProxiableUUID"
2244
+ }
2245
+ ];
2246
+ var coinFactoryAddress = {
2247
+ 8453: "0xC1d310288E76bE71E7A26d269Fd6cbd3A1D9febC",
2248
+ 84532: "0x1E670515d3A4C75C0860846c0605c84AF0e0db0d"
2249
+ };
2250
+ var coinFactoryConfig = {
2251
+ address: coinFactoryAddress,
2252
+ abi: coinFactoryABI
2253
+ };
2001
2254
  var cointagABI = [
2002
2255
  {
2003
2256
  type: "constructor",
@@ -11190,259 +11443,6 @@ var zoraCreatorRedeemMinterFactoryConfig = {
11190
11443
  address: zoraCreatorRedeemMinterFactoryAddress,
11191
11444
  abi: zoraCreatorRedeemMinterFactoryABI
11192
11445
  };
11193
- var zoraFactoryABI = [
11194
- {
11195
- type: "constructor",
11196
- inputs: [{ name: "_coinImpl", internalType: "address", type: "address" }],
11197
- stateMutability: "nonpayable"
11198
- },
11199
- {
11200
- type: "function",
11201
- inputs: [],
11202
- name: "UPGRADE_INTERFACE_VERSION",
11203
- outputs: [{ name: "", internalType: "string", type: "string" }],
11204
- stateMutability: "view"
11205
- },
11206
- {
11207
- type: "function",
11208
- inputs: [],
11209
- name: "coinImpl",
11210
- outputs: [{ name: "", internalType: "address", type: "address" }],
11211
- stateMutability: "view"
11212
- },
11213
- {
11214
- type: "function",
11215
- inputs: [
11216
- { name: "payoutRecipient", internalType: "address", type: "address" },
11217
- { name: "owners", internalType: "address[]", type: "address[]" },
11218
- { name: "uri", internalType: "string", type: "string" },
11219
- { name: "name", internalType: "string", type: "string" },
11220
- { name: "symbol", internalType: "string", type: "string" },
11221
- { name: "platformReferrer", internalType: "address", type: "address" },
11222
- { name: "currency", internalType: "address", type: "address" },
11223
- { name: "tickLower", internalType: "int24", type: "int24" },
11224
- { name: "orderSize", internalType: "uint256", type: "uint256" }
11225
- ],
11226
- name: "deploy",
11227
- outputs: [{ name: "", internalType: "address", type: "address" }],
11228
- stateMutability: "payable"
11229
- },
11230
- {
11231
- type: "function",
11232
- inputs: [],
11233
- name: "implementation",
11234
- outputs: [{ name: "", internalType: "address", type: "address" }],
11235
- stateMutability: "view"
11236
- },
11237
- {
11238
- type: "function",
11239
- inputs: [
11240
- { name: "initialOwner", internalType: "address", type: "address" }
11241
- ],
11242
- name: "initialize",
11243
- outputs: [],
11244
- stateMutability: "nonpayable"
11245
- },
11246
- {
11247
- type: "function",
11248
- inputs: [],
11249
- name: "owner",
11250
- outputs: [{ name: "", internalType: "address", type: "address" }],
11251
- stateMutability: "view"
11252
- },
11253
- {
11254
- type: "function",
11255
- inputs: [],
11256
- name: "proxiableUUID",
11257
- outputs: [{ name: "", internalType: "bytes32", type: "bytes32" }],
11258
- stateMutability: "view"
11259
- },
11260
- {
11261
- type: "function",
11262
- inputs: [],
11263
- name: "renounceOwnership",
11264
- outputs: [],
11265
- stateMutability: "nonpayable"
11266
- },
11267
- {
11268
- type: "function",
11269
- inputs: [{ name: "newOwner", internalType: "address", type: "address" }],
11270
- name: "transferOwnership",
11271
- outputs: [],
11272
- stateMutability: "nonpayable"
11273
- },
11274
- {
11275
- type: "function",
11276
- inputs: [
11277
- { name: "newImplementation", internalType: "address", type: "address" },
11278
- { name: "data", internalType: "bytes", type: "bytes" }
11279
- ],
11280
- name: "upgradeToAndCall",
11281
- outputs: [],
11282
- stateMutability: "payable"
11283
- },
11284
- {
11285
- type: "event",
11286
- anonymous: false,
11287
- inputs: [
11288
- {
11289
- name: "deployer",
11290
- internalType: "address",
11291
- type: "address",
11292
- indexed: true
11293
- },
11294
- {
11295
- name: "creator",
11296
- internalType: "address",
11297
- type: "address",
11298
- indexed: true
11299
- },
11300
- {
11301
- name: "payoutRecipient",
11302
- internalType: "address",
11303
- type: "address",
11304
- indexed: true
11305
- },
11306
- {
11307
- name: "platformReferrer",
11308
- internalType: "address",
11309
- type: "address",
11310
- indexed: false
11311
- },
11312
- {
11313
- name: "currency",
11314
- internalType: "address",
11315
- type: "address",
11316
- indexed: false
11317
- },
11318
- {
11319
- name: "tokenURI",
11320
- internalType: "string",
11321
- type: "string",
11322
- indexed: false
11323
- },
11324
- { name: "name", internalType: "string", type: "string", indexed: false },
11325
- {
11326
- name: "symbol",
11327
- internalType: "string",
11328
- type: "string",
11329
- indexed: false
11330
- },
11331
- {
11332
- name: "coin",
11333
- internalType: "address",
11334
- type: "address",
11335
- indexed: false
11336
- },
11337
- {
11338
- name: "pool",
11339
- internalType: "address",
11340
- type: "address",
11341
- indexed: false
11342
- }
11343
- ],
11344
- name: "CoinCreated"
11345
- },
11346
- {
11347
- type: "event",
11348
- anonymous: false,
11349
- inputs: [
11350
- {
11351
- name: "version",
11352
- internalType: "uint64",
11353
- type: "uint64",
11354
- indexed: false
11355
- }
11356
- ],
11357
- name: "Initialized"
11358
- },
11359
- {
11360
- type: "event",
11361
- anonymous: false,
11362
- inputs: [
11363
- {
11364
- name: "previousOwner",
11365
- internalType: "address",
11366
- type: "address",
11367
- indexed: true
11368
- },
11369
- {
11370
- name: "newOwner",
11371
- internalType: "address",
11372
- type: "address",
11373
- indexed: true
11374
- }
11375
- ],
11376
- name: "OwnershipTransferred"
11377
- },
11378
- {
11379
- type: "event",
11380
- anonymous: false,
11381
- inputs: [
11382
- {
11383
- name: "implementation",
11384
- internalType: "address",
11385
- type: "address",
11386
- indexed: true
11387
- }
11388
- ],
11389
- name: "Upgraded"
11390
- },
11391
- {
11392
- type: "error",
11393
- inputs: [{ name: "target", internalType: "address", type: "address" }],
11394
- name: "AddressEmptyCode"
11395
- },
11396
- {
11397
- type: "error",
11398
- inputs: [{ name: "account", internalType: "address", type: "address" }],
11399
- name: "AddressInsufficientBalance"
11400
- },
11401
- { type: "error", inputs: [], name: "ERC1167FailedCreateClone" },
11402
- {
11403
- type: "error",
11404
- inputs: [
11405
- { name: "implementation", internalType: "address", type: "address" }
11406
- ],
11407
- name: "ERC1967InvalidImplementation"
11408
- },
11409
- { type: "error", inputs: [], name: "ERC1967NonPayable" },
11410
- { type: "error", inputs: [], name: "ERC20TransferAmountMismatch" },
11411
- { type: "error", inputs: [], name: "EthTransferInvalid" },
11412
- { type: "error", inputs: [], name: "FailedInnerCall" },
11413
- { type: "error", inputs: [], name: "InvalidInitialization" },
11414
- { type: "error", inputs: [], name: "NotInitializing" },
11415
- {
11416
- type: "error",
11417
- inputs: [{ name: "owner", internalType: "address", type: "address" }],
11418
- name: "OwnableInvalidOwner"
11419
- },
11420
- {
11421
- type: "error",
11422
- inputs: [{ name: "account", internalType: "address", type: "address" }],
11423
- name: "OwnableUnauthorizedAccount"
11424
- },
11425
- { type: "error", inputs: [], name: "ReentrancyGuardReentrantCall" },
11426
- {
11427
- type: "error",
11428
- inputs: [{ name: "token", internalType: "address", type: "address" }],
11429
- name: "SafeERC20FailedOperation"
11430
- },
11431
- { type: "error", inputs: [], name: "UUPSUnauthorizedCallContext" },
11432
- {
11433
- type: "error",
11434
- inputs: [{ name: "slot", internalType: "bytes32", type: "bytes32" }],
11435
- name: "UUPSUnsupportedProxiableUUID"
11436
- }
11437
- ];
11438
- var zoraFactoryAddress = {
11439
- 8453: "0xC1d310288E76bE71E7A26d269Fd6cbd3A1D9febC",
11440
- 84532: "0x1E670515d3A4C75C0860846c0605c84AF0e0db0d"
11441
- };
11442
- var zoraFactoryConfig = {
11443
- address: zoraFactoryAddress,
11444
- abi: zoraFactoryABI
11445
- };
11446
11446
  var zoraMints1155ABI = [
11447
11447
  { type: "constructor", inputs: [], stateMutability: "nonpayable" },
11448
11448
  {
@@ -16049,6 +16049,9 @@ export {
16049
16049
  callerAndCommenterAddress,
16050
16050
  callerAndCommenterConfig,
16051
16051
  coinABI,
16052
+ coinFactoryABI,
16053
+ coinFactoryAddress,
16054
+ coinFactoryConfig,
16052
16055
  cointagABI,
16053
16056
  cointagFactoryABI,
16054
16057
  cointagFactoryAddress,
@@ -16124,9 +16127,6 @@ export {
16124
16127
  zoraCreatorRedeemMinterFactoryABI,
16125
16128
  zoraCreatorRedeemMinterFactoryAddress,
16126
16129
  zoraCreatorRedeemMinterFactoryConfig,
16127
- zoraFactoryABI,
16128
- zoraFactoryAddress,
16129
- zoraFactoryConfig,
16130
16130
  zoraMints1155ABI,
16131
16131
  zoraMints1155Address,
16132
16132
  zoraMints1155Config,