Skip to content

Commit 04b86e1

Browse files
committed
Merge branch 'main' of github.com:jpg-store/lucid into jpg
2 parents a549b40 + 9986d05 commit 04b86e1

15 files changed

+30298
-15966
lines changed

deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"tasks": {
33
"build": "deno run --allow-env --allow-write --allow-read --allow-net --allow-run build.ts",
4-
"build:core": "cd src/core/libs/cardano_multiplatform_lib && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/f4fa6c730a7048488f32150ae421e0c3691cc666/main.ts --out ./; cd ../cardano_message_signing && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/f4fa6c730a7048488f32150ae421e0c3691cc666/main.ts --out ./",
5-
"publish": "deno task build && cd dist && npm publish",
4+
"build:core": "cd src/core/libs/cardano_multiplatform_lib && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/a0fec73985b0f0a9120b5077e292963d513795d4/main.ts --out ./; cd ../cardano_message_signing && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/a0fec73985b0f0a9120b5077e292963d513795d4/main.ts --out ./",
5+
"publish": "deno task build && deno task test && npm publish dist",
66
"test": "deno test --allow-env --allow-read --allow-net tests",
77
"test:core": "cd src/core/libs/cardano_multiplatform_lib && cargo test; cd ../cardano_message_signing && cargo test"
88
},

docs/docs/getting-started/choose-provider.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ const lucid = await Lucid.new(
4545
import { Lucid, Maestro } from "https://deno.land/x/lucid/mod.ts";
4646

4747
const lucid = await Lucid.new(
48-
new Maestro(
49-
"https://preprod.gomaestro-api.org/v0", // For MAINNET: "https://mainnet.gomaestro-api.org/v0".
50-
"<api-key>", // Get yours @ https://docs.gomaestro.org/docs/Getting-started/Sign-up-login.
51-
),
48+
new Maestro({
49+
network: "Preprod", // For MAINNET: "Mainnet".
50+
apiKey: "<Your-API-Key>", // Get yours by visiting https://docs.gomaestro.org/docs/Getting-started/Sign-up-login.
51+
turboSubmit: false // Read about paid turbo transaction submission feature at https://docs.gomaestro.org/docs/Dapp%20Platform/Turbo%20Transaction.
52+
}),
5253
"Preprod", // For MAINNET: "Mainnet".
5354
);
5455
```

docs/index.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,11 @@ usage:
149149
import { Maestro, Lucid } from "https://deno.land/x/lucid/mod.ts";
150150
151151
const lucid = await Lucid.new(
152-
new Maestro(
153-
"https://preprod.gomaestro-api.org/v0", // For MAINNET: "https://mainnet.gomaestro-api.org/v0".
154-
"<api-key>", // Get yours @ https://docs.gomaestro.org/docs/Getting-started/Sign-up-login.
155-
),
152+
new Maestro({
153+
network: "Preprod", // For MAINNET: "Mainnet".
154+
apiKey: "<Your-API-Key>", // Get yours by visiting https://docs.gomaestro.org/docs/Getting-started/Sign-up-login.
155+
turboSubmit: false // Read about paid turbo transaction submission feature at https://docs.gomaestro.org/docs/Dapp%20Platform/Turbo%20Transaction.
156+
}),
156157
"Preprod", // For MAINNET: "Mainnet".
157158
);
158159
```

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jpg-store/lucid-cardano",
3-
"version": "0.10.10",
3+
"version": "0.10.12",
44
"license": "MIT",
55
"description": "This is a fork of the original Lucid repo compiled into CommonJS. For more information check https://github.com/spacebudz/lucid",
66
"repository": "https://github.com/jpg-store/lucid",

src/core/libs/cardano_message_signing/cardano_message_signing.generated.js

+1
Original file line numberDiff line numberDiff line change
@@ -3830,6 +3830,7 @@ async function instantiateModule(opts) {
38303830

38313831
switch (wasmUrl.protocol) {
38323832
case "": // relative URL
3833+
case "chrome-extension:":
38333834
case "file:":
38343835
case "https:":
38353836
case "http:": {

0 commit comments

Comments
 (0)