ecpay_expo/app/(tabs)/shared.tsx
2025-01-09 19:12:18 +05:30

25 lines
780 B
TypeScript

export const CHAIN_ID = 421614; // Arbitrum Sepolia
export const CONTRACT_ADDRESS = '0x5C38736f3E8d2A4F4Ca742fE0B6c4e22D3dB8917';
export const TOKEN_CONTRACT_ADDRESS = '0x976E7ED682f781F39Fd79BF2966bB54A9CBbDF5F';
export const RECEIPENT_ADDRESS = "0xE09865aaCd816729C19E4BeA4caFf247704De9fE";
export const projectId = 'e3a443e9ea8dbf483ef28f1d4f8393de';
export const providerMetadata = {
name: 'ECPAY',
description: 'Pay merchants with EASE',
url: 'https://vps.playpoolstudios.com',
icons: ['https://example.com/icon.png'],
redirect: {
native: 'ecpay://',
universal: 'https://example.com',
},
};
export interface MerchantData {
id: string;
merchant_id: string;
price: string;
description: string;
username:string;
}