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