input
// SYNTAX
input(input_type, input_id)
// EXAMPLE
prompt :-
show [
text('Receiver'),
input(address, receiver_address),
text('Amount'),
input(eth, paid_amount)
].Last updated
// SYNTAX
input(input_type, input_id)
// EXAMPLE
prompt :-
show [
text('Receiver'),
input(address, receiver_address),
text('Amount'),
input(eth, paid_amount)
].Last updated
// SYNTAX
get(input/input_name, InputValue)
// EXAMPLE
get(input/receiver_address, ReceiverAddr)
get(input/paid_amount, PaidAmount)