SecretNET.Token Namespace

GetTransferHistoryRequest Constructor

Initializes a new instance of the GetTransferHistoryRequest class.

Namespace:  SecretNET.Token
Assembly:  SecretNET.Token (in SecretNET.Token.dll)

Syntax


public GetTransferHistoryRequest(
	int pageSize,
	Nullable<int> page,
	Nullable<string> address,
	Nullable<string> viewingKey
)
Public Sub New ( _
	pageSize As Integer, _
	page As Nullable(Of Integer), _
	address As Nullable(Of String), _
	viewingKey As Nullable(Of String) _
)
public:
GetTransferHistoryRequest(
	int^ pageSize, 
	Nullable<int^> page, 
	Nullable<String^> address, 
	Nullable<String^> viewingKey
)

Parameters

pageSize
Type: Int32
Number of transactions to return, starting from the latest. i.e. n=1 will return only the latest transaction.
page
Type: Nullable<(Of <(<'Int32>)>)>
This defaults to 0. Specifying a positive number will skip page * page_size txs from the start.
address
Type: Nullable<(Of <(<'String>)>)>
Addresses SHOULD be a valid bech32 address, but contracts may use a different naming scheme as well (only necessary if queried without permit).
viewingKey
Type: Nullable<(Of <(<'String>)>)>
The viewing key (only necessary if queried without permit).