Class: Coinbase::Client::StakeApi

Inherits:
Object
  • Object
show all
Defined in:
lib/coinbase/client/api/stake_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ StakeApi

Returns a new instance of StakeApi.



19
20
21
# File 'lib/coinbase/client/api/stake_api.rb', line 19

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



17
18
19
# File 'lib/coinbase/client/api/stake_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#build_staking_operation(build_staking_operation_request, opts = {}) ⇒ StakingOperation

Build a new staking operation Build a new staking operation

Parameters:

Returns:



27
28
29
30
# File 'lib/coinbase/client/api/stake_api.rb', line 27

def build_staking_operation(build_staking_operation_request, opts = {})
  data, _status_code, _headers = build_staking_operation_with_http_info(build_staking_operation_request, opts)
  data
end

#build_staking_operation_with_http_info(build_staking_operation_request, opts = {}) ⇒ Array<(StakingOperation, Integer, Hash)>

Build a new staking operation Build a new staking operation

Parameters:

Returns:

  • (Array<(StakingOperation, Integer, Hash)>)

    StakingOperation data, response status code and response headers



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/coinbase/client/api/stake_api.rb', line 37

def build_staking_operation_with_http_info(build_staking_operation_request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: StakeApi.build_staking_operation ...'
  end
  # verify the required parameter 'build_staking_operation_request' is set
  if @api_client.config.client_side_validation && build_staking_operation_request.nil?
    fail ArgumentError, "Missing the required parameter 'build_staking_operation_request' when calling StakeApi.build_staking_operation"
  end
  # resource path
  local_var_path = '/v1/stake/build'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(build_staking_operation_request)

  # return_type
  return_type = opts[:debug_return_type] || 'StakingOperation'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"StakeApi.build_staking_operation",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: StakeApi#build_staking_operation\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#fetch_staking_rewards(fetch_staking_rewards_request, opts = {}) ⇒ FetchStakingRewards200Response

Fetch staking rewards Fetch staking rewards for a list of addresses

Parameters:

Options Hash (opts):

  • :limit (Integer)

    A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.

  • :page (String)

    A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

Returns:



97
98
99
100
# File 'lib/coinbase/client/api/stake_api.rb', line 97

def fetch_staking_rewards(fetch_staking_rewards_request, opts = {})
  data, _status_code, _headers = fetch_staking_rewards_with_http_info(fetch_staking_rewards_request, opts)
  data
end

#fetch_staking_rewards_with_http_info(fetch_staking_rewards_request, opts = {}) ⇒ Array<(FetchStakingRewards200Response, Integer, Hash)>

Fetch staking rewards Fetch staking rewards for a list of addresses

Parameters:

Options Hash (opts):

  • :limit (Integer)

    A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.

  • :page (String)

    A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

Returns:



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/coinbase/client/api/stake_api.rb', line 109

def fetch_staking_rewards_with_http_info(fetch_staking_rewards_request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: StakeApi.fetch_staking_rewards ...'
  end
  # verify the required parameter 'fetch_staking_rewards_request' is set
  if @api_client.config.client_side_validation && fetch_staking_rewards_request.nil?
    fail ArgumentError, "Missing the required parameter 'fetch_staking_rewards_request' when calling StakeApi.fetch_staking_rewards"
  end
  if @api_client.config.client_side_validation && !opts[:'page'].nil? && opts[:'page'].to_s.length > 5000
    fail ArgumentError, 'invalid value for "opts[:"page"]" when calling StakeApi.fetch_staking_rewards, the character length must be smaller than or equal to 5000.'
  end

  # resource path
  local_var_path = '/v1/stake/rewards/search'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
  query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(fetch_staking_rewards_request)

  # return_type
  return_type = opts[:debug_return_type] || 'FetchStakingRewards200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"StakeApi.fetch_staking_rewards",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: StakeApi#fetch_staking_rewards\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_external_staking_operation(network_id, address_id, staking_operation_id, opts = {}) ⇒ StakingOperation

Get the latest state of a staking operation Get the latest state of a staking operation

Parameters:

  • network_id (String)

    The ID of the blockchain network

  • address_id (String)

    The ID of the address to fetch the staking operation for

  • staking_operation_id (String)

    The ID of the staking operation

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



175
176
177
178
# File 'lib/coinbase/client/api/stake_api.rb', line 175

def get_external_staking_operation(network_id, address_id, staking_operation_id, opts = {})
  data, _status_code, _headers = get_external_staking_operation_with_http_info(network_id, address_id, staking_operation_id, opts)
  data
end

#get_external_staking_operation_with_http_info(network_id, address_id, staking_operation_id, opts = {}) ⇒ Array<(StakingOperation, Integer, Hash)>

Get the latest state of a staking operation Get the latest state of a staking operation

Parameters:

  • network_id (String)

    The ID of the blockchain network

  • address_id (String)

    The ID of the address to fetch the staking operation for

  • staking_operation_id (String)

    The ID of the staking operation

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(StakingOperation, Integer, Hash)>)

    StakingOperation data, response status code and response headers



187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/coinbase/client/api/stake_api.rb', line 187

def get_external_staking_operation_with_http_info(network_id, address_id, staking_operation_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: StakeApi.get_external_staking_operation ...'
  end
  # verify the required parameter 'network_id' is set
  if @api_client.config.client_side_validation && network_id.nil?
    fail ArgumentError, "Missing the required parameter 'network_id' when calling StakeApi.get_external_staking_operation"
  end
  # verify the required parameter 'address_id' is set
  if @api_client.config.client_side_validation && address_id.nil?
    fail ArgumentError, "Missing the required parameter 'address_id' when calling StakeApi.get_external_staking_operation"
  end
  # verify the required parameter 'staking_operation_id' is set
  if @api_client.config.client_side_validation && staking_operation_id.nil?
    fail ArgumentError, "Missing the required parameter 'staking_operation_id' when calling StakeApi.get_external_staking_operation"
  end
  # resource path
  local_var_path = '/v1/networks/{network_id}/addresses/{address_id}/staking_operations/{staking_operation_id}'.sub('{' + 'network_id' + '}', CGI.escape(network_id.to_s)).sub('{' + 'address_id' + '}', CGI.escape(address_id.to_s)).sub('{' + 'staking_operation_id' + '}', CGI.escape(staking_operation_id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'StakingOperation'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"StakeApi.get_external_staking_operation",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: StakeApi#get_external_staking_operation\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_staking_context(get_staking_context_request, opts = {}) ⇒ StakingContext

Get staking context Get staking context for an address

Parameters:

Returns:



248
249
250
251
# File 'lib/coinbase/client/api/stake_api.rb', line 248

def get_staking_context(get_staking_context_request, opts = {})
  data, _status_code, _headers = get_staking_context_with_http_info(get_staking_context_request, opts)
  data
end

#get_staking_context_with_http_info(get_staking_context_request, opts = {}) ⇒ Array<(StakingContext, Integer, Hash)>

Get staking context Get staking context for an address

Parameters:

Returns:

  • (Array<(StakingContext, Integer, Hash)>)

    StakingContext data, response status code and response headers



258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
# File 'lib/coinbase/client/api/stake_api.rb', line 258

def get_staking_context_with_http_info(get_staking_context_request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: StakeApi.get_staking_context ...'
  end
  # verify the required parameter 'get_staking_context_request' is set
  if @api_client.config.client_side_validation && get_staking_context_request.nil?
    fail ArgumentError, "Missing the required parameter 'get_staking_context_request' when calling StakeApi.get_staking_context"
  end
  # resource path
  local_var_path = '/v1/stake/context'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(get_staking_context_request)

  # return_type
  return_type = opts[:debug_return_type] || 'StakingContext'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"StakeApi.get_staking_context",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: StakeApi#get_staking_context\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end