Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
1import { STSClient } from "@aws-sdk/client-sts";
2import { EVER_API, EVER_REGION } from "@hey/data/constants";
3
4const stsClient = new STSClient({
5 credentials: {
6 accessKeyId: process.env.EVER_ACCESS_KEY as string,
7 secretAccessKey: process.env.EVER_ACCESS_SECRET as string
8 },
9 endpoint: EVER_API,
10 region: EVER_REGION
11});
12
13export default stsClient;