You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.0 KiB
50 lines
1.0 KiB
const {
|
|
hstBytecode,
|
|
hstAbi,
|
|
piggybankBytecode,
|
|
piggybankAbi,
|
|
collectiblesAbi,
|
|
collectiblesBytecode,
|
|
failingContractAbi,
|
|
failingContractBytecode,
|
|
} = require('../../../node_modules/@metamask/test-dapp/dist/constants.json');
|
|
|
|
const hstFactory = {
|
|
initialAmount: 100,
|
|
tokenName: 'TST',
|
|
decimalUnits: 4,
|
|
tokenSymbol: 'TST',
|
|
bytecode: hstBytecode,
|
|
abi: hstAbi,
|
|
};
|
|
|
|
const collectiblesFactory = {
|
|
bytecode: collectiblesBytecode,
|
|
abi: collectiblesAbi,
|
|
};
|
|
|
|
const piggybankFactory = {
|
|
bytecode: piggybankBytecode,
|
|
abi: piggybankAbi,
|
|
};
|
|
|
|
const failingContract = {
|
|
bytecode: failingContractBytecode,
|
|
abi: failingContractAbi,
|
|
};
|
|
|
|
const SMART_CONTRACTS = {
|
|
HST: 'hst',
|
|
COLLECTIBLES: 'collectibles',
|
|
PIGGYBANK: 'piggybank',
|
|
FAILING: 'failing',
|
|
};
|
|
|
|
const contractConfiguration = {
|
|
[SMART_CONTRACTS.HST]: hstFactory,
|
|
[SMART_CONTRACTS.COLLECTIBLES]: collectiblesFactory,
|
|
[SMART_CONTRACTS.PIGGYBANK]: piggybankFactory,
|
|
[SMART_CONTRACTS.FAILING]: failingContract,
|
|
};
|
|
|
|
module.exports = { SMART_CONTRACTS, contractConfiguration };
|
|
|