Skip to content

Commit

Permalink
chore: Move Polygon RPC URL
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurdotb committed Mar 13, 2024
1 parent 4028435 commit c89411c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/connectors/verida.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import { Context, Network } from '@verida/client-ts';
import { AutoAccount } from '@verida/account-node';

import type { CredentialDataRecord, DataRecord } from '../../types/verida.js';
import { VERIDA_APP_NAME, VERIDA_CREDENTIAL_RECORD_SCHEMA } from '../../types/constants.js';
import { VERIDA_APP_NAME, POLYGON_RPC_URL, VERIDA_CREDENTIAL_RECORD_SCHEMA } from '../../types/constants.js';

import * as dotenv from 'dotenv';
import type { VerifiableCredential } from '@veramo/core';
dotenv.config();

const { VERIDA_NETWORK, POLYGON_RPC_URL, VERIDA_PRIVATE_KEY, POLYGON_PRIVATE_KEY } = process.env;
const { VERIDA_NETWORK, VERIDA_PRIVATE_KEY, POLYGON_PRIVATE_KEY } = process.env;

/**
* Helper class for the Verida protocol.
Expand Down

0 comments on commit c89411c

Please sign in to comment.