@moveflow/widget
Version:
> ⚠️ **This is a testnet version** of the MoveFlow Checkout Widget. It is intended for development and testing purposes only. Do not use for mainnet payments.
40 lines (39 loc) • 888 B
TypeScript
export declare enum NetworkType {
Goerli = "Goerli",
Aptos = "Aptos",
Viction = "Viction",
LightLink = "LightLink",
Pharos = "Pharos"
}
export declare const coinConfig: {
Goerli: {
imagePath: string;
coinName: string;
address: string;
}[];
Aptos: {
imagePath: string;
coinName: string;
address: string;
}[];
Viction: {
imagePath: string;
coinName: string;
address: string;
}[];
LightLink: {
imagePath: string;
coinName: string;
address: string;
}[];
Pharos: {
imagePath: string;
coinName: string;
address: string;
}[];
};
export declare const contractConfig: {
Testnet: Map<NetworkType, string>;
Mainnet: Map<NetworkType, string>;
};
export declare const networkIconConfig: Map<NetworkType, string>;