-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from palladians/feat/enable-mainnet
Feat/Enable Mainnet
- Loading branch information
Showing
203 changed files
with
5,970 additions
and
7,896 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
VITE_APP_E2E=false | ||
VITE_APP_DEFAULT_NETWORK=Devnet | ||
VITE_APP_MINA_PROXY_MAINNET_URL=https://api.minascan.io/node/mainnet/v1/graphql | ||
VITE_APP_MINA_PROXY_DEVNET_URL=https://api.minascan.io/node/devnet/v1/graphql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,28 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Pallad</title> | ||
<link rel="stylesheet" href="/src/assets/fonts.css" /> | ||
<style> | ||
:root { | ||
--popup: 1; | ||
} | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Pallad</title> | ||
<link rel="stylesheet" href="/src/assets/fonts.css" /> | ||
<style> | ||
:root { | ||
--popup: 1; | ||
} | ||
|
||
html { | ||
width: 371px; | ||
height: 600px; | ||
background-color: #0a0a10; | ||
} | ||
html { | ||
background-color: #0a0a10; | ||
} | ||
|
||
#root { | ||
min-height: 100vh; | ||
display: flex; | ||
} | ||
</style> | ||
<script type="module"> | ||
import { Buffer } from 'buffer' | ||
window.Buffer = Buffer | ||
</script> | ||
</head> | ||
#root { | ||
min-height: 100vh; | ||
display: flex; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import packageJson from "./package.json" with { type: "json" } | ||
|
||
export const manifest: chrome.runtime.ManifestV3 = { | ||
manifest_version: 3, | ||
name: "Pallad", | ||
description: | ||
"Discover the Future of Web3 with Pallad. Unlock the power of the world's lightest blockchain 🪶", | ||
icons: { | ||
16: "icons/16.png", | ||
32: "icons/32.png", | ||
48: "icons/48.png", | ||
128: "icons/128.png", | ||
}, | ||
version: packageJson.version, | ||
action: { default_title: "Click to open panel" }, | ||
side_panel: { default_path: "index.html" }, | ||
permissions: ["storage", "activeTab", "background", "sidePanel"], | ||
background: { | ||
service_worker: "src/background/index.ts", | ||
type: "module", | ||
}, | ||
content_scripts: [ | ||
{ | ||
matches: ["https://*/*"], | ||
js: ["src/inject/index.ts"], | ||
run_at: "document_start", | ||
all_frames: true, | ||
}, | ||
], | ||
web_accessible_resources: [ | ||
{ | ||
resources: ["pallad_rpc.js"], | ||
matches: ["https://*/*"], | ||
}, | ||
], | ||
host_permissions: ["https://*/*"], | ||
commands: { | ||
_execute_action: { | ||
suggested_key: { | ||
windows: "Alt+Shift+P", | ||
mac: "Alt+Shift+P", | ||
chromeos: "Alt+Shift+P", | ||
linux: "Alt+Shift+P", | ||
}, | ||
description: "Open the Pallad extension", | ||
}, | ||
}, | ||
} |
Oops, something went wrong.