View Source Radixir.Gateway.Request.BuildTransaction (radixir v0.0.3)
Methods to create each map in BuildTransaction
request body.
Link to this section Summary
Functions
Adds actions
to BuildTransaction
request body.
Generates stitch plan for at_state_identifier
map in BuildTransaction
request body.
Generates stitch plan for disable_token_mint_and_burn
map in BuildTransaction
request body.
Generates stitch plan for fee_payer
map in BuildTransaction
request body.
Generates stitch plan for message
map in BuildTransaction
request body.
Generates stitch plan for network_identifier
map in BuildTransaction
request body.
Link to this section Types
Link to this section Functions
Specs
add_actions(request(), actions()) :: stitch_plans()
Adds actions
to BuildTransaction
request body.
Parameters
request
: Request body.actions
: List of action maps to be added to request body.
Specs
at_state_identifier(stitch_plans(), params()) :: stitch_plans()
Generates stitch plan for at_state_identifier
map in BuildTransaction
request body.
Parameters
stitch_plans
: On-going stitch plans that will be stitched into a map.params
: Keyword list that contains:version
(optional, integer): Version.timestamp
(optional, string): Timestamp.epoch
(optional, integer): Epoch.round
(optional, integer): Round.
Specs
disable_token_mint_and_burn(stitch_plans(), params()) :: stitch_plans()
Generates stitch plan for disable_token_mint_and_burn
map in BuildTransaction
request body.
Parameters
stitch_plans
: On-going stitch plans that will be stitched into a map.params
: Keyword list that contains:disable_token_mint_and_burn
(required, boolean): Disable Token Mint and Burn.
Specs
fee_payer(stitch_plans(), params()) :: stitch_plans()
Generates stitch plan for fee_payer
map in BuildTransaction
request body.
Parameters
stitch_plans
: On-going stitch plans that will be stitched into a map.params
: Keyword list that contains:address
(required, string): Radix address.
Specs
message(stitch_plans(), params()) :: stitch_plans()
Generates stitch plan for message
map in BuildTransaction
request body.
Parameters
stitch_plans
: On-going stitch plans that will be stitched into a map.params
: Keyword list that contains:message
(required, string): Message.
Specs
network_identifier(stitch_plans(), params()) :: stitch_plans()
Generates stitch plan for network_identifier
map in BuildTransaction
request body.
Parameters
stitch_plans
: On-going stitch plans that will be stitched into a map.params
: Keyword list that contains:network
(optional, string): Ifnetwork
is not in params it will default to what is returned fromRadixir.Config.network()
.