quantum-coin-js-sdk 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/example/example.js +1 -1
- package/example/package-lock.json +3 -3
- package/index.js +4 -0
- package/package.json +1 -1
package/example/example.js
CHANGED
|
@@ -193,7 +193,7 @@ qcsdk.initialize(clientConfigVal).then((initResult) => {
|
|
|
193
193
|
});
|
|
194
194
|
|
|
195
195
|
//List transactions of an account
|
|
196
|
-
|
|
196
|
+
address = "0x0000000000000000000000000000000000000000000000000000000000002000";
|
|
197
197
|
let pageNumber = 0; //zero is default for latest page
|
|
198
198
|
qcsdk.listAccountTransactions(address, pageNumber).then((accountTransactionsResult) => {
|
|
199
199
|
if (accountTransactionsResult === null) {
|
|
@@ -86,9 +86,9 @@
|
|
|
86
86
|
"integrity": "sha512-7Q5YlFvaXoP+MK+yn4KH4MYvJDkyGoGUU/zKYsRxR1mVqddqGUsGvz2JTsfH5B/Gkk97gMMh3PQ7MmkM8iJA5Q=="
|
|
87
87
|
},
|
|
88
88
|
"node_modules/quantum-coin-js-sdk": {
|
|
89
|
-
"version": "1.0.
|
|
90
|
-
"resolved": "https://registry.npmjs.org/quantum-coin-js-sdk/-/quantum-coin-js-sdk-1.0.
|
|
91
|
-
"integrity": "sha512-
|
|
89
|
+
"version": "1.0.9",
|
|
90
|
+
"resolved": "https://registry.npmjs.org/quantum-coin-js-sdk/-/quantum-coin-js-sdk-1.0.9.tgz",
|
|
91
|
+
"integrity": "sha512-S/4ObylrlC/6iOKJKB5qd83z8CNpOWMMHyXUOnLHzfH9PNwttJjoO0cDh6pM97wzjM9biKBbSbxSkCzXMAjypQ==",
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"pqc-js-sdk": "^1.0.0"
|
|
94
94
|
}
|
package/index.js
CHANGED
|
@@ -1382,6 +1382,7 @@ module.exports = {
|
|
|
1382
1382
|
isAddressValid,
|
|
1383
1383
|
getLatestBlockDetails,
|
|
1384
1384
|
signSendCoinTransaction,
|
|
1385
|
+
listAccountTransactions,
|
|
1385
1386
|
postTransaction,
|
|
1386
1387
|
Config,
|
|
1387
1388
|
Wallet,
|
|
@@ -1393,4 +1394,7 @@ module.exports = {
|
|
|
1393
1394
|
TransactionReceipt,
|
|
1394
1395
|
TransactionDetails,
|
|
1395
1396
|
TransactionDetailsResult,
|
|
1397
|
+
AccountTransactionsResult,
|
|
1398
|
+
ListAccountTransactionsResponse,
|
|
1399
|
+
AccountTransactionCompact
|
|
1396
1400
|
};
|