@dydxfoundation/governance
Version:
dYdX governance smart contracts
12 lines (11 loc) • 519 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const chai_1 = require("chai");
const describe_contract_1 = require("../helpers/describe-contract");
function init() { }
(0, describe_contract_1.describeContract)('', init, (ctx) => {
it('DGP multisig receives tokens from the community treasury', async () => {
const balance = await ctx.dydxToken.balanceOf(ctx.config.DGP_MULTISIG_ADDRESS);
(0, chai_1.expect)(balance).to.equal(ctx.config.DGP_FUNDING_AMOUNT);
});
});