Skip to content

Commit

Permalink
feat: remove hardcoded keys (#1144)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinenerio authored Nov 24, 2023
1 parent 7226ece commit dbdc03b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/espressocash_app/lib/config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ const espressoCashLinkProtocol = 'espressocash';

const kadoBaseUrl = 'https://app.kado.money/';
const kadoApiBaseUrl = 'https://api.kado.money';
const kadoApiKey = '789fc144-32ff-46c8-85af-339354fa314d';
const kadoApiKey = String.fromEnvironment('KADO_API_KEY');

const rampApiKey = 'q3xw9q8ejb9js36czw8htg8qj4bf62q6hua8bvh9';
const rampApiKey = String.fromEnvironment('RAMP_API_KEY');

const guardarianBaseUrl = 'https://guardarian.com/calculator/v1';
const guardarianApiKey = 'ef6d4999-80ad-4ab2-bcfc-4c0669d2e070';
const guardarianApiKey = String.fromEnvironment('GUARDARIAN_API_KEY');

const maxPayloadsPerSigningRequest = 10;

Expand Down

0 comments on commit dbdc03b

Please sign in to comment.