dashameter
dashameter
on v.22 the query: ``` const queryOpts = { where: [ ["normalizedParentDomainName", "==", "dash"], ], orderBy: [["normalizedLabel", "asc"]], }; ``` throws ``` INVALID_ARGUMENT: Invalid query: Invalid orderBy property normalizedLabel. Should...
Using an array of buffer identity Ids: ```js ownerIds :>> (5) [Uint8Array(32), Uint8Array(32), Uint8Array(32), Uint8Array(32), Uint8Array(32)] ``` And a query using the `in` operator according to https://dashplatform.readme.io/docs/reference-query-syntax#operator-examples ```js { where:...
Consider a tx with the option `deductFee: false` and an amount of e.g. `2e6`: ``` const transaction = client.account.createTransaction({ deductFee: false, recipients: [ { recipient: "y...", satoshis: 2e6, }, ],...
After removal of the insight api `getUTXO` method to retrieve the balance of an external address one must use a centralized insight server or use the low level `subscribeToTransactionsWithProofs` method...