Skip to content

Commit

Permalink
fixing ethpass key
Browse files Browse the repository at this point in the history
  • Loading branch information
julien51 committed Jul 4, 2023
1 parent ac16916 commit 63ce972
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion unlock-app/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const requiredEnvs = {
base64WedlocksPublicKey: process.env.NEXT_PUBLIC_BASE64_WEDLOCKS_PUBLIC_KEY,
stripeApiKey:
process.env.NEXT_PUBLIC_STRIPE_KEY || 'pk_test_BHXKmScocCfrQ1oW8HTmnVrB',
ethPassApiKey: process.env.NEXT_PUBLIC_ETHPASS_KEY,
ethPassApiKey:
process.env.NEXT_PUBLIC_ETHPASS_KEY ||
'sk_live_vKGUa9EuZAVffxI3pnhY3p3C2Ccb34s7',
}

for (const [key, value] of Object.entries(requiredEnvs)) {
Expand Down
4 changes: 3 additions & 1 deletion unlock-app/src/config/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ export const config = {
'LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0NCk1JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQkNnS0NBUUVBbzdTYXhDZDg3YnQ0SFZ4anhXbkkNClFOTGFhZVdqb1ptbFNxcGhkL1JCbDNzNGQrcENnZHl3YUJBdGRqVENMQXBzakN6SzFqZWZLVWZmbXhqbW15NGUNCnFHRHN2ekZBazRUS1ZrM0g4ZTJrYnJpNHdoZjNaU1V4d2gyL2c2WWgrRzFuK1F2cWJ0ZGwvOVUvcnJ5SmR5NFENCmt6K2tJMzBsRk9aNHJCMHJ5bldvdDZuZGtISUVlMDFhQThzYWpSb1ZrZitDb1RFZ1hWNlowd2gzSlRNc01FUEENCk8rc2FGYkVaZlI4Y1lMNEVVanB1Ty9WUXZyZk1nVDRiQUxLQXVrV1hweGZWZDNWTVlNallQeU52KzUwRTFRR2UNClZYN0xtYUR6ZmhuQlhTbG4zU01mYncvTWl2cExoR3RlQ0NIN0JYaU8zb1hQUFpVd3ZIT3BzTm1OS2F6dEx4OG4NCmF3SURBUUFCDQotLS0tLUVORCBQVUJMSUMgS0VZLS0tLS0NCg==',
stripeApiKey:
process.env.NEXT_PUBLIC_STRIPE_KEY || 'pk_test_BHXKmScocCfrQ1oW8HTmnVrB',
ethPassApiKey: 'pk_live_Th4KfDH9DZw0cuHcWzyUFBgAeHEl0MoK',
ethPassApiKey:
process.env.NEXT_PUBLIC_ETHPASS_KEY ||
'sk_live_vKGUa9EuZAVffxI3pnhY3p3C2Ccb34s7',
walletConnectApiKey: '1535029cc7500ace23802e2e990c58d7', // https://cloud.walletconnect.com/app/project?uuid=7920be27-1e19-43a8-8f7d-cafbb00d4b80
googleMapsApiKey: 'AIzaSyD_mt4bpelB7Dlr7XzfUW9k7b9agbf_iSo',
httpProvider: process.env.NEXT_PUBLIC_HTTP_PROVIDER || 'localhost',
Expand Down

0 comments on commit 63ce972

Please sign in to comment.