get Web3Connections
suspend fun getWeb3Connections(allPages: Boolean? = true, pageCursor: String? = null, pageSize: Int? = null, order: Order? = null, filter: Web3Filter? = null, sort: Web3ConnectionSort? = null): Result<PaginatedResponse<Web3Connection>>
Returns a paginated response of the web3 connections.
Return
A Result containing a PaginatedResponse of Web3Connection if the web3 connections were successfully retrieved, or an EmbeddedWalletException in case of failure.
Parameters
all Pages
If true, will fetch all pages of the web3 connections. If false, will fetch only the page specified by pageCursor.
page Cursor
The cursor to fetch the next page.
page Size
The number of results to return per page.
order
The Order of the web3 connections to be fetched.
filter
The Web3Filter to filter the web3 connections.
sort
The Web3ConnectionSort to sort the web3 connections.