package octez-protocol-017-PtNairob-libs
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
sha256=55ea1fb8bb3273a7fc270ca8f650d45c56449665619482aad9bc12f3ea736b7e
    
    
  sha512=fec850fc2d17d7490bbabd5147d62aad13b3aaed8774270f8a38ab419670ed03e0fd30cf8642a97984eca5c2446726fe590ad99c015f7ec50919dc7652f25053
    
    
  doc/octez-protocol-017-PtNairob-libs.test-helpers/Tezos_017_PtNairob_test_helpers/Transfers/index.html
Module Tezos_017_PtNairob_test_helpers.TransfersSource
val transfer_and_check_balances : 
  ?with_burn:bool ->
  loc:string ->
  Incremental.t ->
  ?fee:Tezos_protocol_017_PtNairob.Protocol.Alpha_context.Tez.t ->
  ?expect_apply_failure:
    (Tezos_base.TzPervasives.error Tezos_base.TzPervasives.trace ->
      unit Tezos_base.TzPervasives.tzresult Lwt.t) ->
  Tezos_protocol_017_PtNairob.Protocol.Alpha_context.Contract.t ->
  Tezos_protocol_017_PtNairob.Protocol.Alpha_context.Contract.t ->
  Tezos_protocol_017_PtNairob.Protocol.Alpha_context.Tez.t ->
  (Incremental.t
   * Tezos_protocol_017_PtNairob.Protocol.Alpha_context.packed_operation)
    Tezos_base.TzPervasives.tzresult
    Lwt.ttransfer_and_check_balances b fee src dst amount this function takes a block, an optional parameter fee if fee does not given it will be set to zero tez, a source contract, a destination contract and the amount that one wants to transfer.
1- Transfer the amount of tez (w/wo fee) from a source contract to a destination contract.
2- Check the equivalent of the balance of the source/destination contract before and after transfer is validated.
This function returns a pair:
- A block that added a valid operation
 - a valid operation
 
val n_transactions : 
  int ->
  Incremental.t ->
  ?fee:Tezos_protocol_017_PtNairob.Protocol.Alpha_context.Tez.t ->
  Tezos_protocol_017_PtNairob.Protocol.Alpha_context.Contract.t ->
  Tezos_protocol_017_PtNairob.Protocol.Alpha_context.Contract.t ->
  Tezos_protocol_017_PtNairob.Protocol.Alpha_context.Tez.t ->
  Incremental.t Tezos_base.TzPervasives.tzresult Lwt.tn_transactions n b fee source dest amount this function takes a number of "n" that one wish to transfer, a block, an optional parameter fee, a source contract, a destination contract and an amount one wants to transfer.
This function will do a transaction from a source contract to a destination contract with the amount "n" times.