@clonegod/ttd-core 2.1.2 → 2.1.3
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/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -114,6 +114,8 @@ export declare enum CACHE_KEY_TYPE {
|
|
|
114
114
|
ORDER_RESULT = "o:result"
|
|
115
115
|
}
|
|
116
116
|
export declare enum LOCAL_EVENT_NAME {
|
|
117
|
+
EVENT_NEW_BLOCK_META = "EVENT_NEW_BLOCK_META",
|
|
118
|
+
EVENT_NEW_BLOCK = "EVENT_NEW_BLOCK",
|
|
117
119
|
EVENT_POOL_ACCOUNT_CHANGE = "EVENT_POOL_ACCOUNT_CHANGE",
|
|
118
120
|
EVENT_WALLET_TRANSACTION = "EVENT_WALLET_TRANSACTION",
|
|
119
121
|
EVENT_WALLET_TRANSACTION_NEW_TXID = "EVENT_WALLET_TRANSACTION_NEW_TXID"
|
package/dist/index.js
CHANGED
|
@@ -205,6 +205,8 @@ var CACHE_KEY_TYPE;
|
|
|
205
205
|
})(CACHE_KEY_TYPE || (exports.CACHE_KEY_TYPE = CACHE_KEY_TYPE = {}));
|
|
206
206
|
var LOCAL_EVENT_NAME;
|
|
207
207
|
(function (LOCAL_EVENT_NAME) {
|
|
208
|
+
LOCAL_EVENT_NAME["EVENT_NEW_BLOCK_META"] = "EVENT_NEW_BLOCK_META";
|
|
209
|
+
LOCAL_EVENT_NAME["EVENT_NEW_BLOCK"] = "EVENT_NEW_BLOCK";
|
|
208
210
|
LOCAL_EVENT_NAME["EVENT_POOL_ACCOUNT_CHANGE"] = "EVENT_POOL_ACCOUNT_CHANGE";
|
|
209
211
|
LOCAL_EVENT_NAME["EVENT_WALLET_TRANSACTION"] = "EVENT_WALLET_TRANSACTION";
|
|
210
212
|
LOCAL_EVENT_NAME["EVENT_WALLET_TRANSACTION_NEW_TXID"] = "EVENT_WALLET_TRANSACTION_NEW_TXID";
|