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

Touched up the front end #130

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6e3be55
Working on the index page layout
HarlyPonari Mar 2, 2024
5dffa30
Continued work on the landing page, and began work on the Discord inv…
HarlyPonari Mar 3, 2024
1ee3268
Index page needs a little bit more work however for the most part is …
HarlyPonari Mar 3, 2024
7e46e6a
updates
bryxnt1 Mar 3, 2024
7ce44ca
Merge branch 'harly' of https://github.com/HarlyPonari/pursuit into B…
bryxnt1 Mar 3, 2024
dff1a4f
updates
bryxnt1 Mar 6, 2024
2fa2c76
Finished landingpage work
HarlyPonari Mar 9, 2024
8e9cf52
changes
bryxnt1 Mar 13, 2024
6e64192
Merging branches
HarlyPonari Mar 13, 2024
5f1009f
Merge pull request #1 from HarlyPonari/dev
HarlyPonari Mar 13, 2024
ebcb677
Integrating Phantom, Solflare, and Metamsk into one button
HarlyPonari Mar 26, 2024
ae2abea
Merge branch 'harly'
HarlyPonari Mar 26, 2024
2731c53
More deployment tests
HarlyPonari Mar 26, 2024
dbe5bb8
Added color and wallet logos to multi-button as well as deployment stuff
HarlyPonari Mar 26, 2024
b5dd9a2
Merge branch 'harly' of https://github.com/HarlyPonari/pursuit into h…
HarlyPonari Mar 26, 2024
deb2044
removed readme
HarlyPonari Mar 27, 2024
705f683
Fixed dependency errors using webpack and CRA rewired
HarlyPonari Mar 30, 2024
e93d69e
Initialized project to work with Solana API and Anchor using the IDL.…
HarlyPonari Apr 1, 2024
8234dd8
Working on transaction implementation
HarlyPonari Apr 3, 2024
5ebce1c
Transaction window is showing up now
HarlyPonari Apr 4, 2024
a720fdb
Fixed conversion errors in bet button. USD to SOL is now converted co…
HarlyPonari Apr 12, 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
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALCHEMYAPI_KEY = "DIoeYnfiKuTLcNM1Olx_54L-3dzz9pUj"
35 changes: 0 additions & 35 deletions .eslintrc.json

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.
/test-ledger


# dependencies
/node_modules
Expand Down
209 changes: 0 additions & 209 deletions README.md

This file was deleted.

50 changes: 50 additions & 0 deletions config-overrides.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
const { query } = require("express");
const { ProvidePlugin } = require("webpack");

module.exports = function (config, env) {
return {
...config,
module: {
...config.module,
rules: [
...config.module.rules,
{
test: /\.m?[jt]sx?$/,
enforce: "pre",
use: ["source-map-loader"],
},
{
test: /\.m?[jt]sx?$/,
resolve: {
fullySpecified: false,
},
},
],
},
plugins: [
...config.plugins,
new ProvidePlugin({
process: "process/browser",
}),
],
resolve: {
...config.resolve,
fallback: {
assert: require.resolve("assert"),
buffer: require.resolve("buffer"),
crypto: require.resolve("crypto-browserify"),
http: require.resolve("stream-http"),
https: require.resolve("https-browserify"),
stream: require.resolve("stream-browserify"),
url: require.resolve("url/"),
zlib: require.resolve("browserify-zlib"),
vm: require.resolve("vm-browserify"),
querystring: require.resolve("querystring-es3"),
path: require.resolve("path-browserify"),
fs: require.resolve("browserify-fs"),
net: require.resolve("net"),
},
},
ignoreWarnings: [/Failed to parse source map/],
};
};
Loading