@@ -56,7 +56,6 @@ router.get('/:id/orbitConfig', authMiddleware, async (req, res, next) => {
5656 * @param {string } config.challengeManagerContract - Challenge manager contract address
5757 * @param {string } config.validatorWalletCreatorContract - Validator wallet creator contract address
5858 * @param {string } config.stakeToken - Stake token address
59- * @param {number } config.confirmationPeriodBlocks - The number of blocks to wait for confirmation
6059 * @param {string } config.parentMessageCountShift - The number of blocks to shift when counting messages
6160 * @returns {Promise<object> } - The updated orbit config
6261 */
@@ -118,7 +117,6 @@ router.put('/:id/orbitConfig', authMiddleware, async (req, res, next) => {
118117 * @param {string } config.challengeManagerContract - Challenge manager contract address
119118 * @param {string } config.validatorWalletCreatorContract - Validator wallet creator contract address
120119 * @param {string } config.stakeToken - Stake token address
121- * @param {number } config.confirmationPeriodBlocks - The number of blocks to wait for confirmation
122120 * @param {string } config.parentMessageCountShift - The number of blocks to shift when counting messages
123121 * @returns {Promise<object> } - The updated orbit config
124122 */
@@ -300,16 +298,6 @@ router.post('/:id/startTrial', authMiddleware, async (req, res, next) => {
300298 }
301299} ) ;
302300
303- router . post ( '/startSafeBlockListeners' , secretMiddleware , async ( req , res , next ) => {
304- try {
305- await enqueue ( 'safeBlockListenerCheck' , 'safeBlockListenerCheck' , { } ) ;
306-
307- res . sendStatus ( 200 ) ;
308- } catch ( error ) {
309- unmanagedError ( error , req , next ) ;
310- }
311- } ) ;
312-
313301router . post ( '/syncExplorers' , secretMiddleware , async ( req , res , next ) => {
314302 try {
315303 const explorers = await Explorer . findAll ( ) ;
@@ -810,7 +798,6 @@ router.post('/', authMiddleware, async (req, res, next) => {
810798 options [ 'token' ] = data . token ;
811799 options [ 'slug' ] = data . slug ;
812800 options [ 'totalSupply' ] = data . totalSupply ;
813- options [ 'l1Explorer' ] = data . l1Explorer ;
814801 options [ 'branding' ] = data . branding ;
815802
816803 const usingDefaultPlan = ! data . plan && ( ! isStripeEnabled ( ) || user . canUseDemoPlan ) ;
@@ -961,7 +948,6 @@ router.get('/search', async (req, res, next) => {
961948 chainId : explorer . chainId ,
962949 domain : explorer . domain ,
963950 domains : explorer . domains ,
964- l1Explorer : explorer . l1Explorer ,
965951 name : explorer . name ,
966952 rpcServer : explorer . rpcServer ,
967953 slug : explorer . slug ,
0 commit comments