MCPcopy Create free account
hub / github.com/blockfrost/blockfrost-python / query_parameters

Method query_parameters

blockfrost/utils.py:159–181  ·  view source on GitHub ↗

count integer <= 100 Default: 100 The number of results displayed on one page. page integer Default: 1 The page number for listing the results. order string Default: "asc" Enum: "asc" "desc" Th

(kwargs: dict)

Source from the content-addressed store, hash-verified

157
158 @staticmethod
159 def query_parameters(kwargs: dict):
160 """
161 count
162 integer <= 100
163 Default: 100
164 The number of results displayed on one page.
165
166 page
167 integer
168 Default: 1
169 The page number for listing the results.
170
171 order
172 string
173 Default: "asc"
174 Enum: "asc" "desc"
175 The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.
176 """
177 return {
178 "count": kwargs.get('count', None),
179 "page": kwargs.get('page', None),
180 "order": kwargs.get('order', None),
181 }

Callers 15

nutlink_address_tickersFunction · 0.80
nutlink_address_tickerFunction · 0.80
nutlink_tickerFunction · 0.80
blocks_nextFunction · 0.80
blocks_previousFunction · 0.80
block_transactionsFunction · 0.80
block_transactions_cborFunction · 0.80
blocks_addressesFunction · 0.80
epochs_nextFunction · 0.80
epochs_previousFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected