Class DigitalAssetClient
- Namespace
- Aptos
- Assembly
- Aptos.dll
public class DigitalAssetClient
- Inheritance
-
DigitalAssetClient
- Inherited Members
Constructors
DigitalAssetClient(AptosClient)
public DigitalAssetClient(AptosClient client)
Parameters
client
AptosClient
Methods
GetAccountDigitalAssetOwnerships(AccountAddress, int, int, current_token_ownerships_v2_bool_exp?, current_token_ownerships_v2_order_by?)
Gets the digital asset ownerships of an account. Digital assets are a representation of NFTs on Aptos.
public Task<List<DigitalAssetOwnership>> GetAccountDigitalAssetOwnerships(AccountAddress address, int offset = 0, int limit = 50, current_token_ownerships_v2_bool_exp? where = null, current_token_ownerships_v2_order_by? orderBy = null)
Parameters
address
AccountAddressThe address of the account.
offset
intThe offset of the query.
limit
intThe item limit of the query.
where
current_token_ownerships_v2_bool_expThe condition to filter the digital asset ownerships.
orderBy
current_token_ownerships_v2_order_byThe order by condition of the query.
Returns
- Task<List<DigitalAssetOwnership>>
A list of digital asset ownerships.
GetAccountDigitalAssetOwnerships(string, int, int, current_token_ownerships_v2_bool_exp?, current_token_ownerships_v2_order_by?)
Gets the digital asset ownerships of an account. Digital assets are a representation of NFTs on Aptos.
public Task<List<DigitalAssetOwnership>> GetAccountDigitalAssetOwnerships(string address, int offset = 0, int limit = 50, current_token_ownerships_v2_bool_exp? where = null, current_token_ownerships_v2_order_by? orderBy = null)
Parameters
address
stringThe address of the account.
offset
intThe offset of the query.
limit
intThe item limit of the query.
where
current_token_ownerships_v2_bool_expThe condition to filter the digital asset ownerships.
orderBy
current_token_ownerships_v2_order_byThe order by condition of the query.
Returns
- Task<List<DigitalAssetOwnership>>
A list of digital asset ownerships.
GetDigitalAssetOwnerships(current_token_ownerships_v2_bool_exp, int, int, current_token_ownerships_v2_order_by?)
Gets the digital asset ownerships of the account. Digital assets are a representation of NFTs on Aptos.
public Task<List<DigitalAssetOwnership>> GetDigitalAssetOwnerships(current_token_ownerships_v2_bool_exp where, int offset = 0, int limit = 50, current_token_ownerships_v2_order_by? orderBy = null)
Parameters
where
current_token_ownerships_v2_bool_expThe condition to filter the digital asset ownerships.
offset
intThe offset of the query.
limit
intThe item limit of the query.
orderBy
current_token_ownerships_v2_order_byThe order by condition of the query.
Returns
- Task<List<DigitalAssetOwnership>>
A list of digital asset ownerships.