@nodeset/contracts
Version:
Protocol for accessing NodeSet's Constellation Ethereum staking network
17 lines (11 loc) • 534 B
text/typescript
import { deployProtocol } from "../scripts/utils/deployment";
import { setDefaultParameters } from "../test/rocketpool/_helpers/defaults";
import { deployRocketPool } from "../test/rocketpool/_helpers/deployment";
import { createSigners, getRocketPool } from "../test/test";
(async () => {
await deployRocketPool();
await setDefaultParameters();
const signers = await createSigners();
const deployedProtocol = await deployProtocol(signers, true);
const rocketPool = await getRocketPool(deployedProtocol.directory);
})();