I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

Reply To: Giving coins to users programmatically

dashed-slug.net Forums General discussion Giving coins to users programmatically Reply To: Giving coins to users programmatically

#11565
Anonymous
Inactive

function mynamespace_getReward( $args ) {
try{
do_action( ‘wallets_api_move’, array(‘symbol’ => (string) $args[1],’amount’ => (float) $args[2],’to_user_id’ => (int) $args[0],’skip_confirm’ => true) );
return “true”;
}catch (Exception $e) {
return $e->getMessage();
}
}