@dynamic-labs/ton 4.45.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Dynamic Labs, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,68 @@
1
+ # @dynamic-labs/ton
2
+
3
+ TON (The Open Network) blockchain integration for the Dynamic SDK.
4
+
5
+ ## Overview
6
+
7
+ This package provides seamless integration with TON wallets in your dApp. The package is currently in development and will support wallet connection, transaction handling, and TON-specific functionality.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm install @dynamic-labs/ton
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ This package is currently under development. Documentation and usage examples will be added as functionality is implemented.
18
+
19
+ ## Development
20
+
21
+ ### Build
22
+
23
+ ```bash
24
+ npx nx build ton
25
+ ```
26
+
27
+ ### Test
28
+
29
+ ```bash
30
+ npx nx test ton
31
+ ```
32
+
33
+ ### Lint
34
+
35
+ ```bash
36
+ npx nx lint ton
37
+ ```
38
+
39
+ ## TypeScript Support
40
+
41
+ This package is written in TypeScript and provides full type definitions. Enable strict mode in your `tsconfig.json` for the best experience:
42
+
43
+ ```json
44
+ {
45
+ "compilerOptions": {
46
+ "strict": true
47
+ }
48
+ }
49
+ ```
50
+
51
+ ## Resources
52
+
53
+ - **Dynamic Docs**: https://docs.dynamic.xyz
54
+ - **TON Documentation**: https://ton.org/docs
55
+
56
+ ## Support
57
+
58
+ - **Documentation**: [docs.dynamic.xyz](https://docs.dynamic.xyz)
59
+ - **GitHub Issues**: [Report bugs or request features](https://github.com/dynamic-labs/dynamic-sdk/issues)
60
+ - **Discord**: [Join our community](https://discord.gg/dynamic)
61
+
62
+ ## License
63
+
64
+ This package is part of the Dynamic SDK and follows the same licensing terms. See [LICENSE](../../LICENSE) for details.
65
+
66
+ ---
67
+
68
+ **Built with ❤️ by the Dynamic Labs team**
package/package.cjs ADDED
@@ -0,0 +1,8 @@
1
+ 'use client'
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, '__esModule', { value: true });
5
+
6
+ var version = "4.45.1";
7
+
8
+ exports.version = version;
package/package.js ADDED
@@ -0,0 +1,4 @@
1
+ 'use client'
2
+ var version = "4.45.1";
3
+
4
+ export { version };
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@dynamic-labs/ton",
3
+ "version": "4.45.1",
4
+ "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
+ "author": "Dynamic Labs, Inc.",
6
+ "license": "MIT",
7
+ "main": "./src/index.cjs",
8
+ "module": "./src/index.js",
9
+ "types": "./src/index.d.ts",
10
+ "type": "module",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./src/index.d.ts",
14
+ "import": "./src/index.js",
15
+ "require": "./src/index.cjs"
16
+ },
17
+ "./package.json": "./package.json"
18
+ },
19
+ "homepage": "https://www.dynamic.xyz/",
20
+ "dependencies": {
21
+ "@dynamic-labs/assert-package-version": "4.45.1"
22
+ }
23
+ }
package/src/index.cjs ADDED
@@ -0,0 +1,7 @@
1
+ 'use client'
2
+ 'use strict';
3
+
4
+ var assertPackageVersion = require('@dynamic-labs/assert-package-version');
5
+ var _package = require('../package.cjs');
6
+
7
+ assertPackageVersion.assertPackageVersion('@dynamic-labs/ton', _package.version);
package/src/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/src/index.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use client'
2
+ import { assertPackageVersion } from '@dynamic-labs/assert-package-version';
3
+ import { version } from '../package.js';
4
+
5
+ assertPackageVersion('@dynamic-labs/ton', version);
package/src/types.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Type definitions for TON (The Open Network) blockchain integration.
3
+ *
4
+ * This file will contain type definitions for TON-specific types,
5
+ * interfaces, and utilities as the package is developed.
6
+ */