Class: Coinbase::Client::SmartContractsApi
- Inherits:
-
Object
- Object
- Coinbase::Client::SmartContractsApi
- Defined in:
- lib/coinbase/client/api/smart_contracts_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_smart_contract(wallet_id, address_id, create_smart_contract_request, opts = {}) ⇒ SmartContract
Create a new smart contract Create a new smart contract.
-
#create_smart_contract_with_http_info(wallet_id, address_id, create_smart_contract_request, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Create a new smart contract Create a new smart contract.
-
#deploy_smart_contract(wallet_id, address_id, smart_contract_id, deploy_smart_contract_request, opts = {}) ⇒ SmartContract
Deploy a smart contract Deploys a smart contract, by broadcasting the transaction to the network.
-
#deploy_smart_contract_with_http_info(wallet_id, address_id, smart_contract_id, deploy_smart_contract_request, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Deploy a smart contract Deploys a smart contract, by broadcasting the transaction to the network.
-
#get_smart_contract(wallet_id, address_id, smart_contract_id, opts = {}) ⇒ SmartContract
Get a specific smart contract deployed by address Get a specific smart contract deployed by address.
-
#get_smart_contract_with_http_info(wallet_id, address_id, smart_contract_id, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Get a specific smart contract deployed by address Get a specific smart contract deployed by address.
-
#initialize(api_client = ApiClient.default) ⇒ SmartContractsApi
constructor
A new instance of SmartContractsApi.
-
#list_smart_contracts(opts = {}) ⇒ SmartContractList
List smart contracts List smart contracts.
-
#list_smart_contracts_with_http_info(opts = {}) ⇒ Array<(SmartContractList, Integer, Hash)>
List smart contracts List smart contracts.
-
#read_contract(network_id, contract_address, read_contract_request, opts = {}) ⇒ SolidityValue
Read data from a smart contract Perform a read operation on a smart contract without creating a transaction.
-
#read_contract_with_http_info(network_id, contract_address, read_contract_request, opts = {}) ⇒ Array<(SolidityValue, Integer, Hash)>
Read data from a smart contract Perform a read operation on a smart contract without creating a transaction.
-
#register_smart_contract(network_id, contract_address, opts = {}) ⇒ SmartContract
Register a smart contract Register a smart contract.
-
#register_smart_contract_with_http_info(network_id, contract_address, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Register a smart contract Register a smart contract.
-
#update_smart_contract(network_id, contract_address, opts = {}) ⇒ SmartContract
Update a smart contract Update a smart contract.
-
#update_smart_contract_with_http_info(network_id, contract_address, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Update a smart contract Update a smart contract.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ SmartContractsApi
Returns a new instance of SmartContractsApi.
19 20 21 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#create_smart_contract(wallet_id, address_id, create_smart_contract_request, opts = {}) ⇒ SmartContract
Create a new smart contract Create a new smart contract
29 30 31 32 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 29 def create_smart_contract(wallet_id, address_id, create_smart_contract_request, opts = {}) data, _status_code, _headers = create_smart_contract_with_http_info(wallet_id, address_id, create_smart_contract_request, opts) data end |
#create_smart_contract_with_http_info(wallet_id, address_id, create_smart_contract_request, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Create a new smart contract Create a new smart contract
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 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 41 def create_smart_contract_with_http_info(wallet_id, address_id, create_smart_contract_request, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SmartContractsApi.create_smart_contract ...' end # verify the required parameter 'wallet_id' is set if @api_client.config.client_side_validation && wallet_id.nil? fail ArgumentError, "Missing the required parameter 'wallet_id' when calling SmartContractsApi.create_smart_contract" 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 SmartContractsApi.create_smart_contract" end # verify the required parameter 'create_smart_contract_request' is set if @api_client.config.client_side_validation && create_smart_contract_request.nil? fail ArgumentError, "Missing the required parameter 'create_smart_contract_request' when calling SmartContractsApi.create_smart_contract" end # resource path local_var_path = '/v1/wallets/{wallet_id}/addresses/{address_id}/smart_contracts'.sub('{' + 'wallet_id' + '}', CGI.escape(wallet_id.to_s)).sub('{' + 'address_id' + '}', CGI.escape(address_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']) unless header_params['Accept'] # 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(create_smart_contract_request) # return_type return_type = opts[:debug_return_type] || 'SmartContract' # auth_names auth_names = opts[:debug_auth_names] || ['apiKey'] = opts.merge( :operation => :"SmartContractsApi.create_smart_contract", :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: SmartContractsApi#create_smart_contract\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#deploy_smart_contract(wallet_id, address_id, smart_contract_id, deploy_smart_contract_request, opts = {}) ⇒ SmartContract
Deploy a smart contract Deploys a smart contract, by broadcasting the transaction to the network.
110 111 112 113 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 110 def deploy_smart_contract(wallet_id, address_id, smart_contract_id, deploy_smart_contract_request, opts = {}) data, _status_code, _headers = deploy_smart_contract_with_http_info(wallet_id, address_id, smart_contract_id, deploy_smart_contract_request, opts) data end |
#deploy_smart_contract_with_http_info(wallet_id, address_id, smart_contract_id, deploy_smart_contract_request, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Deploy a smart contract Deploys a smart contract, by broadcasting the transaction to the network.
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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 123 def deploy_smart_contract_with_http_info(wallet_id, address_id, smart_contract_id, deploy_smart_contract_request, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SmartContractsApi.deploy_smart_contract ...' end # verify the required parameter 'wallet_id' is set if @api_client.config.client_side_validation && wallet_id.nil? fail ArgumentError, "Missing the required parameter 'wallet_id' when calling SmartContractsApi.deploy_smart_contract" 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 SmartContractsApi.deploy_smart_contract" end # verify the required parameter 'smart_contract_id' is set if @api_client.config.client_side_validation && smart_contract_id.nil? fail ArgumentError, "Missing the required parameter 'smart_contract_id' when calling SmartContractsApi.deploy_smart_contract" end # verify the required parameter 'deploy_smart_contract_request' is set if @api_client.config.client_side_validation && deploy_smart_contract_request.nil? fail ArgumentError, "Missing the required parameter 'deploy_smart_contract_request' when calling SmartContractsApi.deploy_smart_contract" end # resource path local_var_path = '/v1/wallets/{wallet_id}/addresses/{address_id}/smart_contracts/{smart_contract_id}/deploy'.sub('{' + 'wallet_id' + '}', CGI.escape(wallet_id.to_s)).sub('{' + 'address_id' + '}', CGI.escape(address_id.to_s)).sub('{' + 'smart_contract_id' + '}', CGI.escape(smart_contract_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']) unless header_params['Accept'] # 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(deploy_smart_contract_request) # return_type return_type = opts[:debug_return_type] || 'SmartContract' # auth_names auth_names = opts[:debug_auth_names] || ['apiKey'] = opts.merge( :operation => :"SmartContractsApi.deploy_smart_contract", :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: SmartContractsApi#deploy_smart_contract\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_smart_contract(wallet_id, address_id, smart_contract_id, opts = {}) ⇒ SmartContract
Get a specific smart contract deployed by address Get a specific smart contract deployed by address.
195 196 197 198 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 195 def get_smart_contract(wallet_id, address_id, smart_contract_id, opts = {}) data, _status_code, _headers = get_smart_contract_with_http_info(wallet_id, address_id, smart_contract_id, opts) data end |
#get_smart_contract_with_http_info(wallet_id, address_id, smart_contract_id, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Get a specific smart contract deployed by address Get a specific smart contract deployed by address.
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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 207 def get_smart_contract_with_http_info(wallet_id, address_id, smart_contract_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SmartContractsApi.get_smart_contract ...' end # verify the required parameter 'wallet_id' is set if @api_client.config.client_side_validation && wallet_id.nil? fail ArgumentError, "Missing the required parameter 'wallet_id' when calling SmartContractsApi.get_smart_contract" 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 SmartContractsApi.get_smart_contract" end # verify the required parameter 'smart_contract_id' is set if @api_client.config.client_side_validation && smart_contract_id.nil? fail ArgumentError, "Missing the required parameter 'smart_contract_id' when calling SmartContractsApi.get_smart_contract" end # resource path local_var_path = '/v1/wallets/{wallet_id}/addresses/{address_id}/smart_contracts/{smart_contract_id}'.sub('{' + 'wallet_id' + '}', CGI.escape(wallet_id.to_s)).sub('{' + 'address_id' + '}', CGI.escape(address_id.to_s)).sub('{' + 'smart_contract_id' + '}', CGI.escape(smart_contract_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']) unless header_params['Accept'] # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'SmartContract' # auth_names auth_names = opts[:debug_auth_names] || ['apiKey', 'session'] = opts.merge( :operation => :"SmartContractsApi.get_smart_contract", :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: SmartContractsApi#get_smart_contract\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_smart_contracts(opts = {}) ⇒ SmartContractList
List smart contracts List smart contracts
268 269 270 271 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 268 def list_smart_contracts(opts = {}) data, _status_code, _headers = list_smart_contracts_with_http_info(opts) data end |
#list_smart_contracts_with_http_info(opts = {}) ⇒ Array<(SmartContractList, Integer, Hash)>
List smart contracts List smart contracts
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 310 311 312 313 314 315 316 317 318 319 320 321 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 278 def list_smart_contracts_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SmartContractsApi.list_smart_contracts ...' end # resource path local_var_path = '/v1/smart_contracts' # query parameters query_params = opts[:query_params] || {} 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']) unless header_params['Accept'] # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'SmartContractList' # auth_names auth_names = opts[:debug_auth_names] || ['apiKey', 'session'] = opts.merge( :operation => :"SmartContractsApi.list_smart_contracts", :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: SmartContractsApi#list_smart_contracts\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#read_contract(network_id, contract_address, read_contract_request, opts = {}) ⇒ SolidityValue
Read data from a smart contract Perform a read operation on a smart contract without creating a transaction
330 331 332 333 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 330 def read_contract(network_id, contract_address, read_contract_request, opts = {}) data, _status_code, _headers = read_contract_with_http_info(network_id, contract_address, read_contract_request, opts) data end |
#read_contract_with_http_info(network_id, contract_address, read_contract_request, opts = {}) ⇒ Array<(SolidityValue, Integer, Hash)>
Read data from a smart contract Perform a read operation on a smart contract without creating a transaction
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 342 def read_contract_with_http_info(network_id, contract_address, read_contract_request, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SmartContractsApi.read_contract ...' 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 SmartContractsApi.read_contract" end # verify the required parameter 'contract_address' is set if @api_client.config.client_side_validation && contract_address.nil? fail ArgumentError, "Missing the required parameter 'contract_address' when calling SmartContractsApi.read_contract" end # verify the required parameter 'read_contract_request' is set if @api_client.config.client_side_validation && read_contract_request.nil? fail ArgumentError, "Missing the required parameter 'read_contract_request' when calling SmartContractsApi.read_contract" end # resource path local_var_path = '/v1/networks/{network_id}/smart_contracts/{contract_address}/read'.sub('{' + 'network_id' + '}', CGI.escape(network_id.to_s)).sub('{' + 'contract_address' + '}', CGI.escape(contract_address.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']) unless header_params['Accept'] # 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(read_contract_request) # return_type return_type = opts[:debug_return_type] || 'SolidityValue' # auth_names auth_names = opts[:debug_auth_names] || ['apiKey', 'session'] = opts.merge( :operation => :"SmartContractsApi.read_contract", :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: SmartContractsApi#read_contract\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#register_smart_contract(network_id, contract_address, opts = {}) ⇒ SmartContract
Register a smart contract Register a smart contract
410 411 412 413 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 410 def register_smart_contract(network_id, contract_address, opts = {}) data, _status_code, _headers = register_smart_contract_with_http_info(network_id, contract_address, opts) data end |
#register_smart_contract_with_http_info(network_id, contract_address, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Register a smart contract Register a smart contract
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 422 def register_smart_contract_with_http_info(network_id, contract_address, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SmartContractsApi.register_smart_contract ...' 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 SmartContractsApi.register_smart_contract" end # verify the required parameter 'contract_address' is set if @api_client.config.client_side_validation && contract_address.nil? fail ArgumentError, "Missing the required parameter 'contract_address' when calling SmartContractsApi.register_smart_contract" end # resource path local_var_path = '/v1/networks/{network_id}/smart_contracts/{contract_address}/register'.sub('{' + 'network_id' + '}', CGI.escape(network_id.to_s)).sub('{' + 'contract_address' + '}', CGI.escape(contract_address.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']) unless header_params['Accept'] # 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(opts[:'register_smart_contract_request']) # return_type return_type = opts[:debug_return_type] || 'SmartContract' # auth_names auth_names = opts[:debug_auth_names] || ['apiKey', 'session'] = opts.merge( :operation => :"SmartContractsApi.register_smart_contract", :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: SmartContractsApi#register_smart_contract\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_smart_contract(network_id, contract_address, opts = {}) ⇒ SmartContract
Update a smart contract Update a smart contract
486 487 488 489 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 486 def update_smart_contract(network_id, contract_address, opts = {}) data, _status_code, _headers = update_smart_contract_with_http_info(network_id, contract_address, opts) data end |
#update_smart_contract_with_http_info(network_id, contract_address, opts = {}) ⇒ Array<(SmartContract, Integer, Hash)>
Update a smart contract Update a smart contract
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 |
# File 'lib/coinbase/client/api/smart_contracts_api.rb', line 498 def update_smart_contract_with_http_info(network_id, contract_address, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SmartContractsApi.update_smart_contract ...' 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 SmartContractsApi.update_smart_contract" end # verify the required parameter 'contract_address' is set if @api_client.config.client_side_validation && contract_address.nil? fail ArgumentError, "Missing the required parameter 'contract_address' when calling SmartContractsApi.update_smart_contract" end # resource path local_var_path = '/v1/networks/{network_id}/smart_contracts/{contract_address}'.sub('{' + 'network_id' + '}', CGI.escape(network_id.to_s)).sub('{' + 'contract_address' + '}', CGI.escape(contract_address.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']) unless header_params['Accept'] # 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(opts[:'update_smart_contract_request']) # return_type return_type = opts[:debug_return_type] || 'SmartContract' # auth_names auth_names = opts[:debug_auth_names] || ['apiKey', 'session'] = opts.merge( :operation => :"SmartContractsApi.update_smart_contract", :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(:PUT, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: SmartContractsApi#update_smart_contract\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |