-
Notifications
You must be signed in to change notification settings - Fork 1
Nifty Gateway
Logo | Name | Code | cryptotrackr Docs | Exchange Docs | Source Code |
---|---|---|---|---|---|
Nifty Gateway | nifty_gateway | /docs/nifty_gateway.md | 🏢 | /R/nifty_gateway.R |
nifty_gateway_user_nifties, nifty_gateway_creators
-
Returns a dataframe containing information about the nifties owned by the specified user
-
username: the username you wish to query
-
limit: optionally provide the maximum number of results to return. This is a numeric parameter.
-
offset: optionally specify how many results to skip. This is a numeric parameter.
-
contract_address: optionally filter results by contract address.
-
The following example retrieves the nifties for the user named "tommy" and stores the resulting data in a dataframe named "nifties".
nifties <- nifty_gateway_user_nifties('tommy')
-
Returns a dataframe containing ownership information for all nifties created by the given creator and currently stored on Nifty Gateway
-
username: the username you wish to query
-
limit: optionally provide the maximum number of results to return. This is a numeric parameter.
-
offset: optionally specify how many results to skip. This is a numeric parameter.
-
The following example retrieves the ownership information for nifties created by Beeple and stores the data in a dataframe named "creators".
creators <- nifty_gateway_creators('beeple')