diff options
Diffstat (limited to 'tests/unit/stubs/nucula_wallet.h')
| -rw-r--r-- | tests/unit/stubs/nucula_wallet.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/unit/stubs/nucula_wallet.h b/tests/unit/stubs/nucula_wallet.h new file mode 100644 index 0000000..260ec35 --- /dev/null +++ b/tests/unit/stubs/nucula_wallet.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | #ifndef STUBS_NUCULA_WALLET_H | ||
| 2 | #define STUBS_NUCULA_WALLET_H | ||
| 3 | |||
| 4 | #include "esp_err.h" | ||
| 5 | #include <stdint.h> | ||
| 6 | #include <stddef.h> | ||
| 7 | |||
| 8 | esp_err_t nucula_wallet_init(const char *mint_url); | ||
| 9 | esp_err_t nucula_wallet_receive(const char *token_str); | ||
| 10 | esp_err_t nucula_wallet_send(uint64_t amount_sat, char *token_out, size_t token_out_size); | ||
| 11 | uint64_t nucula_wallet_balance(void); | ||
| 12 | int nucula_wallet_proof_count(void); | ||
| 13 | char *nucula_wallet_proofs_json(void); | ||
| 14 | esp_err_t nucula_wallet_swap_all(void); | ||
| 15 | void nucula_wallet_print_status(void); | ||
| 16 | |||
| 17 | #endif | ||