@@ -34,7 +34,7 @@ func (c *Client) GetDynamicFieldObject(
3434type GetDynamicFieldsRequest struct {
3535 ParentObjectID * iotago.ObjectID
3636 Cursor * iotago.ObjectID // optional
37- Limit * uint // optional
37+ Limit * int // optional
3838}
3939
4040func (c * Client ) GetDynamicFields (
@@ -55,7 +55,7 @@ type GetOwnedObjectsRequest struct {
5555 Cursor * iotago.ObjectID
5656 // [optional] Limit is the maximum number of items returned per page, defaults to [QUERY_MAX_RESULT_LIMIT_OBJECTS] if not
5757 // provided
58- Limit * uint
58+ Limit * int
5959}
6060
6161func (c * Client ) GetOwnedObjects (
@@ -78,7 +78,7 @@ func (c *Client) GetOwnedObjects(
7878type QueryEventsRequest struct {
7979 Query * iotajsonrpc.EventFilter
8080 Cursor * iotajsonrpc.EventId // optional
81- Limit * uint // optional
81+ Limit * int // optional
8282 DescendingOrder bool // optional
8383}
8484
@@ -93,7 +93,7 @@ func (c *Client) QueryEvents(
9393type QueryTransactionBlocksRequest struct {
9494 Query * iotajsonrpc.IotaTransactionBlockResponseQuery
9595 Cursor * iotago.TransactionDigest // optional
96- Limit * uint // optional
96+ Limit * int // optional
9797 DescendingOrder bool // optional
9898}
9999
@@ -125,7 +125,7 @@ func (c *Client) ResolveNameServiceAddress(ctx context.Context, iotaName string)
125125type ResolveNameServiceNamesRequest struct {
126126 Owner * iotago.Address
127127 Cursor * iotago.ObjectID // optional
128- Limit * uint // optional
128+ Limit * int // optional
129129}
130130
131131func (c * Client ) ResolveNameServiceNames (
0 commit comments