@@ -52,9 +52,6 @@ suite("SDK: order posting", () => {
5252 } ) ;
5353
5454 test ( "Post Listing - Mainnet" , async function ( ) {
55- // English auctions are no longer supported on OpenSea
56- this . skip ( ) ;
57-
5855 if ( ! TOKEN_ADDRESS_MAINNET || ! TOKEN_ID_MAINNET ) {
5956 this . skip ( ) ;
6057 }
@@ -72,6 +69,9 @@ suite("SDK: order posting", () => {
7269 } ) ;
7370
7471 test ( "Post English Auction Listing - Mainnet" , async function ( ) {
72+ // English auctions are no longer supported on OpenSea
73+ this . skip ( ) ;
74+
7575 if ( ! TOKEN_ADDRESS_MAINNET || ! TOKEN_ID_MAINNET ) {
7676 this . skip ( ) ;
7777 }
@@ -102,26 +102,21 @@ suite("SDK: order posting", () => {
102102 } ) ;
103103
104104 test . skip ( "Post Listing - Polygon" , async function ( ) {
105- // POL not currently supported on OS2, update this test to use WETH
106- // (will need to supply account with WETH and do approval to conduit)
107-
108- if ( ! TOKEN_ADDRESS_POLYGON || ! TOKEN_ID_POLYGON ) {
109- this . skip ( ) ;
110- }
111105 const listing = {
112106 accountAddress : walletAddress ,
107+ paymentTokenAddress : getWETHAddress ( sdkPolygon . chain ) ,
113108 startAmount : + LISTING_AMOUNT * 1_000_000 ,
114109 asset : {
115- tokenAddress : TOKEN_ADDRESS_POLYGON ,
116- tokenId : TOKEN_ID_POLYGON ,
110+ tokenAddress : TOKEN_ADDRESS_POLYGON as string ,
111+ tokenId : TOKEN_ID_POLYGON as string ,
117112 } ,
118113 expirationTime,
119114 } ;
120115 const order = await sdkPolygon . createListing ( listing ) ;
121116 expectValidOrder ( order ) ;
122117 } ) ;
123118
124- test ( "Post Collection Offer - Mainnet" , async ( ) => {
119+ test . skip ( "Post Collection Offer - Mainnet" , async ( ) => {
125120 const collection = await sdk . api . getCollection ( "cool-cats-nft" ) ;
126121 const paymentTokenAddress = getWETHAddress ( sdk . chain ) ;
127122 const postOrderRequest = {
@@ -148,7 +143,7 @@ suite("SDK: order posting", () => {
148143 ) ;
149144 } ) ;
150145
151- test ( "Post Collection Offer - Polygon" , async ( ) => {
146+ test . skip ( "Post Collection Offer - Polygon" , async ( ) => {
152147 const collection = await sdkPolygon . api . getCollection ( "arttoken-1155-4" ) ;
153148 const paymentTokenAddress = getWETHAddress ( sdkPolygon . chain ) ;
154149 const postOrderRequest = {
0 commit comments