Table of Contents

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 AccountAddress

The address of the account.

offset int

The offset of the query.

limit int

The item limit of the query.

where current_token_ownerships_v2_bool_exp

The condition to filter the digital asset ownerships.

orderBy current_token_ownerships_v2_order_by

The 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 string

The address of the account.

offset int

The offset of the query.

limit int

The item limit of the query.

where current_token_ownerships_v2_bool_exp

The condition to filter the digital asset ownerships.

orderBy current_token_ownerships_v2_order_by

The 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_exp

The condition to filter the digital asset ownerships.

offset int

The offset of the query.

limit int

The item limit of the query.

orderBy current_token_ownerships_v2_order_by

The order by condition of the query.

Returns

Task<List<DigitalAssetOwnership>>

A list of digital asset ownerships.