import { FKConfig, ThemeName, SourceConnectorName } from "@aarc-xyz/fundkit-web-sdk";
export const aarcConfig: FKConfig = {
appName: "Cross-Chain Deposits",
module: {
exchange: { enabled: true },
onRamp: { enabled: true },
bridgeAndSwap: {
enabled: true,
fetchOnlyDestinationBalance: false,
routeType: "Value",
connectors: [SourceConnectorName.ETHEREUM],
},
},
destination: {
contract: {
contractAddress: "YOUR_CONTRACT_ADDRESS",
contractName: "Cross-chain Deposit Contract",
contractGasLimit: "300000",
contractUri: "https://example.com/image.png/"
},
chainId: "DESTINATION_CHAIN_ID",
tokenAddress: "DESTINATION_TOKEN_ADDRESS" // token in which the deposit is collected
},
appearance: {
theme: ThemeName.DARK,
roundness: 42,
},
apiKeys: {
aarcSDK: import.meta.env.VITE_AARC_API_KEY,
},
};