-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Install deps * Add react wallet deps * Create wallet component * Add wallet styles * Add spl token fetching from env vars * Create spl class to fetch tokens amount * Create mintto ix * Create tx ix * mint API * Move fetch balance to component * Add css module for wallet * Styled MintRow * Create API for transfer * Transfer APi call * Added styling to buttons * Add usecallback * Add env example * Improve class usage * Add getLatestBlockhash and confirmTx to class * Run yarn format * Capitalize Class * Move MintRow location * Improve class usage * Improved styles * Style * Styling index page * Style bg-color * Added vercelignore and trycatch * add try catch * Added debugging in API * control unfunded acc * add default val * add default value as 1 * feat: add primer * feat: add fontana config and ss funcs * feat: add inline err * feat: add context for refresh context * feat: rename resfresh fun and remove unused code * feat: add error keypair not found in env * style: fix style * fix: style overflow table * fix: hide use wallet address button if no wallet connected * chore: clear unused code * feat: add rpc from env * feat: update fontana config file to add some description * fix: add number of spl tokens in header * feat: apply correct styles with primer and deepmerge * style: apply global theme * style: fix style in row * style: fix size of thead * feat: add version to footer * fix: remove version.json from gitingore and add tag script * fix merge
- Loading branch information
Showing
5 changed files
with
31 additions
and
1 deletion.
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,10 @@ | ||
var gittags = require("git-tags"); | ||
var fs = require("fs"); | ||
gittags.get(function (err, tags) { | ||
if (err) throw err; | ||
const obj = { | ||
version: tags[0], | ||
}; | ||
fs.writeFileSync("version.json", JSON.stringify(obj), "utf8"); | ||
console.log(tags); | ||
}); |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{"version":"v0.0.1"} |
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