-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
fontana.config.ts
37 lines (35 loc) · 1.06 KB
/
fontana.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
interface Config {
keypair: string;
token: string;
owner: string;
ticker?: string;
network: 'Mainnet' | 'Devnet';
}
/**
* This config is used to show the tokens to be minted and sent. Add as many as you wish. The ticker is optional.
* The keypair is the public key of the account that will mint the tokens. It should match the keypair on the env.
* If the keypair in the config file is WALLET_1, in the .env file it should be NEXT_PUBLIC_WALLET_1.
*/
const config: Config[] = [
{
keypair: 'WALLET_1',
owner: 'BoX451MZzydoVdZE4NFfmMT3J5Ztqo7YgUNbwwMfjPFu',
token: 'Gqv2ULNwn7DpU2FRfDwagwNifX4WKPaduah43d5xJGU9',
ticker: 'test',
network: 'Devnet',
},
{
keypair: 'WALLET_2',
owner: 'BoX451MZzydoVdZE4NFfmMT3J5Ztqo7YgUNbwwMfjPFu',
token: '3ji7s3pT4j6EVx4HKFq2PUe2vw7kzzfWCSLdqsQdvk6T',
network: 'Devnet',
},
{
keypair: 'WALLET_1',
owner: 'BoX451MZzydoVdZE4NFfmMT3J5Ztqo7YgUNbwwMfjPFu',
token: '7efhjQucjgVCgijLewbJZrE16GHba9vdUzmFUdi6vwyc',
ticker: 'lol',
network: 'Devnet',
},
];
export default config;