@wormhole-foundation/wormhole-connect 0.0.1-beta.1 → 0.0.1-beta.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/README.md +11 -11
- package/dist/main.js +2 -2
- package/lib/index.d.ts +11 -0
- package/lib/index.js +2 -2
- package/lib/theme.d.ts +220 -0
- package/lib/types.d.ts +42 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,15 +24,15 @@ Environment:
|
|
|
24
24
|
| mainnet | testnet |
|
|
25
25
|
|
|
26
26
|
Chains:
|
|
27
|
-
| Mainnet | Testnet
|
|
28
|
-
| ---------- |
|
|
29
|
-
| ethereum | goerli
|
|
30
|
-
| polygon | mumbai
|
|
31
|
-
| bsc | bsc
|
|
32
|
-
| avalanche | fuji
|
|
33
|
-
| celo | avalanche
|
|
34
|
-
| moonbeam |
|
|
35
|
-
| solana | solana
|
|
27
|
+
| Mainnet | Testnet |
|
|
28
|
+
| ---------- | ------------- |
|
|
29
|
+
| ethereum | goerli |
|
|
30
|
+
| polygon | mumbai |
|
|
31
|
+
| bsc | bsc |
|
|
32
|
+
| avalanche | fuji |
|
|
33
|
+
| celo | avalanche |
|
|
34
|
+
| moonbeam | moonbasealpha |
|
|
35
|
+
| solana | solana |
|
|
36
36
|
|
|
37
37
|
Tokens:
|
|
38
38
|
| Mainnet | Testnet |
|
|
@@ -68,8 +68,8 @@ import { dark, light, Theme } from '@wormhole-foundation/wormhole-connect';
|
|
|
68
68
|
|
|
69
69
|
```html
|
|
70
70
|
<!-- paste below into index.html body -->
|
|
71
|
-
<script src="https://www.unpkg.com/@wormhole-foundation/wormhole-connect@0.0.1-beta.
|
|
72
|
-
<link
|
|
71
|
+
<script src="https://www.unpkg.com/@wormhole-foundation/wormhole-connect@0.0.1-beta.3/dist/main.js"></script>
|
|
72
|
+
<link href="https://www.unpkg.com/@wormhole-foundation/wormhole-connect@0.0.1-beta.3/dist/main.css" />
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
### 3. Embed it in your application
|