Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

v0.2.2

Compare
Choose a tag to compare
@DenisCarriere DenisCarriere released this 06 Sep 14:16
· 15 commits to main since this release
  • add optional<string> memo field to claim & withdraw ACTIONS

ACTION claim

  • authority: approved_user_id (EOSN Login)

Hunter claims bounty funds

params

  • {name} bounty_id - bounty ID
  • {name} chain - chain name
  • {name} receiver - receiver (Antelope account or EVM address)
  • {string} [memo=""] - (optional) memo (only available when using Antelope receiver)

example

// claim to EOS Native
$ cleos push action work.pomelo claim '[bounty1, eos, "myaccount", null]' -p claimer.eosn

// claim to Exchange
$ cleos push action work.pomelo claim '[bounty1, eos, "eosbndeposit", "100245696"]' -p claimer.eosn

// claim to EOS EVM
$ cleos push action work.pomelo claim '[bounty1, eos.evm, "0xaa2F34E41B397aD905e2f48059338522D05CA534", null]' -p claimer.eosn