├── LICENSE.txt ├── README.md ├── go.mod ├── go.sum ├── pkg └── json2 │ ├── LICENSE │ ├── client.go │ └── error.go └── walletrpc ├── add_address_book.go ├── auto_refresh.go ├── change_wallet_password.go ├── check_reserve_proof.go ├── check_spend_proof.go ├── check_tx_key.go ├── check_tx_proof.go ├── client.go ├── close_wallet.go ├── common.go ├── config.go ├── consts.go ├── create_account.go ├── create_address.go ├── create_wallet.go ├── delete_address_book.go ├── describe_transfer.go ├── edit_address_book.go ├── export_key_images.go ├── export_multisig_info.go ├── export_outputs.go ├── finalize_multisig.go ├── generate_from_keys.go ├── get_account_tags.go ├── get_accounts.go ├── get_address.go ├── get_address_book.go ├── get_address_index.go ├── get_attribute.go ├── get_balance.go ├── get_bulk_payments.go ├── get_height.go ├── get_languages.go ├── get_payments.go ├── get_reserve_proof.go ├── get_spend_proof.go ├── get_transfer_by_txid.go ├── get_transfers.go ├── get_tx_key.go ├── get_tx_notes.go ├── get_tx_proof.go ├── get_version.go ├── import_key_images.go ├── import_multisig_info.go ├── import_outputs.go ├── incoming_transfers.go ├── is_multisig.go ├── label_account.go ├── label_address.go ├── make_integrated_address.go ├── make_multisig.go ├── make_uri.go ├── open_wallet.go ├── parse_uri.go ├── prepare_multisig.go ├── query_key.go ├── refresh.go ├── relay_tx.go ├── rescan_blockchain.go ├── rescan_spent.go ├── restore_deterministic_wallet.go ├── set_account_tag_description.go ├── set_attribute.go ├── set_daemon.go ├── set_tx_notes.go ├── sign.go ├── sign_multisig.go ├── sign_transfer.go ├── split_integrated_address.go ├── start_mining.go ├── stop_mining.go ├── stop_wallet.go ├── store.go ├── submit_multisig.go ├── submit_transfer.go ├── sweep_all.go ├── sweep_dust.go ├── sweep_single.go ├── tag_accounts.go ├── transfer.go ├── transfer_split.go ├── unit └── unit.go ├── untag_accounts.go ├── util.go ├── util_test.go ├── validate_address.go └── verify.go /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/json2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/pkg/json2/LICENSE -------------------------------------------------------------------------------- /pkg/json2/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/pkg/json2/client.go -------------------------------------------------------------------------------- /pkg/json2/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/pkg/json2/error.go -------------------------------------------------------------------------------- /walletrpc/add_address_book.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/add_address_book.go -------------------------------------------------------------------------------- /walletrpc/auto_refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/auto_refresh.go -------------------------------------------------------------------------------- /walletrpc/change_wallet_password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/change_wallet_password.go -------------------------------------------------------------------------------- /walletrpc/check_reserve_proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/check_reserve_proof.go -------------------------------------------------------------------------------- /walletrpc/check_spend_proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/check_spend_proof.go -------------------------------------------------------------------------------- /walletrpc/check_tx_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/check_tx_key.go -------------------------------------------------------------------------------- /walletrpc/check_tx_proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/check_tx_proof.go -------------------------------------------------------------------------------- /walletrpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/client.go -------------------------------------------------------------------------------- /walletrpc/close_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/close_wallet.go -------------------------------------------------------------------------------- /walletrpc/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/common.go -------------------------------------------------------------------------------- /walletrpc/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/config.go -------------------------------------------------------------------------------- /walletrpc/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/consts.go -------------------------------------------------------------------------------- /walletrpc/create_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/create_account.go -------------------------------------------------------------------------------- /walletrpc/create_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/create_address.go -------------------------------------------------------------------------------- /walletrpc/create_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/create_wallet.go -------------------------------------------------------------------------------- /walletrpc/delete_address_book.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/delete_address_book.go -------------------------------------------------------------------------------- /walletrpc/describe_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/describe_transfer.go -------------------------------------------------------------------------------- /walletrpc/edit_address_book.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/edit_address_book.go -------------------------------------------------------------------------------- /walletrpc/export_key_images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/export_key_images.go -------------------------------------------------------------------------------- /walletrpc/export_multisig_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/export_multisig_info.go -------------------------------------------------------------------------------- /walletrpc/export_outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/export_outputs.go -------------------------------------------------------------------------------- /walletrpc/finalize_multisig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/finalize_multisig.go -------------------------------------------------------------------------------- /walletrpc/generate_from_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/generate_from_keys.go -------------------------------------------------------------------------------- /walletrpc/get_account_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_account_tags.go -------------------------------------------------------------------------------- /walletrpc/get_accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_accounts.go -------------------------------------------------------------------------------- /walletrpc/get_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_address.go -------------------------------------------------------------------------------- /walletrpc/get_address_book.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_address_book.go -------------------------------------------------------------------------------- /walletrpc/get_address_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_address_index.go -------------------------------------------------------------------------------- /walletrpc/get_attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_attribute.go -------------------------------------------------------------------------------- /walletrpc/get_balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_balance.go -------------------------------------------------------------------------------- /walletrpc/get_bulk_payments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_bulk_payments.go -------------------------------------------------------------------------------- /walletrpc/get_height.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_height.go -------------------------------------------------------------------------------- /walletrpc/get_languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_languages.go -------------------------------------------------------------------------------- /walletrpc/get_payments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_payments.go -------------------------------------------------------------------------------- /walletrpc/get_reserve_proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_reserve_proof.go -------------------------------------------------------------------------------- /walletrpc/get_spend_proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_spend_proof.go -------------------------------------------------------------------------------- /walletrpc/get_transfer_by_txid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_transfer_by_txid.go -------------------------------------------------------------------------------- /walletrpc/get_transfers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_transfers.go -------------------------------------------------------------------------------- /walletrpc/get_tx_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_tx_key.go -------------------------------------------------------------------------------- /walletrpc/get_tx_notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_tx_notes.go -------------------------------------------------------------------------------- /walletrpc/get_tx_proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_tx_proof.go -------------------------------------------------------------------------------- /walletrpc/get_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/get_version.go -------------------------------------------------------------------------------- /walletrpc/import_key_images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/import_key_images.go -------------------------------------------------------------------------------- /walletrpc/import_multisig_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/import_multisig_info.go -------------------------------------------------------------------------------- /walletrpc/import_outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/import_outputs.go -------------------------------------------------------------------------------- /walletrpc/incoming_transfers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/incoming_transfers.go -------------------------------------------------------------------------------- /walletrpc/is_multisig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/is_multisig.go -------------------------------------------------------------------------------- /walletrpc/label_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/label_account.go -------------------------------------------------------------------------------- /walletrpc/label_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/label_address.go -------------------------------------------------------------------------------- /walletrpc/make_integrated_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/make_integrated_address.go -------------------------------------------------------------------------------- /walletrpc/make_multisig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/make_multisig.go -------------------------------------------------------------------------------- /walletrpc/make_uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/make_uri.go -------------------------------------------------------------------------------- /walletrpc/open_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/open_wallet.go -------------------------------------------------------------------------------- /walletrpc/parse_uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/parse_uri.go -------------------------------------------------------------------------------- /walletrpc/prepare_multisig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/prepare_multisig.go -------------------------------------------------------------------------------- /walletrpc/query_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/query_key.go -------------------------------------------------------------------------------- /walletrpc/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/refresh.go -------------------------------------------------------------------------------- /walletrpc/relay_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/relay_tx.go -------------------------------------------------------------------------------- /walletrpc/rescan_blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/rescan_blockchain.go -------------------------------------------------------------------------------- /walletrpc/rescan_spent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/rescan_spent.go -------------------------------------------------------------------------------- /walletrpc/restore_deterministic_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/restore_deterministic_wallet.go -------------------------------------------------------------------------------- /walletrpc/set_account_tag_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/set_account_tag_description.go -------------------------------------------------------------------------------- /walletrpc/set_attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/set_attribute.go -------------------------------------------------------------------------------- /walletrpc/set_daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/set_daemon.go -------------------------------------------------------------------------------- /walletrpc/set_tx_notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/set_tx_notes.go -------------------------------------------------------------------------------- /walletrpc/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/sign.go -------------------------------------------------------------------------------- /walletrpc/sign_multisig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/sign_multisig.go -------------------------------------------------------------------------------- /walletrpc/sign_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/sign_transfer.go -------------------------------------------------------------------------------- /walletrpc/split_integrated_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/split_integrated_address.go -------------------------------------------------------------------------------- /walletrpc/start_mining.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/start_mining.go -------------------------------------------------------------------------------- /walletrpc/stop_mining.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/stop_mining.go -------------------------------------------------------------------------------- /walletrpc/stop_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/stop_wallet.go -------------------------------------------------------------------------------- /walletrpc/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/store.go -------------------------------------------------------------------------------- /walletrpc/submit_multisig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/submit_multisig.go -------------------------------------------------------------------------------- /walletrpc/submit_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/submit_transfer.go -------------------------------------------------------------------------------- /walletrpc/sweep_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/sweep_all.go -------------------------------------------------------------------------------- /walletrpc/sweep_dust.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/sweep_dust.go -------------------------------------------------------------------------------- /walletrpc/sweep_single.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/sweep_single.go -------------------------------------------------------------------------------- /walletrpc/tag_accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/tag_accounts.go -------------------------------------------------------------------------------- /walletrpc/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/transfer.go -------------------------------------------------------------------------------- /walletrpc/transfer_split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/transfer_split.go -------------------------------------------------------------------------------- /walletrpc/unit/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/unit/unit.go -------------------------------------------------------------------------------- /walletrpc/untag_accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/untag_accounts.go -------------------------------------------------------------------------------- /walletrpc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/util.go -------------------------------------------------------------------------------- /walletrpc/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/util_test.go -------------------------------------------------------------------------------- /walletrpc/validate_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/validate_address.go -------------------------------------------------------------------------------- /walletrpc/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moneropay/go-monero/HEAD/walletrpc/verify.go --------------------------------------------------------------------------------