Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 436 Bytes

File metadata and controls

21 lines (16 loc) · 436 Bytes
import { WaveShield } from "waveshield";

const waveShield = new WaveShield({
  security: {
    apiKeyAuth: process.env["WAVESHIELD_API_KEY_AUTH"] ?? "",
    apiSecretAuth: process.env["WAVESHIELD_API_SECRET_AUTH"] ?? "",
  },
});

async function run() {
  const result = await waveShield.auth.verify();

  console.log(result);
}

run();