ton-evm-bridge 0.0.1-security → 2.0.0

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.

Potentially problematic release.


This version of ton-evm-bridge might be problematic. Click here for more details.

Files changed (65) hide show
  1. package/.editorconfig +13 -0
  2. package/.eslintrc.js +16 -0
  3. package/.github/ISSUE_TEMPLATE/bug_report.yaml +108 -0
  4. package/.nvmrc +1 -0
  5. package/.prettierrc +4 -0
  6. package/@types/global.d.ts +1 -0
  7. package/@types/params.d.ts +24 -0
  8. package/@types/tonweb.d.ts +44 -0
  9. package/LICENSE +674 -0
  10. package/README.md +71 -5
  11. package/assets/WTON.json +1 -0
  12. package/assets/pics/arrow.svg +44 -0
  13. package/assets/pics/done.svg +38 -0
  14. package/assets/pics/link.svg +15 -0
  15. package/assets/pics/swap.svg +331 -0
  16. package/assets/styles/reboot.css +163 -0
  17. package/components/BridgeProcessor.vue +977 -0
  18. package/docs/.nojekyll +0 -0
  19. package/docs/200.html +9 -0
  20. package/docs/_nuxt/1f2ac62.js +1 -0
  21. package/docs/_nuxt/1f2ac62.js.br +0 -0
  22. package/docs/_nuxt/1f2ac62.js.gz +0 -0
  23. package/docs/_nuxt/5cc51a5.js +1 -0
  24. package/docs/_nuxt/5cc51a5.js.br +0 -0
  25. package/docs/_nuxt/5cc51a5.js.gz +0 -0
  26. package/docs/_nuxt/7767db0.js +2 -0
  27. package/docs/_nuxt/7767db0.js.br +0 -0
  28. package/docs/_nuxt/7767db0.js.gz +0 -0
  29. package/docs/_nuxt/9ead974.js +2 -0
  30. package/docs/_nuxt/9ead974.js.br +0 -0
  31. package/docs/_nuxt/9ead974.js.gz +0 -0
  32. package/docs/_nuxt/LICENSES +98 -0
  33. package/docs/_nuxt/a46cdc5.js +1 -0
  34. package/docs/_nuxt/a46cdc5.js.br +0 -0
  35. package/docs/_nuxt/a46cdc5.js.gz +0 -0
  36. package/docs/_nuxt/b3f7827.js +1 -0
  37. package/docs/_nuxt/b3f7827.js.br +0 -0
  38. package/docs/_nuxt/b3f7827.js.gz +0 -0
  39. package/docs/_nuxt/b5d388d.js +1 -0
  40. package/docs/_nuxt/b5d388d.js.br +0 -0
  41. package/docs/_nuxt/b5d388d.js.gz +0 -0
  42. package/docs/_nuxt/fe8ca79.js +2 -0
  43. package/docs/_nuxt/fe8ca79.js.br +0 -0
  44. package/docs/_nuxt/fe8ca79.js.gz +0 -0
  45. package/docs/_nuxt/img/arrow.69e1e70.svg +44 -0
  46. package/docs/_nuxt/img/arrow.69e1e70.svg.br +0 -0
  47. package/docs/_nuxt/img/arrow.69e1e70.svg.gz +0 -0
  48. package/docs/_nuxt/img/swap.b8b4b2f.svg +331 -0
  49. package/docs/_nuxt/img/swap.b8b4b2f.svg.br +0 -0
  50. package/docs/_nuxt/img/swap.b8b4b2f.svg.gz +0 -0
  51. package/docs/favicon.ico +0 -0
  52. package/docs/index.html +9 -0
  53. package/index.js +66 -0
  54. package/lang/en/bridge.json +105 -0
  55. package/lang/en-US.js +7 -0
  56. package/layouts/default.vue +53 -0
  57. package/modules/i18n.js +44 -0
  58. package/nuxt.config.js +73 -0
  59. package/package.json +61 -6
  60. package/pages/index.vue +635 -0
  61. package/static/favicon.ico +0 -0
  62. package/tsconfig.json +39 -0
  63. package/utils/constants.ts +65 -0
  64. package/utils/helpers.ts +37 -0
  65. package/vue-shim.d.ts +4 -0
@@ -0,0 +1,163 @@
1
+ /* http://meyerweb.com/eric/tools/css/reset/
2
+ v2.0 | 20110126
3
+ License: none (public domain)
4
+ */
5
+
6
+ html, body, div, span, applet, object, iframe,
7
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8
+ a, abbr, acronym, address, big, cite, code,
9
+ del, dfn, em, img, ins, kbd, q, s, samp,
10
+ small, strike, strong, sub, sup, tt, var,
11
+ b, u, i, center,
12
+ dl, dt, dd, ol, ul, li,
13
+ fieldset, form, label, legend,
14
+ table, caption, tbody, tfoot, thead, tr, th, td,
15
+ article, aside, canvas, details, embed,
16
+ figure, figcaption, footer, header, hgroup,
17
+ menu, nav, output, ruby, section, summary,
18
+ time, mark, audio, video {
19
+ margin: 0;
20
+ padding: 0;
21
+ border: 0;
22
+ vertical-align: baseline;
23
+ }
24
+ input, textarea{
25
+ margin: 0;
26
+ }
27
+
28
+ /* HTML5 display-role reset for older browsers */
29
+ article, aside, details, figcaption, figure,
30
+ footer, header, hgroup, menu, nav, section {
31
+ display: block;
32
+ }
33
+
34
+ blockquote, q {
35
+ quotes: none;
36
+ }
37
+
38
+ blockquote:before, blockquote:after,
39
+ q:before, q:after {
40
+ content: '';
41
+ content: none;
42
+ }
43
+
44
+ table {
45
+ border-collapse: collapse;
46
+ border-spacing: 0;
47
+ }
48
+
49
+
50
+ *,
51
+ *:after,
52
+ *:before {
53
+ -webkit-box-sizing: border-box;
54
+ -moz-box-sizing: border-box;
55
+ box-sizing: border-box;
56
+ }
57
+
58
+ @media (prefers-reduced-motion: no-preference) {
59
+ :root {
60
+ /*scroll-behavior: smooth;*/
61
+ }
62
+ }
63
+
64
+ html {
65
+ -webkit-text-size-adjust: none;
66
+ -webkit-tap-highlight-color: transparent;
67
+ }
68
+
69
+ body {
70
+ -webkit-font-smoothing: antialiased;
71
+ -moz-osx-font-smoothing: grayscale;
72
+ text-rendering: optimizeLegibility;
73
+ -webkit-text-size-adjust: 100%;
74
+ -webkit-font-feature-settings: "kern";
75
+ -moz-font-feature-settings: "kern=1";
76
+ -moz-font-feature-settings: "kern";
77
+ -ms-font-feature-settings: "kern" 1;
78
+ font-feature-settings: "kern";
79
+ font-variant-numeric: normal;
80
+ word-wrap: break-word;
81
+ }
82
+
83
+ input::-webkit-contacts-auto-fill-button {
84
+ visibility: hidden;
85
+ display: none !important;
86
+ pointer-events: none;
87
+ position: absolute;
88
+ right: 0;
89
+ }
90
+
91
+ ::-webkit-credentials-auto-fill-button {
92
+ visibility: hidden;
93
+ pointer-events: none;
94
+ position: absolute;
95
+ right: 0;
96
+ }
97
+
98
+ input::-ms-clear {
99
+ display: none !important;
100
+ }
101
+
102
+ input::-ms-reveal {
103
+ display: none !important;
104
+ }
105
+
106
+ input:focus::-webkit-input-placeholder,
107
+ textarea:focus::-webkit-input-placeholder {
108
+ color: transparent !important;
109
+ }
110
+
111
+ input:focus::-moz-placeholder,
112
+ textarea:focus::-moz-placeholder {
113
+ color: transparent !important;
114
+ }
115
+
116
+ input:focus:-moz-placeholder,
117
+ textarea:focus:-moz-placeholder {
118
+ color: transparent !important;
119
+ }
120
+
121
+ input:focus::placeholder,
122
+ textarea:focus::placeholder {
123
+ color: transparent !important;
124
+ }
125
+
126
+ button {
127
+ border: none;
128
+ margin: 0;
129
+ padding: 0;
130
+ width: auto;
131
+ overflow: visible;
132
+ background: transparent;
133
+ color: inherit;
134
+ font: inherit;
135
+ text-align: inherit;
136
+ outline: none;
137
+ border-radius: 0;
138
+ cursor: pointer;
139
+
140
+ line-height: normal;
141
+
142
+ -webkit-font-smoothing: inherit;
143
+ -moz-osx-font-smoothing: inherit;
144
+ -webkit-appearance: none;
145
+ }
146
+
147
+ a {
148
+ outline: none;
149
+ }
150
+
151
+ button::-moz-focus-inner {
152
+ border: 0;
153
+ padding: 0;
154
+ }
155
+
156
+
157
+ svg {
158
+ overflow: visible;
159
+ }
160
+
161
+ [tabindex="-1"]:focus:not(:focus-visible) {
162
+ outline: 0 !important;
163
+ }