File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ describe('Given the zora plugin', () => {
29
29
recipient : '0x628d4c61d81ac4f286b1778a063ed2f8810bc367' ,
30
30
} ,
31
31
{
32
- tokenRecipient : '0x628d4c61d81ac4f286b1778a063ed2f8810bc367' ,
32
+ tokenRecipient :
33
+ '0x628d4c61d81ac4f286b1778a063ed2f8810bc367' ,
33
34
} ,
34
35
{
35
36
to : '0x628d4c61d81ac4f286b1778a063ed2f8810bc367' ,
@@ -47,7 +48,8 @@ describe('Given the zora plugin', () => {
47
48
recipient : '0x628d4c61d81ac4f286b1778a063ed2f8810bc367' ,
48
49
} ,
49
50
{
50
- tokenRecipient : '0x628d4c61d81ac4f286b1778a063ed2f8810bc367' ,
51
+ tokenRecipient :
52
+ '0x628d4c61d81ac4f286b1778a063ed2f8810bc367' ,
51
53
} ,
52
54
{
53
55
to : '0x628d4c61d81ac4f286b1778a063ed2f8810bc367' ,
Original file line number Diff line number Diff line change 6
6
import { zoraUniversalMinterAddress } from '@zoralabs/universal-minter'
7
7
import { type Address } from 'viem'
8
8
import { CHAIN_ID_ARRAY } from './chain-ids'
9
- import { ZORA_MINTER_ABI_1155 , ZORA_MINTER_ABI_721 } from './abi'
9
+ import { ZORA_MINTER_ABI_1155 , ZORA_MINTER_ABI_721 } from './abi'
10
10
import type { Chains } from './utils'
11
11
12
12
export const mint = async (
@@ -47,10 +47,10 @@ export const mint = async (
47
47
to : mintContract ,
48
48
input : {
49
49
$or : [
50
- {
51
- $abiAbstract : ZORA_MINTER_ABI_721 ,
52
- $and : andArray721 . length !== 0 ? andArray721 : undefined ,
53
- } ,
50
+ {
51
+ $abiAbstract : ZORA_MINTER_ABI_721 ,
52
+ $and : andArray721 . length !== 0 ? andArray721 : undefined ,
53
+ } ,
54
54
{
55
55
$abiAbstract : ZORA_MINTER_ABI_1155 ,
56
56
$and : andArray1155 . length !== 0 ? andArray1155 : undefined ,
Original file line number Diff line number Diff line change @@ -222,12 +222,10 @@ export const ZORA_MINTER_ABI_721 = [
222
222
] ,
223
223
stateMutability : 'payable' ,
224
224
type : 'function' ,
225
- } // ERC721Drop
225
+ } , // ERC721Drop
226
226
// https://github.com/ourzora/zora-protocol/blob/8d1fe9bdd79a552a8f74b4712451185f6aebf9a0/packages/1155-contracts/src/nft/ZoraCreator1155Impl.sol#L427
227
-
228
227
]
229
228
230
-
231
229
export const ZORA_MINTER_ABI_1155 = [
232
230
{
233
231
inputs : [
@@ -350,4 +348,4 @@ export const ZORA_MINTER_ABI_1155 = [
350
348
stateMutability : 'payable' ,
351
349
type : 'function' ,
352
350
} , // universal batch mint
353
- ]
351
+ ]
You can’t perform that action at this time.
0 commit comments