@sudobility/types 1.8.21

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.
Files changed (248) hide show
  1. package/CLAUDE.md +285 -0
  2. package/README.md +310 -0
  3. package/dist/index.cjs +62 -0
  4. package/dist/index.d.ts +18 -0
  5. package/dist/index.d.ts.map +1 -0
  6. package/dist/index.js +62 -0
  7. package/dist/index.js.map +1 -0
  8. package/dist/types/blockchain/common.cjs +102 -0
  9. package/dist/types/blockchain/common.d.ts +262 -0
  10. package/dist/types/blockchain/common.d.ts.map +1 -0
  11. package/dist/types/blockchain/common.js +102 -0
  12. package/dist/types/blockchain/common.js.map +1 -0
  13. package/dist/types/blockchain/index.cjs +18 -0
  14. package/dist/types/blockchain/index.d.ts +4 -0
  15. package/dist/types/blockchain/index.d.ts.map +1 -0
  16. package/dist/types/blockchain/index.js +18 -0
  17. package/dist/types/blockchain/index.js.map +1 -0
  18. package/dist/types/blockchain/validation.cjs +88 -0
  19. package/dist/types/blockchain/validation.d.ts +9 -0
  20. package/dist/types/blockchain/validation.d.ts.map +1 -0
  21. package/dist/types/blockchain/validation.js +88 -0
  22. package/dist/types/blockchain/validation.js.map +1 -0
  23. package/dist/types/business/enums.cjs +314 -0
  24. package/dist/types/business/enums.d.ts +227 -0
  25. package/dist/types/business/enums.d.ts.map +1 -0
  26. package/dist/types/business/enums.js +314 -0
  27. package/dist/types/business/enums.js.map +1 -0
  28. package/dist/types/business/index.cjs +33 -0
  29. package/dist/types/business/index.d.ts +5 -0
  30. package/dist/types/business/index.d.ts.map +1 -0
  31. package/dist/types/business/index.js +33 -0
  32. package/dist/types/business/index.js.map +1 -0
  33. package/dist/types/business/wallet-status.cjs +38 -0
  34. package/dist/types/business/wallet-status.d.ts +32 -0
  35. package/dist/types/business/wallet-status.d.ts.map +1 -0
  36. package/dist/types/business/wallet-status.js +38 -0
  37. package/dist/types/business/wallet-status.js.map +1 -0
  38. package/dist/types/common.cjs +6 -0
  39. package/dist/types/common.d.ts +142 -0
  40. package/dist/types/common.d.ts.map +1 -0
  41. package/dist/types/common.js +6 -0
  42. package/dist/types/common.js.map +1 -0
  43. package/dist/types/config/app-config.cjs +6 -0
  44. package/dist/types/config/app-config.d.ts +67 -0
  45. package/dist/types/config/app-config.d.ts.map +1 -0
  46. package/dist/types/config/app-config.js +6 -0
  47. package/dist/types/config/app-config.js.map +1 -0
  48. package/dist/types/config/environment.cjs +24 -0
  49. package/dist/types/config/environment.d.ts +68 -0
  50. package/dist/types/config/environment.d.ts.map +1 -0
  51. package/dist/types/config/environment.js +24 -0
  52. package/dist/types/config/environment.js.map +1 -0
  53. package/dist/types/config/index.cjs +6 -0
  54. package/dist/types/config/index.d.ts +4 -0
  55. package/dist/types/config/index.d.ts.map +1 -0
  56. package/dist/types/config/index.js +6 -0
  57. package/dist/types/config/index.js.map +1 -0
  58. package/dist/types/index.cjs +35 -0
  59. package/dist/types/index.d.ts +10 -0
  60. package/dist/types/index.d.ts.map +1 -0
  61. package/dist/types/index.js +35 -0
  62. package/dist/types/index.js.map +1 -0
  63. package/dist/types/indexer/index.cjs +19 -0
  64. package/dist/types/indexer/index.d.ts +3 -0
  65. package/dist/types/indexer/index.d.ts.map +1 -0
  66. package/dist/types/indexer/index.js +19 -0
  67. package/dist/types/indexer/index.js.map +1 -0
  68. package/dist/types/indexer/indexer-guards.cjs +145 -0
  69. package/dist/types/indexer/indexer-guards.d.ts +26 -0
  70. package/dist/types/indexer/indexer-guards.d.ts.map +1 -0
  71. package/dist/types/indexer/indexer-guards.js +145 -0
  72. package/dist/types/indexer/indexer-guards.js.map +1 -0
  73. package/dist/types/indexer/indexer-responses.cjs +8 -0
  74. package/dist/types/indexer/indexer-responses.d.ts +136 -0
  75. package/dist/types/indexer/indexer-responses.d.ts.map +1 -0
  76. package/dist/types/indexer/indexer-responses.js +8 -0
  77. package/dist/types/indexer/indexer-responses.js.map +1 -0
  78. package/dist/types/infrastructure/analytics.cjs +212 -0
  79. package/dist/types/infrastructure/analytics.d.ts +449 -0
  80. package/dist/types/infrastructure/analytics.d.ts.map +1 -0
  81. package/dist/types/infrastructure/analytics.js +212 -0
  82. package/dist/types/infrastructure/analytics.js.map +1 -0
  83. package/dist/types/infrastructure/api.cjs +17 -0
  84. package/dist/types/infrastructure/api.d.ts +152 -0
  85. package/dist/types/infrastructure/api.d.ts.map +1 -0
  86. package/dist/types/infrastructure/api.js +17 -0
  87. package/dist/types/infrastructure/api.js.map +1 -0
  88. package/dist/types/infrastructure/index.cjs +14 -0
  89. package/dist/types/infrastructure/index.d.ts +9 -0
  90. package/dist/types/infrastructure/index.d.ts.map +1 -0
  91. package/dist/types/infrastructure/index.js +14 -0
  92. package/dist/types/infrastructure/index.js.map +1 -0
  93. package/dist/types/infrastructure/navigation.cjs +3 -0
  94. package/dist/types/infrastructure/navigation.d.ts +56 -0
  95. package/dist/types/infrastructure/navigation.d.ts.map +1 -0
  96. package/dist/types/infrastructure/navigation.js +3 -0
  97. package/dist/types/infrastructure/navigation.js.map +1 -0
  98. package/dist/types/infrastructure/network.cjs +18 -0
  99. package/dist/types/infrastructure/network.d.ts +48 -0
  100. package/dist/types/infrastructure/network.d.ts.map +1 -0
  101. package/dist/types/infrastructure/network.js +18 -0
  102. package/dist/types/infrastructure/network.js.map +1 -0
  103. package/dist/types/infrastructure/wallet.cjs +37 -0
  104. package/dist/types/infrastructure/wallet.d.ts +33 -0
  105. package/dist/types/infrastructure/wallet.d.ts.map +1 -0
  106. package/dist/types/infrastructure/wallet.js +37 -0
  107. package/dist/types/infrastructure/wallet.js.map +1 -0
  108. package/dist/types/kyc/index.cjs +19 -0
  109. package/dist/types/kyc/index.d.ts +2 -0
  110. package/dist/types/kyc/index.d.ts.map +1 -0
  111. package/dist/types/kyc/index.js +19 -0
  112. package/dist/types/kyc/index.js.map +1 -0
  113. package/dist/types/kyc/kyc-types.cjs +12 -0
  114. package/dist/types/kyc/kyc-types.d.ts +260 -0
  115. package/dist/types/kyc/kyc-types.d.ts.map +1 -0
  116. package/dist/types/kyc/kyc-types.js +12 -0
  117. package/dist/types/kyc/kyc-types.js.map +1 -0
  118. package/dist/types/mailer/index.cjs +19 -0
  119. package/dist/types/mailer/index.d.ts +2 -0
  120. package/dist/types/mailer/index.d.ts.map +1 -0
  121. package/dist/types/mailer/index.js +19 -0
  122. package/dist/types/mailer/index.js.map +1 -0
  123. package/dist/types/mailer/mail-types.cjs +38 -0
  124. package/dist/types/mailer/mail-types.d.ts +296 -0
  125. package/dist/types/mailer/mail-types.d.ts.map +1 -0
  126. package/dist/types/mailer/mail-types.js +38 -0
  127. package/dist/types/mailer/mail-types.js.map +1 -0
  128. package/dist/types/wildduck/index.cjs +19 -0
  129. package/dist/types/wildduck/index.d.ts +2 -0
  130. package/dist/types/wildduck/index.d.ts.map +1 -0
  131. package/dist/types/wildduck/index.js +19 -0
  132. package/dist/types/wildduck/index.js.map +1 -0
  133. package/dist/types/wildduck/wildduck-types.cjs +48 -0
  134. package/dist/types/wildduck/wildduck-types.d.ts +1239 -0
  135. package/dist/types/wildduck/wildduck-types.d.ts.map +1 -0
  136. package/dist/types/wildduck/wildduck-types.js +48 -0
  137. package/dist/types/wildduck/wildduck-types.js.map +1 -0
  138. package/dist/utils/async-helpers.cjs +130 -0
  139. package/dist/utils/async-helpers.d.ts +35 -0
  140. package/dist/utils/async-helpers.d.ts.map +1 -0
  141. package/dist/utils/async-helpers.js +130 -0
  142. package/dist/utils/async-helpers.js.map +1 -0
  143. package/dist/utils/auth/auth.cjs +96 -0
  144. package/dist/utils/auth/auth.d.ts +40 -0
  145. package/dist/utils/auth/auth.d.ts.map +1 -0
  146. package/dist/utils/auth/auth.js +96 -0
  147. package/dist/utils/auth/auth.js.map +1 -0
  148. package/dist/utils/auth/index.cjs +14 -0
  149. package/dist/utils/auth/index.d.ts +2 -0
  150. package/dist/utils/auth/index.d.ts.map +1 -0
  151. package/dist/utils/auth/index.js +14 -0
  152. package/dist/utils/auth/index.js.map +1 -0
  153. package/dist/utils/blockchain/address.cjs +231 -0
  154. package/dist/utils/blockchain/address.d.ts +65 -0
  155. package/dist/utils/blockchain/address.d.ts.map +1 -0
  156. package/dist/utils/blockchain/address.js +231 -0
  157. package/dist/utils/blockchain/address.js.map +1 -0
  158. package/dist/utils/blockchain/event-helpers.cjs +143 -0
  159. package/dist/utils/blockchain/event-helpers.d.ts +87 -0
  160. package/dist/utils/blockchain/event-helpers.d.ts.map +1 -0
  161. package/dist/utils/blockchain/event-helpers.js +143 -0
  162. package/dist/utils/blockchain/event-helpers.js.map +1 -0
  163. package/dist/utils/blockchain/index.cjs +30 -0
  164. package/dist/utils/blockchain/index.d.ts +8 -0
  165. package/dist/utils/blockchain/index.d.ts.map +1 -0
  166. package/dist/utils/blockchain/index.js +30 -0
  167. package/dist/utils/blockchain/index.js.map +1 -0
  168. package/dist/utils/blockchain/rpc-helpers.cjs +865 -0
  169. package/dist/utils/blockchain/rpc-helpers.d.ts +251 -0
  170. package/dist/utils/blockchain/rpc-helpers.d.ts.map +1 -0
  171. package/dist/utils/blockchain/rpc-helpers.js +865 -0
  172. package/dist/utils/blockchain/rpc-helpers.js.map +1 -0
  173. package/dist/utils/constants/application.cjs +158 -0
  174. package/dist/utils/constants/application.d.ts +119 -0
  175. package/dist/utils/constants/application.d.ts.map +1 -0
  176. package/dist/utils/constants/application.js +158 -0
  177. package/dist/utils/constants/application.js.map +1 -0
  178. package/dist/utils/constants/index.cjs +30 -0
  179. package/dist/utils/constants/index.d.ts +7 -0
  180. package/dist/utils/constants/index.d.ts.map +1 -0
  181. package/dist/utils/constants/index.js +30 -0
  182. package/dist/utils/constants/index.js.map +1 -0
  183. package/dist/utils/constants/status-values.cjs +14 -0
  184. package/dist/utils/constants/status-values.d.ts +12 -0
  185. package/dist/utils/constants/status-values.d.ts.map +1 -0
  186. package/dist/utils/constants/status-values.js +14 -0
  187. package/dist/utils/constants/status-values.js.map +1 -0
  188. package/dist/utils/formatting/currency.cjs +36 -0
  189. package/dist/utils/formatting/currency.d.ts +26 -0
  190. package/dist/utils/formatting/currency.d.ts.map +1 -0
  191. package/dist/utils/formatting/currency.js +36 -0
  192. package/dist/utils/formatting/currency.js.map +1 -0
  193. package/dist/utils/formatting/date.cjs +138 -0
  194. package/dist/utils/formatting/date.d.ts +33 -0
  195. package/dist/utils/formatting/date.d.ts.map +1 -0
  196. package/dist/utils/formatting/date.js +138 -0
  197. package/dist/utils/formatting/date.js.map +1 -0
  198. package/dist/utils/formatting/index.cjs +37 -0
  199. package/dist/utils/formatting/index.d.ts +4 -0
  200. package/dist/utils/formatting/index.d.ts.map +1 -0
  201. package/dist/utils/formatting/index.js +37 -0
  202. package/dist/utils/formatting/index.js.map +1 -0
  203. package/dist/utils/formatting/string.cjs +193 -0
  204. package/dist/utils/formatting/string.d.ts +69 -0
  205. package/dist/utils/formatting/string.d.ts.map +1 -0
  206. package/dist/utils/formatting/string.js +193 -0
  207. package/dist/utils/formatting/string.js.map +1 -0
  208. package/dist/utils/index.cjs +28 -0
  209. package/dist/utils/index.d.ts +12 -0
  210. package/dist/utils/index.d.ts.map +1 -0
  211. package/dist/utils/index.js +28 -0
  212. package/dist/utils/index.js.map +1 -0
  213. package/dist/utils/logging/index.cjs +16 -0
  214. package/dist/utils/logging/index.d.ts +5 -0
  215. package/dist/utils/logging/index.d.ts.map +1 -0
  216. package/dist/utils/logging/index.js +16 -0
  217. package/dist/utils/logging/index.js.map +1 -0
  218. package/dist/utils/logging/logger.cjs +92 -0
  219. package/dist/utils/logging/logger.d.ts +70 -0
  220. package/dist/utils/logging/logger.d.ts.map +1 -0
  221. package/dist/utils/logging/logger.js +92 -0
  222. package/dist/utils/logging/logger.js.map +1 -0
  223. package/dist/utils/url/index.cjs +13 -0
  224. package/dist/utils/url/index.d.ts +5 -0
  225. package/dist/utils/url/index.d.ts.map +1 -0
  226. package/dist/utils/url/index.js +13 -0
  227. package/dist/utils/url/index.js.map +1 -0
  228. package/dist/utils/url/url-params.cjs +128 -0
  229. package/dist/utils/url/url-params.d.ts +36 -0
  230. package/dist/utils/url/url-params.d.ts.map +1 -0
  231. package/dist/utils/url/url-params.js +128 -0
  232. package/dist/utils/url/url-params.js.map +1 -0
  233. package/dist/utils/validation/index.cjs +25 -0
  234. package/dist/utils/validation/index.d.ts +5 -0
  235. package/dist/utils/validation/index.d.ts.map +1 -0
  236. package/dist/utils/validation/index.js +25 -0
  237. package/dist/utils/validation/index.js.map +1 -0
  238. package/dist/utils/validation/type-validation.cjs +167 -0
  239. package/dist/utils/validation/type-validation.d.ts +68 -0
  240. package/dist/utils/validation/type-validation.d.ts.map +1 -0
  241. package/dist/utils/validation/type-validation.js +167 -0
  242. package/dist/utils/validation/type-validation.js.map +1 -0
  243. package/dist/utils/validation/web3-username-validator.cjs +132 -0
  244. package/dist/utils/validation/web3-username-validator.d.ts +43 -0
  245. package/dist/utils/validation/web3-username-validator.d.ts.map +1 -0
  246. package/dist/utils/validation/web3-username-validator.js +132 -0
  247. package/dist/utils/validation/web3-username-validator.js.map +1 -0
  248. package/package.json +80 -0
@@ -0,0 +1,92 @@
1
+ "use strict";
2
+ /**
3
+ * Centralized logging utility
4
+ * Provides consistent logging across the application with proper formatting
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.storageLogger = exports.ensLogger = exports.contractLogger = exports.apiLogger = exports.authLogger = exports.logger = exports.LogLevel = void 0;
8
+ var LogLevel;
9
+ (function (LogLevel) {
10
+ LogLevel["ERROR"] = "error";
11
+ LogLevel["WARN"] = "warn";
12
+ LogLevel["INFO"] = "info";
13
+ LogLevel["DEBUG"] = "debug";
14
+ })(LogLevel || (exports.LogLevel = LogLevel = {}));
15
+ class Logger {
16
+ constructor() {
17
+ this.isDevelopment = process.env.NODE_ENV === 'development';
18
+ }
19
+ formatTimestamp() {
20
+ return new Date().toISOString();
21
+ }
22
+ formatMessage(_level, message, context) {
23
+ const timestamp = this.formatTimestamp();
24
+ const contextStr = context ? ` [${context}]` : '';
25
+ return `[${timestamp}]${contextStr} ${message}`;
26
+ }
27
+ shouldLog(level) {
28
+ // In production, only log warnings and errors
29
+ if (!this.isDevelopment) {
30
+ return level === LogLevel.ERROR || level === LogLevel.WARN;
31
+ }
32
+ return true;
33
+ }
34
+ error(message, context, data) {
35
+ if (this.shouldLog(LogLevel.ERROR)) {
36
+ console.error(this.formatMessage(LogLevel.ERROR, message, context));
37
+ if (data) {
38
+ console.error(data);
39
+ }
40
+ }
41
+ }
42
+ warn(message, context, data) {
43
+ if (this.shouldLog(LogLevel.WARN)) {
44
+ console.warn(this.formatMessage(LogLevel.WARN, message, context));
45
+ if (data) {
46
+ console.warn(data);
47
+ }
48
+ }
49
+ }
50
+ info(message, context, data) {
51
+ if (this.shouldLog(LogLevel.INFO)) {
52
+ console.log(this.formatMessage(LogLevel.INFO, message, context));
53
+ if (data) {
54
+ console.log(data);
55
+ }
56
+ }
57
+ }
58
+ debug(message, context, data) {
59
+ if (this.shouldLog(LogLevel.DEBUG)) {
60
+ console.log(this.formatMessage(LogLevel.DEBUG, message, context));
61
+ if (data) {
62
+ console.log(data);
63
+ }
64
+ }
65
+ }
66
+ /**
67
+ * Create a contextual logger that automatically includes context in all calls
68
+ */
69
+ withContext(context) {
70
+ return {
71
+ error: (message, data) => this.error(message, context, data),
72
+ warn: (message, data) => this.warn(message, context, data),
73
+ info: (message, data) => this.info(message, context, data),
74
+ debug: (message, data) => this.debug(message, context, data),
75
+ };
76
+ }
77
+ }
78
+ // Export singleton instance
79
+ const logger = new Logger();
80
+ exports.logger = logger;
81
+ // Export contextual loggers for common areas
82
+ const authLogger = logger.withContext('AUTH');
83
+ exports.authLogger = authLogger;
84
+ const apiLogger = logger.withContext('API');
85
+ exports.apiLogger = apiLogger;
86
+ const contractLogger = logger.withContext('CONTRACT');
87
+ exports.contractLogger = contractLogger;
88
+ const ensLogger = logger.withContext('ENS');
89
+ exports.ensLogger = ensLogger;
90
+ const storageLogger = logger.withContext('STORAGE');
91
+ exports.storageLogger = storageLogger;
92
+ //# sourceMappingURL=logger.js.map
@@ -0,0 +1,70 @@
1
+ /**
2
+ * Centralized logging utility
3
+ * Provides consistent logging across the application with proper formatting
4
+ */
5
+ import { Optional } from '../../types/common';
6
+ declare enum LogLevel {
7
+ ERROR = "error",
8
+ WARN = "warn",
9
+ INFO = "info",
10
+ DEBUG = "debug"
11
+ }
12
+ interface LogEntry {
13
+ level: LogLevel;
14
+ message: string;
15
+ context?: Optional<string>;
16
+ data?: Optional<unknown>;
17
+ timestamp: string;
18
+ }
19
+ declare class Logger {
20
+ private isDevelopment;
21
+ private formatTimestamp;
22
+ private formatMessage;
23
+ private shouldLog;
24
+ error(message: string, context?: Optional<string>, data?: Optional<unknown>): void;
25
+ warn(message: string, context?: Optional<string>, data?: Optional<unknown>): void;
26
+ info(message: string, context?: Optional<string>, data?: Optional<unknown>): void;
27
+ debug(message: string, context?: Optional<string>, data?: Optional<unknown>): void;
28
+ /**
29
+ * Create a contextual logger that automatically includes context in all calls
30
+ */
31
+ withContext(context: string): {
32
+ error: (message: string, data?: Optional<unknown>) => void;
33
+ warn: (message: string, data?: Optional<unknown>) => void;
34
+ info: (message: string, data?: Optional<unknown>) => void;
35
+ debug: (message: string, data?: Optional<unknown>) => void;
36
+ };
37
+ }
38
+ declare const logger: Logger;
39
+ declare const authLogger: {
40
+ error: (message: string, data?: Optional<unknown>) => void;
41
+ warn: (message: string, data?: Optional<unknown>) => void;
42
+ info: (message: string, data?: Optional<unknown>) => void;
43
+ debug: (message: string, data?: Optional<unknown>) => void;
44
+ };
45
+ declare const apiLogger: {
46
+ error: (message: string, data?: Optional<unknown>) => void;
47
+ warn: (message: string, data?: Optional<unknown>) => void;
48
+ info: (message: string, data?: Optional<unknown>) => void;
49
+ debug: (message: string, data?: Optional<unknown>) => void;
50
+ };
51
+ declare const contractLogger: {
52
+ error: (message: string, data?: Optional<unknown>) => void;
53
+ warn: (message: string, data?: Optional<unknown>) => void;
54
+ info: (message: string, data?: Optional<unknown>) => void;
55
+ debug: (message: string, data?: Optional<unknown>) => void;
56
+ };
57
+ declare const ensLogger: {
58
+ error: (message: string, data?: Optional<unknown>) => void;
59
+ warn: (message: string, data?: Optional<unknown>) => void;
60
+ info: (message: string, data?: Optional<unknown>) => void;
61
+ debug: (message: string, data?: Optional<unknown>) => void;
62
+ };
63
+ declare const storageLogger: {
64
+ error: (message: string, data?: Optional<unknown>) => void;
65
+ warn: (message: string, data?: Optional<unknown>) => void;
66
+ info: (message: string, data?: Optional<unknown>) => void;
67
+ debug: (message: string, data?: Optional<unknown>) => void;
68
+ };
69
+ export { LogLevel, type LogEntry, logger, authLogger, apiLogger, contractLogger, ensLogger, storageLogger, };
70
+ //# sourceMappingURL=logger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/utils/logging/logger.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,92 @@
1
+ "use strict";
2
+ /**
3
+ * Centralized logging utility
4
+ * Provides consistent logging across the application with proper formatting
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.storageLogger = exports.ensLogger = exports.contractLogger = exports.apiLogger = exports.authLogger = exports.logger = exports.LogLevel = void 0;
8
+ var LogLevel;
9
+ (function (LogLevel) {
10
+ LogLevel["ERROR"] = "error";
11
+ LogLevel["WARN"] = "warn";
12
+ LogLevel["INFO"] = "info";
13
+ LogLevel["DEBUG"] = "debug";
14
+ })(LogLevel || (exports.LogLevel = LogLevel = {}));
15
+ class Logger {
16
+ constructor() {
17
+ this.isDevelopment = process.env.NODE_ENV === 'development';
18
+ }
19
+ formatTimestamp() {
20
+ return new Date().toISOString();
21
+ }
22
+ formatMessage(_level, message, context) {
23
+ const timestamp = this.formatTimestamp();
24
+ const contextStr = context ? ` [${context}]` : '';
25
+ return `[${timestamp}]${contextStr} ${message}`;
26
+ }
27
+ shouldLog(level) {
28
+ // In production, only log warnings and errors
29
+ if (!this.isDevelopment) {
30
+ return level === LogLevel.ERROR || level === LogLevel.WARN;
31
+ }
32
+ return true;
33
+ }
34
+ error(message, context, data) {
35
+ if (this.shouldLog(LogLevel.ERROR)) {
36
+ console.error(this.formatMessage(LogLevel.ERROR, message, context));
37
+ if (data) {
38
+ console.error(data);
39
+ }
40
+ }
41
+ }
42
+ warn(message, context, data) {
43
+ if (this.shouldLog(LogLevel.WARN)) {
44
+ console.warn(this.formatMessage(LogLevel.WARN, message, context));
45
+ if (data) {
46
+ console.warn(data);
47
+ }
48
+ }
49
+ }
50
+ info(message, context, data) {
51
+ if (this.shouldLog(LogLevel.INFO)) {
52
+ console.log(this.formatMessage(LogLevel.INFO, message, context));
53
+ if (data) {
54
+ console.log(data);
55
+ }
56
+ }
57
+ }
58
+ debug(message, context, data) {
59
+ if (this.shouldLog(LogLevel.DEBUG)) {
60
+ console.log(this.formatMessage(LogLevel.DEBUG, message, context));
61
+ if (data) {
62
+ console.log(data);
63
+ }
64
+ }
65
+ }
66
+ /**
67
+ * Create a contextual logger that automatically includes context in all calls
68
+ */
69
+ withContext(context) {
70
+ return {
71
+ error: (message, data) => this.error(message, context, data),
72
+ warn: (message, data) => this.warn(message, context, data),
73
+ info: (message, data) => this.info(message, context, data),
74
+ debug: (message, data) => this.debug(message, context, data),
75
+ };
76
+ }
77
+ }
78
+ // Export singleton instance
79
+ const logger = new Logger();
80
+ exports.logger = logger;
81
+ // Export contextual loggers for common areas
82
+ const authLogger = logger.withContext('AUTH');
83
+ exports.authLogger = authLogger;
84
+ const apiLogger = logger.withContext('API');
85
+ exports.apiLogger = apiLogger;
86
+ const contractLogger = logger.withContext('CONTRACT');
87
+ exports.contractLogger = contractLogger;
88
+ const ensLogger = logger.withContext('ENS');
89
+ exports.ensLogger = ensLogger;
90
+ const storageLogger = logger.withContext('STORAGE');
91
+ exports.storageLogger = storageLogger;
92
+ //# sourceMappingURL=logger.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.js","sourceRoot":"","sources":["../../../src/utils/logging/logger.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * URL utilities export
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.parseSearchParams = exports.searchParamsToString = exports.createSearchParams = exports.createURLSearchParams = void 0;
7
+ // URL parameter utilities
8
+ var url_params_1 = require("./url-params");
9
+ Object.defineProperty(exports, "createURLSearchParams", { enumerable: true, get: function () { return url_params_1.createURLSearchParams; } });
10
+ Object.defineProperty(exports, "createSearchParams", { enumerable: true, get: function () { return url_params_1.createSearchParams; } });
11
+ Object.defineProperty(exports, "searchParamsToString", { enumerable: true, get: function () { return url_params_1.searchParamsToString; } });
12
+ Object.defineProperty(exports, "parseSearchParams", { enumerable: true, get: function () { return url_params_1.parseSearchParams; } });
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,5 @@
1
+ /**
2
+ * URL utilities export
3
+ */
4
+ export { createURLSearchParams, createSearchParams, searchParamsToString, parseSearchParams, type URLSearchParamsLike, } from './url-params';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/url/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EACL,qBAAqB,EACrB,kBAAkB,EAClB,oBAAoB,EACpB,iBAAiB,EACjB,KAAK,mBAAmB,GACzB,MAAM,cAAc,CAAC"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * URL utilities export
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.parseSearchParams = exports.searchParamsToString = exports.createSearchParams = exports.createURLSearchParams = void 0;
7
+ // URL parameter utilities
8
+ var url_params_1 = require("./url-params");
9
+ Object.defineProperty(exports, "createURLSearchParams", { enumerable: true, get: function () { return url_params_1.createURLSearchParams; } });
10
+ Object.defineProperty(exports, "createSearchParams", { enumerable: true, get: function () { return url_params_1.createSearchParams; } });
11
+ Object.defineProperty(exports, "searchParamsToString", { enumerable: true, get: function () { return url_params_1.searchParamsToString; } });
12
+ Object.defineProperty(exports, "parseSearchParams", { enumerable: true, get: function () { return url_params_1.parseSearchParams; } });
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/url/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,0BAA0B;AAC1B,2CAMsB;AALpB,mHAAA,qBAAqB,OAAA;AACrB,gHAAA,kBAAkB,OAAA;AAClB,kHAAA,oBAAoB,OAAA;AACpB,+GAAA,iBAAiB,OAAA"}
@@ -0,0 +1,128 @@
1
+ "use strict";
2
+ /**
3
+ * Platform-agnostic URLSearchParams wrapper
4
+ * Provides URLSearchParams functionality with React Native compatibility
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.createURLSearchParams = createURLSearchParams;
8
+ exports.createSearchParams = createSearchParams;
9
+ exports.searchParamsToString = searchParamsToString;
10
+ exports.parseSearchParams = parseSearchParams;
11
+ /**
12
+ * Simple URLSearchParams implementation for environments that don't have it
13
+ */
14
+ class SimpleURLSearchParams {
15
+ constructor(init) {
16
+ this.params = new Map();
17
+ if (init) {
18
+ if (typeof init === 'string') {
19
+ this.parseString(init);
20
+ }
21
+ else if (Array.isArray(init)) {
22
+ for (const [key, value] of init) {
23
+ this.append(key, value);
24
+ }
25
+ }
26
+ else {
27
+ for (const [key, value] of Object.entries(init)) {
28
+ if (value !== undefined) {
29
+ this.append(key, value);
30
+ }
31
+ }
32
+ }
33
+ }
34
+ }
35
+ parseString(str) {
36
+ const params = str.startsWith('?') ? str.slice(1) : str;
37
+ if (!params)
38
+ return;
39
+ for (const pair of params.split('&')) {
40
+ const [key, value = ''] = pair.split('=');
41
+ if (key) {
42
+ this.append(decodeURIComponent(key), decodeURIComponent(value));
43
+ }
44
+ }
45
+ }
46
+ append(name, value) {
47
+ if (!this.params.has(name)) {
48
+ this.params.set(name, []);
49
+ }
50
+ const existingValues = this.params.get(name);
51
+ if (existingValues) {
52
+ existingValues.push(value);
53
+ }
54
+ }
55
+ delete(name) {
56
+ this.params.delete(name);
57
+ }
58
+ get(name) {
59
+ const values = this.params.get(name);
60
+ return values && values.length > 0 ? values[0] : null;
61
+ }
62
+ getAll(name) {
63
+ return this.params.get(name) || [];
64
+ }
65
+ has(name) {
66
+ return this.params.has(name);
67
+ }
68
+ set(name, value) {
69
+ this.params.set(name, [value]);
70
+ }
71
+ toString() {
72
+ const pairs = [];
73
+ this.params.forEach((values, key) => {
74
+ for (const value of values) {
75
+ pairs.push(`${encodeURIComponent(key)}=${encodeURIComponent(value)}`);
76
+ }
77
+ });
78
+ return pairs.join('&');
79
+ }
80
+ forEach(callback) {
81
+ this.params.forEach((values, key) => {
82
+ for (const value of values) {
83
+ callback(value, key);
84
+ }
85
+ });
86
+ }
87
+ }
88
+ /**
89
+ * Create a URLSearchParams instance with cross-platform compatibility
90
+ */
91
+ function createURLSearchParams(init) {
92
+ // Check if native URLSearchParams is available
93
+ if (typeof URLSearchParams !== 'undefined') {
94
+ return new URLSearchParams(init);
95
+ }
96
+ // Fall back to our implementation for React Native or other environments
97
+ return new SimpleURLSearchParams(init);
98
+ }
99
+ /**
100
+ * Convenience function to create URL search params from an object
101
+ */
102
+ function createSearchParams(params) {
103
+ const searchParams = createURLSearchParams(undefined);
104
+ for (const [key, value] of Object.entries(params)) {
105
+ if (value !== undefined && value !== null) {
106
+ searchParams.append(key, String(value));
107
+ }
108
+ }
109
+ return searchParams;
110
+ }
111
+ /**
112
+ * Convert search params to a query string
113
+ */
114
+ function searchParamsToString(params) {
115
+ return params.toString();
116
+ }
117
+ /**
118
+ * Parse a query string into an object
119
+ */
120
+ function parseSearchParams(queryString) {
121
+ const params = createURLSearchParams(queryString);
122
+ const result = {};
123
+ params.forEach((value, key) => {
124
+ result[key] = value;
125
+ });
126
+ return result;
127
+ }
128
+ //# sourceMappingURL=url-params.js.map
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Platform-agnostic URLSearchParams wrapper
3
+ * Provides URLSearchParams functionality with React Native compatibility
4
+ */
5
+ import { Optional } from '../../types/common';
6
+ /**
7
+ * URLSearchParams interface for cross-platform compatibility
8
+ */
9
+ interface URLSearchParamsLike {
10
+ append(name: string, value: string): void;
11
+ delete(name: string): void;
12
+ get(name: string): Optional<string>;
13
+ getAll(name: string): string[];
14
+ has(name: string): boolean;
15
+ set(name: string, value: string): void;
16
+ toString(): string;
17
+ forEach(callback: (value: string, key: string) => void): void;
18
+ }
19
+ /**
20
+ * Create a URLSearchParams instance with cross-platform compatibility
21
+ */
22
+ declare function createURLSearchParams(init?: Optional<string | Record<string, string> | string[][]>): URLSearchParamsLike;
23
+ /**
24
+ * Convenience function to create URL search params from an object
25
+ */
26
+ declare function createSearchParams(params: Record<string, string | number | boolean>): URLSearchParamsLike;
27
+ /**
28
+ * Convert search params to a query string
29
+ */
30
+ declare function searchParamsToString(params: URLSearchParamsLike): string;
31
+ /**
32
+ * Parse a query string into an object
33
+ */
34
+ declare function parseSearchParams(queryString: string): Record<string, string>;
35
+ export { createURLSearchParams, createSearchParams, searchParamsToString, parseSearchParams, type URLSearchParamsLike, };
36
+ //# sourceMappingURL=url-params.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"url-params.d.ts","sourceRoot":"","sources":["../../../src/utils/url/url-params.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAE9C;;GAEG;AACH,UAAU,mBAAmB;IAC3B,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1C,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;IACpC,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAC/B,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;IAC3B,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC,QAAQ,IAAI,MAAM,CAAC;IACnB,OAAO,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,KAAK,IAAI,GAAG,IAAI,CAAC;CAC/D;AAwFD;;GAEG;AACH,iBAAS,qBAAqB,CAC5B,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC,GAC5D,mBAAmB,CAUrB;AAED;;GAEG;AACH,iBAAS,kBAAkB,CACzB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,GAChD,mBAAmB,CAUrB;AAED;;GAEG;AACH,iBAAS,oBAAoB,CAAC,MAAM,EAAE,mBAAmB,GAAG,MAAM,CAEjE;AAED;;GAEG;AACH,iBAAS,iBAAiB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAStE;AAED,OAAO,EACL,qBAAqB,EACrB,kBAAkB,EAClB,oBAAoB,EACpB,iBAAiB,EACjB,KAAK,mBAAmB,GACzB,CAAC"}
@@ -0,0 +1,128 @@
1
+ "use strict";
2
+ /**
3
+ * Platform-agnostic URLSearchParams wrapper
4
+ * Provides URLSearchParams functionality with React Native compatibility
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.createURLSearchParams = createURLSearchParams;
8
+ exports.createSearchParams = createSearchParams;
9
+ exports.searchParamsToString = searchParamsToString;
10
+ exports.parseSearchParams = parseSearchParams;
11
+ /**
12
+ * Simple URLSearchParams implementation for environments that don't have it
13
+ */
14
+ class SimpleURLSearchParams {
15
+ constructor(init) {
16
+ this.params = new Map();
17
+ if (init) {
18
+ if (typeof init === 'string') {
19
+ this.parseString(init);
20
+ }
21
+ else if (Array.isArray(init)) {
22
+ for (const [key, value] of init) {
23
+ this.append(key, value);
24
+ }
25
+ }
26
+ else {
27
+ for (const [key, value] of Object.entries(init)) {
28
+ if (value !== undefined) {
29
+ this.append(key, value);
30
+ }
31
+ }
32
+ }
33
+ }
34
+ }
35
+ parseString(str) {
36
+ const params = str.startsWith('?') ? str.slice(1) : str;
37
+ if (!params)
38
+ return;
39
+ for (const pair of params.split('&')) {
40
+ const [key, value = ''] = pair.split('=');
41
+ if (key) {
42
+ this.append(decodeURIComponent(key), decodeURIComponent(value));
43
+ }
44
+ }
45
+ }
46
+ append(name, value) {
47
+ if (!this.params.has(name)) {
48
+ this.params.set(name, []);
49
+ }
50
+ const existingValues = this.params.get(name);
51
+ if (existingValues) {
52
+ existingValues.push(value);
53
+ }
54
+ }
55
+ delete(name) {
56
+ this.params.delete(name);
57
+ }
58
+ get(name) {
59
+ const values = this.params.get(name);
60
+ return values && values.length > 0 ? values[0] : null;
61
+ }
62
+ getAll(name) {
63
+ return this.params.get(name) || [];
64
+ }
65
+ has(name) {
66
+ return this.params.has(name);
67
+ }
68
+ set(name, value) {
69
+ this.params.set(name, [value]);
70
+ }
71
+ toString() {
72
+ const pairs = [];
73
+ this.params.forEach((values, key) => {
74
+ for (const value of values) {
75
+ pairs.push(`${encodeURIComponent(key)}=${encodeURIComponent(value)}`);
76
+ }
77
+ });
78
+ return pairs.join('&');
79
+ }
80
+ forEach(callback) {
81
+ this.params.forEach((values, key) => {
82
+ for (const value of values) {
83
+ callback(value, key);
84
+ }
85
+ });
86
+ }
87
+ }
88
+ /**
89
+ * Create a URLSearchParams instance with cross-platform compatibility
90
+ */
91
+ function createURLSearchParams(init) {
92
+ // Check if native URLSearchParams is available
93
+ if (typeof URLSearchParams !== 'undefined') {
94
+ return new URLSearchParams(init);
95
+ }
96
+ // Fall back to our implementation for React Native or other environments
97
+ return new SimpleURLSearchParams(init);
98
+ }
99
+ /**
100
+ * Convenience function to create URL search params from an object
101
+ */
102
+ function createSearchParams(params) {
103
+ const searchParams = createURLSearchParams(undefined);
104
+ for (const [key, value] of Object.entries(params)) {
105
+ if (value !== undefined && value !== null) {
106
+ searchParams.append(key, String(value));
107
+ }
108
+ }
109
+ return searchParams;
110
+ }
111
+ /**
112
+ * Convert search params to a query string
113
+ */
114
+ function searchParamsToString(params) {
115
+ return params.toString();
116
+ }
117
+ /**
118
+ * Parse a query string into an object
119
+ */
120
+ function parseSearchParams(queryString) {
121
+ const params = createURLSearchParams(queryString);
122
+ const result = {};
123
+ params.forEach((value, key) => {
124
+ result[key] = value;
125
+ });
126
+ return result;
127
+ }
128
+ //# sourceMappingURL=url-params.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"url-params.js","sourceRoot":"","sources":["../../../src/utils/url/url-params.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validateArray = exports.parseJson = exports.optional = exports.isValidDate = exports.isUrl = exports.isSuccessResponse = exports.isString = exports.isObject = exports.isNumber = exports.isNullish = exports.isErrorResponse = exports.isEmail = exports.isBoolean = exports.isArray = exports.isApiResponse = exports.hasRequiredProperties = exports.createValidator = exports.createAssertion = exports.Web3UsernameValidator = void 0;
4
+ var web3_username_validator_1 = require("./web3-username-validator");
5
+ Object.defineProperty(exports, "Web3UsernameValidator", { enumerable: true, get: function () { return web3_username_validator_1.Web3UsernameValidator; } });
6
+ var type_validation_1 = require("./type-validation");
7
+ Object.defineProperty(exports, "createAssertion", { enumerable: true, get: function () { return type_validation_1.createAssertion; } });
8
+ Object.defineProperty(exports, "createValidator", { enumerable: true, get: function () { return type_validation_1.createValidator; } });
9
+ Object.defineProperty(exports, "hasRequiredProperties", { enumerable: true, get: function () { return type_validation_1.hasRequiredProperties; } });
10
+ Object.defineProperty(exports, "isApiResponse", { enumerable: true, get: function () { return type_validation_1.isApiResponse; } });
11
+ Object.defineProperty(exports, "isArray", { enumerable: true, get: function () { return type_validation_1.isArray; } });
12
+ Object.defineProperty(exports, "isBoolean", { enumerable: true, get: function () { return type_validation_1.isBoolean; } });
13
+ Object.defineProperty(exports, "isEmail", { enumerable: true, get: function () { return type_validation_1.isEmail; } });
14
+ Object.defineProperty(exports, "isErrorResponse", { enumerable: true, get: function () { return type_validation_1.isErrorResponse; } });
15
+ Object.defineProperty(exports, "isNullish", { enumerable: true, get: function () { return type_validation_1.isNullish; } });
16
+ Object.defineProperty(exports, "isNumber", { enumerable: true, get: function () { return type_validation_1.isNumber; } });
17
+ Object.defineProperty(exports, "isObject", { enumerable: true, get: function () { return type_validation_1.isObject; } });
18
+ Object.defineProperty(exports, "isString", { enumerable: true, get: function () { return type_validation_1.isString; } });
19
+ Object.defineProperty(exports, "isSuccessResponse", { enumerable: true, get: function () { return type_validation_1.isSuccessResponse; } });
20
+ Object.defineProperty(exports, "isUrl", { enumerable: true, get: function () { return type_validation_1.isUrl; } });
21
+ Object.defineProperty(exports, "isValidDate", { enumerable: true, get: function () { return type_validation_1.isValidDate; } });
22
+ Object.defineProperty(exports, "optional", { enumerable: true, get: function () { return type_validation_1.optional; } });
23
+ Object.defineProperty(exports, "parseJson", { enumerable: true, get: function () { return type_validation_1.parseJson; } });
24
+ Object.defineProperty(exports, "validateArray", { enumerable: true, get: function () { return type_validation_1.validateArray; } });
25
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,5 @@
1
+ export type { AddressValidationResult } from './web3-username-validator';
2
+ export { Web3UsernameValidator } from './web3-username-validator';
3
+ export type { ValidationResult } from './type-validation';
4
+ export { createAssertion, createValidator, hasRequiredProperties, isApiResponse, isArray, isBoolean, isEmail, isErrorResponse, isNullish, isNumber, isObject, isString, isSuccessResponse, isUrl, isValidDate, optional, parseJson, validateArray, } from './type-validation';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/validation/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAEzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAGlE,YAAY,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAE1D,OAAO,EACL,eAAe,EACf,eAAe,EACf,qBAAqB,EACrB,aAAa,EACb,OAAO,EACP,SAAS,EACT,OAAO,EACP,eAAe,EACf,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,iBAAiB,EACjB,KAAK,EACL,WAAW,EACX,QAAQ,EACR,SAAS,EACT,aAAa,GACd,MAAM,mBAAmB,CAAC"}