You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
781 B

package controllers
import javax.inject.Inject
import com.alexitc.playsonify.models.{Limit, Offset, PaginatedQuery}
import com.xsn.explorer.services.{AddressService, TransactionService}
import controllers.common.{MyJsonController, MyJsonControllerComponents}
class AddressesController @Inject() (
addressService: AddressService,
transactionService: TransactionService,
cc: MyJsonControllerComponents)
extends MyJsonController(cc) {
def getDetails(address: String) = publicNoInput { _ =>
addressService.getDetails(address)
}
def getTransactions(address: String, offset: Int, limit: Int) = publicNoInput { _ =>
val paginatedQuery = PaginatedQuery(Offset(offset), Limit(limit))
transactionService.getTransactions(address, paginatedQuery)
}
}