Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Svelte Component has typed exports, Styles.css is exported #417

Merged
merged 22 commits into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
67d1213
init
jinglescode Nov 5, 2024
f69f5a9
wip cip45
jinglescode Nov 27, 2024
4260c5a
feat: update data type
HinsonSIDAN Nov 28, 2024
b282d4d
feat: build the blueprint functionality
HinsonSIDAN Nov 28, 2024
8ceba04
chore: release
HinsonSIDAN Nov 28, 2024
ba60d8e
feat: add mesh option data type
HinsonSIDAN Nov 28, 2024
0aca4a6
Merge pull request #410 from MeshJS/feature/update-data-type
HinsonSIDAN Nov 28, 2024
e2d2889
add util to decode drep ids for multiple cips
twwu123 Nov 29, 2024
d55367a
add test for decoding drep ids
twwu123 Nov 29, 2024
f48855f
Merge pull request #411 from MeshJS/feature-update/drep-ids
jinglescode Nov 29, 2024
12f6a12
new wallet connect UI
jinglescode Nov 29, 2024
c48ce72
init branch
jinglescode Nov 30, 2024
ff72b64
remove cardano-peer-connect from dropdown
jinglescode Nov 30, 2024
cf3481a
Merge branch 'main' into cip45-2
jinglescode Nov 30, 2024
04636a0
bump version
jinglescode Nov 30, 2024
2979148
Merge pull request #413 from MeshJS/cip45-2
jinglescode Nov 30, 2024
10e2cbf
fix tsconfig for svelte, attempt to make svelte types output in final…
JustLeif Nov 30, 2024
b05fa5c
Merge pull request #414 from JustLeif/main
jinglescode Nov 30, 2024
8d711b4
init roll back and bump version
jinglescode Nov 30, 2024
0f6f609
Merge pull request #415 from MeshJS/fix-rollback-DAppPeerConnect
jinglescode Nov 30, 2024
1e221ed
tsconfig working, svelte component types get exported, style.css is e…
JustLeif Dec 1, 2024
3472a23
Merge branch 'svelte-package-init' into main
jinglescode Dec 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function Left() {
signature += `applyParamsToScript(\n`;
signature += ` rawScript: string, \n`;
signature += ` params: object[] | Data[], \n`;
signature += ` type?: "Mesh" | "JSON" | "CBOR"\n`;
signature += ` type?: PlutusDataType\n`;
signature += `): string\n`;

return (
Expand Down
18 changes: 16 additions & 2 deletions apps/playground/src/pages/react/ui-components/connect-wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ function Left() {
<p>
Add this CardanoWallet to allow the user to select a wallet to connect
to your dApp. After the wallet is connected, see{" "}
<Link href="/apis/wallets/browserwallet">Browser Wallet</Link> for a list of
CIP-30 APIs.
<Link href="/apis/wallets/browserwallet">Browser Wallet</Link> for a
list of CIP-30 APIs.
</p>

<p>The signature for the CardanoWallet component is as follows:</p>
Expand Down Expand Up @@ -155,6 +155,20 @@ function Right() {
label={"Connect a Wallet"}
isDark={isDark}
metamask={{ network: "preprod" }}
cardanoPeerConnect={{
dAppInfo: {
name: "Mesh SDK",
url: "https://meshjs.dev/",
},
announce: [
"wss://dev.btt.cf-identity-wallet.metadata.dev.cf-deployments.org",
"https://pro.passwordchaos.gimbalabs.io",
"wss://tracker.files.fm:7073/announce",
"wss://tracker.btorrent.xyz",
"ws://tracker.files.fm:7072/announce",
"wss://tracker.openwebtorrent.com:443/announce",
],
}}
/>
</LiveCodeDemo>
);
Expand Down
Loading