-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat: add a wallet when a new user signs up and accpt the address given #118
Conversation
… creating relations
@@ -132,3 +133,9 @@ | |||
const imageName: string = `./codes/${id.slice(5)}_${timestamp.toString().slice(5)}.png`; | |||
return imageName; | |||
}; | |||
|
|||
export const generateSeed = (strength: number): string => { |
Check warning
Code scanning / ESLint
disallow unused variables Warning
@@ -1,7 +1,9 @@ | |||
import { Chain } from "@paybox/zeus"; | |||
import { HASURA_URL, JWT } from "../config"; | |||
import { dbResStatus, getClientId } from "../types/client"; | |||
import { HASURA_ADMIN_SERCRET } from "@paybox/common"; | |||
import { HASURA_ADMIN_SERCRET, WalletKeys } from "@paybox/common"; | |||
import { Wallet, ethers } from "ethers"; |
Check warning
Code scanning / ESLint
disallow unused variables Warning
@@ -1,7 +1,9 @@ | |||
import { Chain } from "@paybox/zeus"; | |||
import { HASURA_URL, JWT } from "../config"; | |||
import { dbResStatus, getClientId } from "../types/client"; | |||
import { HASURA_ADMIN_SERCRET } from "@paybox/common"; | |||
import { HASURA_ADMIN_SERCRET, WalletKeys } from "@paybox/common"; | |||
import { Wallet, ethers } from "ethers"; |
Check warning
Code scanning / ESLint
disallow unused variables Warning
import { HASURA_ADMIN_SERCRET } from "@paybox/common"; | ||
import { HASURA_ADMIN_SERCRET, WalletKeys } from "@paybox/common"; | ||
import { Wallet, ethers } from "ethers"; | ||
import { Keypair } from "@solana/web3.js"; |
Check warning
Code scanning / ESLint
disallow unused variables Warning
@shawakash complete issue #116