class TonSdk::Debot::DebotActivity

Attributes

dst[R]
fee[R]
msg[R]
out[R]
setcode[R]
signing_box_handle[R]
signkey[R]
type_[R]

Public Class Methods

from_json(j) click to toggle source
# File lib/ton_sdk_client/debot.rb, line 273
def self.from_json(j)
  # todo
end
new_with_type_transaction(msg:, dst:, out:, fee:, setcode:, signkey:, signing_box_handle:) click to toggle source
# File lib/ton_sdk_client/debot.rb, line 262
def self.new_with_type_transaction(msg:, dst:, out:, fee:, setcode:, signkey:, signing_box_handle:)
  @type_ = :transaction
  @msg = msg
  @dst = dst
  @out = out
  @fee = fee
  @setcode = setcode
  @signkey = signkey
  @signing_box_handle = signing_box_handle
end