Skip to content

Commit

Permalink
update dist, typedocs, and monero-cpp submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Oct 12, 2023
1 parent ad661fd commit d761b70
Show file tree
Hide file tree
Showing 32 changed files with 350 additions and 77 deletions.
2 changes: 1 addition & 1 deletion dist/dist/monero_wallet_full.js

Large diffs are not rendered by default.

Binary file modified dist/dist/monero_wallet_full.wasm
Binary file not shown.
Binary file modified dist/dist/monero_wallet_keys.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/dist/monero_web_worker.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/monero_wallet_full.js

Large diffs are not rendered by default.

Binary file modified dist/monero_wallet_full.wasm
Binary file not shown.
Binary file modified dist/monero_wallet_keys.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/monero_web_worker.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/monero_web_worker.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/src/main/ts/common/MoneroUtils.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/src/main/ts/daemon/MoneroDaemonRpc.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/src/main/ts/daemon/model/MoneroDaemonConfig.d.ts
Expand Up @@ -3,9 +3,13 @@ import MoneroRpcConnection from "../../common/MoneroRpcConnection";
* Configuration to connect to monerod.
*/
export default class MoneroDaemonConfig {
/** Server config to monerod. */
server: string | Partial<MoneroRpcConnection>;
/** Proxy requests to monerod to a worker (default true). */
proxyToWorker: boolean;
/** Command to start monerod as a child process. */
cmd: string[];
/** Interval in milliseconds to poll the daemon for updates (default 20000). */
pollInterval: number;
/**
* Construct a configuration to open or create a wallet.
Expand Down
9 changes: 8 additions & 1 deletion dist/src/main/ts/daemon/model/MoneroDaemonConfig.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion dist/src/main/ts/wallet/MoneroWallet.d.ts
Expand Up @@ -58,6 +58,12 @@ export default class MoneroWallet {
static readonly DEFAULT_LANGUAGE = "English";
protected connectionManager: MoneroConnectionManager;
protected connectionManagerListener: MoneroConnectionManagerListener;
/**
* Hidden constructor.
*
* @private
*/
constructor();
/**
* Register a listener to receive wallet notifications.
*
Expand Down Expand Up @@ -536,7 +542,7 @@ export default class MoneroWallet {
* @param {number[]} [config.subaddressIndices] - source subaddress indices to transfer funds from (optional)
* @param {boolean} [config.relay] - relay the transaction to peers to commit to the blockchain (default false)
* @param {MoneroTxPriority} [config.priority] - transaction priority (default MoneroTxPriority.NORMAL)
* @param {MoneroDestination[] | MoneroDestinationModel[]} config.destinations - addresses and amounts in a multi-destination tx (required unless `address` and `amount` provided)
* @param {MoneroDestination[]} config.destinations - addresses and amounts in a multi-destination tx (required unless `address` and `amount` provided)
* @param {number[]} [config.subtractFeeFrom] - list of destination indices to split the transaction fee (optional)
* @param {string} [config.paymentId] - transaction payment ID (optional)
* @param {bigint|string} [config.unlockTime] - minimum height or timestamp for the transaction to unlock (default 0)
Expand Down
7 changes: 4 additions & 3 deletions dist/src/main/ts/wallet/MoneroWallet.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/src/main/ts/wallet/MoneroWalletFull.d.ts
Expand Up @@ -49,7 +49,7 @@ export default class MoneroWalletFull extends MoneroWalletKeys {
/**
* Internal constructor which is given the memory address of a C++ wallet instance.
*
* This constructor should not be called through static wallet creation utilities in this class.
* This constructor should be called through static wallet creation utilities in this class.
*
* @param {number} cppAddress - address of the wallet instance in C++
* @param {string} path - path of the wallet instance
Expand Down
4 changes: 1 addition & 3 deletions dist/src/main/ts/wallet/MoneroWalletFull.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/src/main/ts/wallet/MoneroWalletRpc.d.ts
Expand Up @@ -323,7 +323,7 @@ export default class MoneroWalletRpc extends MoneroWallet {
/**
* Initializes a sent transaction.
*
* TODO: remove copyDestinations after >18.2.2 when subtractFeeFrom fully supported
* TODO: remove copyDestinations after >18.3.1 when subtractFeeFrom fully supported
*
* @param {MoneroTxConfig} config - send config
* @param {MoneroTxWallet} [tx] - existing transaction to initialize (optional)
Expand Down
6 changes: 3 additions & 3 deletions dist/src/main/ts/wallet/MoneroWalletRpc.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/src/main/ts/wallet/model/MoneroDestination.d.ts
Expand Up @@ -2,7 +2,9 @@
* Models an outgoing transfer destination.
*/
export default class MoneroDestination {
/** Destination address to send funds to. */
address: string;
/** Amount to send to destination address. */
amount: bigint;
/**
* Construct a destination to send funds to.
Expand Down

0 comments on commit d761b70

Please sign in to comment.