@latticexyz/cli 2.0.0-next.11 → 2.0.0-next.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -1
- package/dist/mud.js +19 -13
- package/dist/mud.js.map +1 -1
- package/package.json +16 -12
- package/src/commands/deploy.ts +7 -30
- package/src/commands/dev-contracts.ts +74 -138
- package/src/commands/test.ts +30 -36
- package/src/commands/trace.ts +7 -5
- package/src/debug.ts +3 -0
- package/src/deploy/assertNamespaceOwner.ts +42 -0
- package/src/deploy/common.ts +72 -0
- package/src/deploy/configToTables.ts +68 -0
- package/src/deploy/create2/README.md +9 -0
- package/src/deploy/create2/deployment.json +7 -0
- package/src/deploy/debug.ts +3 -0
- package/src/deploy/deploy.ts +108 -0
- package/src/deploy/deployWorld.ts +33 -0
- package/src/deploy/ensureContract.ts +49 -0
- package/src/deploy/ensureContractsDeployed.ts +25 -0
- package/src/deploy/ensureDeployer.ts +36 -0
- package/src/deploy/ensureFunctions.ts +86 -0
- package/src/deploy/ensureModules.ts +72 -0
- package/src/deploy/ensureSystems.ts +161 -0
- package/src/deploy/ensureTables.ts +65 -0
- package/src/deploy/ensureWorldFactory.ts +34 -0
- package/src/deploy/getFunctions.ts +58 -0
- package/src/deploy/getResourceAccess.ts +51 -0
- package/src/deploy/getResourceIds.ts +31 -0
- package/src/deploy/getSystems.ts +48 -0
- package/src/deploy/getTableValue.ts +30 -0
- package/src/deploy/getTables.ts +59 -0
- package/src/deploy/getWorldDeploy.ts +39 -0
- package/src/deploy/logsToWorldDeploy.ts +49 -0
- package/src/deploy/resolveConfig.ts +154 -0
- package/src/deploy/resourceLabel.ts +3 -0
- package/src/index.ts +1 -1
- package/src/runDeploy.ts +128 -0
- package/src/utils/modules/constants.ts +1 -2
- package/src/utils/utils/getContractData.ts +2 -5
- package/dist/chunk-TW3YGZ4D.js +0 -11
- package/dist/chunk-TW3YGZ4D.js.map +0 -1
- package/src/utils/deploy.ts +0 -254
- package/src/utils/deployHandler.ts +0 -93
- package/src/utils/modules/getInstallModuleCallData.ts +0 -27
- package/src/utils/modules/getUserModules.ts +0 -5
- package/src/utils/modules/types.ts +0 -14
- package/src/utils/systems/getGrantAccessCallData.ts +0 -29
- package/src/utils/systems/getRegisterFunctionSelectorsCallData.ts +0 -57
- package/src/utils/systems/getRegisterSystemCallData.ts +0 -17
- package/src/utils/systems/types.ts +0 -9
- package/src/utils/systems/utils.ts +0 -42
- package/src/utils/tables/getRegisterTableCallData.ts +0 -49
- package/src/utils/tables/getTableIds.ts +0 -18
- package/src/utils/tables/types.ts +0 -12
- package/src/utils/utils/confirmNonce.ts +0 -24
- package/src/utils/utils/deployContract.ts +0 -33
- package/src/utils/utils/fastTxExecute.ts +0 -56
- package/src/utils/utils/getChainId.ts +0 -10
- package/src/utils/utils/setInternalFeePerGas.ts +0 -49
- package/src/utils/utils/types.ts +0 -21
- package/src/utils/world.ts +0 -28
@@ -1,93 +0,0 @@
|
|
1
|
-
import chalk from "chalk";
|
2
|
-
import path from "path";
|
3
|
-
import { MUDError } from "@latticexyz/common/errors";
|
4
|
-
import { loadConfig } from "@latticexyz/config/node";
|
5
|
-
import { StoreConfig } from "@latticexyz/store";
|
6
|
-
import { WorldConfig } from "@latticexyz/world";
|
7
|
-
import { deploy } from "../utils/deploy";
|
8
|
-
import { forge, getRpcUrl, getSrcDirectory } from "@latticexyz/common/foundry";
|
9
|
-
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
|
10
|
-
import { getExistingContracts } from "./getExistingContracts";
|
11
|
-
import { execa } from "execa";
|
12
|
-
import { getChainId } from "./utils/getChainId";
|
13
|
-
|
14
|
-
export type DeployOptions = {
|
15
|
-
configPath?: string;
|
16
|
-
printConfig?: boolean;
|
17
|
-
profile?: string;
|
18
|
-
priorityFeeMultiplier: number;
|
19
|
-
clean?: boolean;
|
20
|
-
debug?: boolean;
|
21
|
-
saveDeployment: boolean;
|
22
|
-
rpc?: string;
|
23
|
-
worldAddress?: string;
|
24
|
-
srcDir?: string;
|
25
|
-
disableTxWait: boolean;
|
26
|
-
pollInterval: number;
|
27
|
-
skipBuild?: boolean;
|
28
|
-
};
|
29
|
-
|
30
|
-
export async function deployHandler(args: DeployOptions) {
|
31
|
-
args.profile ??= process.env.FOUNDRY_PROFILE;
|
32
|
-
const { configPath, printConfig, profile, clean, skipBuild } = args;
|
33
|
-
|
34
|
-
const rpc = args.rpc ?? (await getRpcUrl(profile));
|
35
|
-
console.log(
|
36
|
-
chalk.bgBlue(
|
37
|
-
chalk.whiteBright(`\n Deploying MUD contracts${profile ? " with profile " + profile : ""} to RPC ${rpc} \n`)
|
38
|
-
)
|
39
|
-
);
|
40
|
-
|
41
|
-
if (clean) {
|
42
|
-
await forge(["clean"], { profile });
|
43
|
-
}
|
44
|
-
|
45
|
-
// Run forge build
|
46
|
-
if (!skipBuild) {
|
47
|
-
await forge(["build", "--skip", "test", "script"], { profile });
|
48
|
-
await execa("mud", ["abi-ts"], { stdio: "inherit" });
|
49
|
-
}
|
50
|
-
|
51
|
-
// Get a list of all contract names
|
52
|
-
const srcDir = args?.srcDir ?? (await getSrcDirectory());
|
53
|
-
const existingContractNames = getExistingContracts(srcDir).map(({ basename }) => basename);
|
54
|
-
|
55
|
-
// Load the config
|
56
|
-
const mudConfig = (await loadConfig(configPath)) as StoreConfig & WorldConfig;
|
57
|
-
|
58
|
-
if (printConfig) console.log(chalk.green("\nResolved config:\n"), JSON.stringify(mudConfig, null, 2));
|
59
|
-
|
60
|
-
const privateKey = process.env.PRIVATE_KEY;
|
61
|
-
if (!privateKey)
|
62
|
-
throw new MUDError(
|
63
|
-
`Missing PRIVATE_KEY environment variable.
|
64
|
-
Run 'echo "PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" > .env'
|
65
|
-
in your contracts directory to use the default anvil private key.`
|
66
|
-
);
|
67
|
-
const deploymentInfo = await deploy(mudConfig, existingContractNames, { ...args, rpc, privateKey });
|
68
|
-
|
69
|
-
if (args.saveDeployment) {
|
70
|
-
// Write deployment result to file (latest and timestamp)
|
71
|
-
const chainId = await getChainId(rpc);
|
72
|
-
const outputDir = path.join(mudConfig.deploysDirectory, chainId.toString());
|
73
|
-
mkdirSync(outputDir, { recursive: true });
|
74
|
-
writeFileSync(path.join(outputDir, "latest.json"), JSON.stringify(deploymentInfo, null, 2));
|
75
|
-
writeFileSync(path.join(outputDir, Date.now() + ".json"), JSON.stringify(deploymentInfo, null, 2));
|
76
|
-
|
77
|
-
const localChains = [1337, 31337];
|
78
|
-
const deploys = existsSync(mudConfig.worldsFile) ? JSON.parse(readFileSync(mudConfig.worldsFile, "utf-8")) : {};
|
79
|
-
deploys[chainId] = {
|
80
|
-
address: deploymentInfo.worldAddress,
|
81
|
-
// We expect the worlds file to be committed and since local deployments are often a consistent address but different block number, we'll ignore the block number.
|
82
|
-
blockNumber: localChains.includes(chainId) ? undefined : deploymentInfo.blockNumber,
|
83
|
-
};
|
84
|
-
writeFileSync(mudConfig.worldsFile, JSON.stringify(deploys, null, 2));
|
85
|
-
|
86
|
-
console.log(
|
87
|
-
chalk.bgGreen(chalk.whiteBright(`\n Deployment result (written to ${mudConfig.worldsFile} and ${outputDir}): \n`))
|
88
|
-
);
|
89
|
-
}
|
90
|
-
|
91
|
-
console.log(deploymentInfo);
|
92
|
-
return deploymentInfo;
|
93
|
-
}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
import { defaultAbiCoder } from "ethers/lib/utils.js";
|
2
|
-
import { resolveWithContext } from "@latticexyz/config";
|
3
|
-
import { Module } from "./types";
|
4
|
-
import { CallData } from "../utils/types";
|
5
|
-
import { TableIds } from "../tables/types";
|
6
|
-
|
7
|
-
export async function getInstallModuleCallData(
|
8
|
-
moduleContracts: Record<string, Promise<string>>,
|
9
|
-
module: Module,
|
10
|
-
tableIds: TableIds
|
11
|
-
): Promise<CallData> {
|
12
|
-
const moduleAddress = await moduleContracts[module.name];
|
13
|
-
if (!moduleAddress) throw new Error(`Module ${module.name} not found`);
|
14
|
-
// Resolve arguments
|
15
|
-
const resolvedArgs = module.args.map((arg) =>
|
16
|
-
resolveWithContext(arg, {
|
17
|
-
tableIds,
|
18
|
-
})
|
19
|
-
);
|
20
|
-
const values = resolvedArgs.map((arg) => arg.value);
|
21
|
-
const types = resolvedArgs.map((arg) => arg.type);
|
22
|
-
|
23
|
-
return {
|
24
|
-
func: module.root ? "installRootModule" : "installModule",
|
25
|
-
args: [moduleAddress, defaultAbiCoder.encode(types, values)],
|
26
|
-
};
|
27
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
import { System } from "./types";
|
2
|
-
import { CallData } from "../utils/types";
|
3
|
-
import { resourceIdToHex } from "@latticexyz/common";
|
4
|
-
|
5
|
-
export async function getGrantAccessCallData(input: {
|
6
|
-
systems: System[];
|
7
|
-
systemContracts: Record<string, Promise<string>>;
|
8
|
-
namespace: string;
|
9
|
-
}): Promise<CallData[]> {
|
10
|
-
const { systems, namespace, systemContracts } = input;
|
11
|
-
const calls: CallData[] = [];
|
12
|
-
for (const { name, accessListAddresses, accessListSystems } of systems) {
|
13
|
-
// Grant access to addresses
|
14
|
-
accessListAddresses.map(async (address) => calls.push(getGrantSystemAccessCallData(name, namespace, address)));
|
15
|
-
|
16
|
-
// Grant access to other systems
|
17
|
-
accessListSystems.map(async (granteeSystem) =>
|
18
|
-
calls.push(getGrantSystemAccessCallData(name, namespace, await systemContracts[granteeSystem]))
|
19
|
-
);
|
20
|
-
}
|
21
|
-
return calls;
|
22
|
-
}
|
23
|
-
|
24
|
-
function getGrantSystemAccessCallData(name: string, namespace: string, address: string): CallData {
|
25
|
-
return {
|
26
|
-
func: "grantAccess",
|
27
|
-
args: [resourceIdToHex({ type: "system", namespace, name }), address],
|
28
|
-
};
|
29
|
-
}
|
@@ -1,57 +0,0 @@
|
|
1
|
-
import { resourceIdToHex } from "@latticexyz/common";
|
2
|
-
import { System } from "./types";
|
3
|
-
import { loadFunctionSignatures, toFunctionSelector } from "./utils";
|
4
|
-
import { CallData } from "../utils/types";
|
5
|
-
|
6
|
-
export function getRegisterFunctionSelectorsCallData(input: {
|
7
|
-
systemContractName: string;
|
8
|
-
system: System;
|
9
|
-
namespace: string;
|
10
|
-
forgeOutDirectory: string;
|
11
|
-
}): CallData[] {
|
12
|
-
// Register system at route
|
13
|
-
const callData: CallData[] = [];
|
14
|
-
const { systemContractName, namespace, forgeOutDirectory, system } = input;
|
15
|
-
|
16
|
-
if (system.registerFunctionSelectors) {
|
17
|
-
const baseSystemFunctionSignatures = loadFunctionSignatures("System", forgeOutDirectory);
|
18
|
-
const systemFunctionSignatures = loadFunctionSignatures(systemContractName, forgeOutDirectory).filter(
|
19
|
-
(functionSignature) =>
|
20
|
-
systemContractName === "System" || !baseSystemFunctionSignatures.includes(functionSignature)
|
21
|
-
);
|
22
|
-
const isRoot = namespace === "";
|
23
|
-
for (const systemFunctionSignature of systemFunctionSignatures) {
|
24
|
-
callData.push(
|
25
|
-
getRegisterFunctionSelectorCallData({
|
26
|
-
namespace,
|
27
|
-
name: system.name,
|
28
|
-
systemFunctionSignature,
|
29
|
-
isRoot,
|
30
|
-
})
|
31
|
-
);
|
32
|
-
}
|
33
|
-
}
|
34
|
-
return callData;
|
35
|
-
}
|
36
|
-
|
37
|
-
function getRegisterFunctionSelectorCallData(input: {
|
38
|
-
namespace: string;
|
39
|
-
name: string;
|
40
|
-
systemFunctionSignature: string;
|
41
|
-
isRoot: boolean;
|
42
|
-
}): CallData {
|
43
|
-
const { namespace, name, systemFunctionSignature, isRoot } = input;
|
44
|
-
|
45
|
-
if (isRoot) {
|
46
|
-
const functionSelector = toFunctionSelector(systemFunctionSignature);
|
47
|
-
return {
|
48
|
-
func: "registerRootFunctionSelector",
|
49
|
-
args: [resourceIdToHex({ type: "system", namespace, name }), systemFunctionSignature, functionSelector],
|
50
|
-
};
|
51
|
-
} else {
|
52
|
-
return {
|
53
|
-
func: "registerFunctionSelector",
|
54
|
-
args: [resourceIdToHex({ type: "system", namespace, name }), systemFunctionSignature],
|
55
|
-
};
|
56
|
-
}
|
57
|
-
}
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { resourceIdToHex } from "@latticexyz/common";
|
2
|
-
import { System } from "./types";
|
3
|
-
import { CallData } from "../utils/types";
|
4
|
-
|
5
|
-
export async function getRegisterSystemCallData(input: {
|
6
|
-
systemContracts: Record<string, Promise<string>>;
|
7
|
-
systemKey: string;
|
8
|
-
system: System;
|
9
|
-
namespace: string;
|
10
|
-
}): Promise<CallData> {
|
11
|
-
const { namespace, systemContracts, systemKey, system } = input;
|
12
|
-
const systemAddress = await systemContracts[systemKey];
|
13
|
-
return {
|
14
|
-
func: "registerSystem",
|
15
|
-
args: [resourceIdToHex({ type: "system", namespace, name: system.name }), systemAddress, system.openAccess],
|
16
|
-
};
|
17
|
-
}
|
@@ -1,42 +0,0 @@
|
|
1
|
-
import { ethers } from "ethers";
|
2
|
-
import { ParamType } from "ethers/lib/utils.js";
|
3
|
-
import { getContractData } from "../utils/getContractData";
|
4
|
-
|
5
|
-
export function loadFunctionSignatures(contractName: string, forgeOutDirectory: string): string[] {
|
6
|
-
const { abi } = getContractData(contractName, forgeOutDirectory);
|
7
|
-
|
8
|
-
return abi
|
9
|
-
.filter((item) => ["fallback", "function"].includes(item.type))
|
10
|
-
.map((item) => {
|
11
|
-
return `${item.name}${parseComponents(item.inputs)}`;
|
12
|
-
});
|
13
|
-
}
|
14
|
-
|
15
|
-
// TODO: move this to utils as soon as utils are usable inside cli
|
16
|
-
// (see https://github.com/latticexyz/mud/issues/499)
|
17
|
-
export function toFunctionSelector(functionSignature: string): string {
|
18
|
-
return sigHash(functionSignature);
|
19
|
-
}
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Recursively turn (nested) structs in signatures into tuples
|
23
|
-
*/
|
24
|
-
function parseComponents(params: ParamType[]): string {
|
25
|
-
const components = params.map((param) => {
|
26
|
-
const tupleMatch = param.type.match(/tuple(.*)/);
|
27
|
-
if (tupleMatch) {
|
28
|
-
// there can be arrays of tuples,
|
29
|
-
// `tupleMatch[1]` preserves the array brackets (or is empty string for non-arrays)
|
30
|
-
return parseComponents(param.components) + tupleMatch[1];
|
31
|
-
} else {
|
32
|
-
return param.type;
|
33
|
-
}
|
34
|
-
});
|
35
|
-
return `(${components})`;
|
36
|
-
}
|
37
|
-
|
38
|
-
// TODO: move this to utils as soon as utils are usable inside cli
|
39
|
-
// (see https://github.com/latticexyz/mud/issues/499)
|
40
|
-
function sigHash(signature: string) {
|
41
|
-
return ethers.utils.hexDataSlice(ethers.utils.keccak256(ethers.utils.toUtf8Bytes(signature)), 0, 4);
|
42
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
import { encodeSchema, getStaticByteLength } from "@latticexyz/schema-type/deprecated";
|
2
|
-
import { StoreConfig } from "@latticexyz/store";
|
3
|
-
import { resolveAbiOrUserType } from "@latticexyz/store/codegen";
|
4
|
-
import { resourceIdToHex } from "@latticexyz/common";
|
5
|
-
import { Table } from "./types";
|
6
|
-
import { fieldLayoutToHex } from "@latticexyz/protocol-parser";
|
7
|
-
import { CallData } from "../utils/types";
|
8
|
-
import { loadAndExtractUserTypes } from "@latticexyz/common/codegen";
|
9
|
-
|
10
|
-
export function getRegisterTableCallData(
|
11
|
-
table: Table,
|
12
|
-
storeConfig: StoreConfig,
|
13
|
-
outputBaseDirectory: string,
|
14
|
-
remappings: [string, string][]
|
15
|
-
): CallData {
|
16
|
-
const { name, valueSchema, keySchema } = table;
|
17
|
-
if (!name) throw Error("Table missing name");
|
18
|
-
|
19
|
-
const solidityUserTypes = loadAndExtractUserTypes(storeConfig.userTypes, outputBaseDirectory, remappings);
|
20
|
-
|
21
|
-
const schemaTypes = Object.values(valueSchema).map((abiOrUserType) => {
|
22
|
-
const { schemaType } = resolveAbiOrUserType(abiOrUserType, storeConfig, solidityUserTypes);
|
23
|
-
return schemaType;
|
24
|
-
});
|
25
|
-
|
26
|
-
const schemaTypeLengths = schemaTypes.map((schemaType) => getStaticByteLength(schemaType));
|
27
|
-
const fieldLayout = {
|
28
|
-
staticFieldLengths: schemaTypeLengths.filter((schemaTypeLength) => schemaTypeLength > 0),
|
29
|
-
numDynamicFields: schemaTypeLengths.filter((schemaTypeLength) => schemaTypeLength === 0).length,
|
30
|
-
};
|
31
|
-
|
32
|
-
const keyTypes = Object.values(keySchema).map((abiOrUserType) => {
|
33
|
-
const { schemaType } = resolveAbiOrUserType(abiOrUserType, storeConfig, solidityUserTypes);
|
34
|
-
return schemaType;
|
35
|
-
});
|
36
|
-
|
37
|
-
return {
|
38
|
-
func: "registerTable",
|
39
|
-
args: [
|
40
|
-
// TODO: add support for table namespaces (https://github.com/latticexyz/mud/issues/994)
|
41
|
-
resourceIdToHex({ type: table.offchainOnly ? "offchainTable" : "table", namespace: storeConfig.namespace, name }),
|
42
|
-
fieldLayoutToHex(fieldLayout),
|
43
|
-
encodeSchema(keyTypes),
|
44
|
-
encodeSchema(schemaTypes),
|
45
|
-
Object.keys(keySchema),
|
46
|
-
Object.keys(valueSchema),
|
47
|
-
],
|
48
|
-
};
|
49
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import { StoreConfig } from "@latticexyz/store";
|
2
|
-
import { TableIds } from "./types";
|
3
|
-
import { resourceIdToHex } from "@latticexyz/common";
|
4
|
-
import { hexToBytes } from "viem";
|
5
|
-
|
6
|
-
export function getTableIds(storeConfig: StoreConfig): TableIds {
|
7
|
-
const tableIds: TableIds = {};
|
8
|
-
for (const [tableName, { name, offchainOnly }] of Object.entries(storeConfig.tables)) {
|
9
|
-
tableIds[tableName] = hexToBytes(
|
10
|
-
resourceIdToHex({
|
11
|
-
type: offchainOnly ? "offchainTable" : "table",
|
12
|
-
namespace: storeConfig.namespace,
|
13
|
-
name,
|
14
|
-
})
|
15
|
-
);
|
16
|
-
}
|
17
|
-
return tableIds;
|
18
|
-
}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
export type Table = {
|
2
|
-
valueSchema: Record<string, string>;
|
3
|
-
keySchema: Record<string, string>;
|
4
|
-
directory: string;
|
5
|
-
tableIdArgument: boolean;
|
6
|
-
storeArgument: boolean;
|
7
|
-
offchainOnly: boolean;
|
8
|
-
name?: string | undefined;
|
9
|
-
dataStruct?: boolean | undefined;
|
10
|
-
};
|
11
|
-
|
12
|
-
export type TableIds = { [tableName: string]: Uint8Array };
|
@@ -1,24 +0,0 @@
|
|
1
|
-
import chalk from "chalk";
|
2
|
-
import { Wallet } from "ethers";
|
3
|
-
import { MUDError } from "@latticexyz/common/errors";
|
4
|
-
|
5
|
-
export async function confirmNonce(signer: Wallet, nonce: number, pollInterval: number): Promise<void> {
|
6
|
-
let remoteNonce = await signer.getTransactionCount();
|
7
|
-
let retryCount = 0;
|
8
|
-
const maxRetries = 100;
|
9
|
-
while (remoteNonce !== nonce && retryCount < maxRetries) {
|
10
|
-
console.log(
|
11
|
-
chalk.gray(
|
12
|
-
`Waiting for transactions to be included before executing postDeployScript (local nonce: ${nonce}, remote nonce: ${remoteNonce}, retry number ${retryCount}/${maxRetries})`
|
13
|
-
)
|
14
|
-
);
|
15
|
-
await new Promise((resolve) => setTimeout(resolve, pollInterval));
|
16
|
-
retryCount++;
|
17
|
-
remoteNonce = await signer.getTransactionCount();
|
18
|
-
}
|
19
|
-
if (remoteNonce !== nonce) {
|
20
|
-
throw new MUDError(
|
21
|
-
"Remote nonce doesn't match local nonce, indicating that not all deploy transactions were included."
|
22
|
-
);
|
23
|
-
}
|
24
|
-
}
|
@@ -1,33 +0,0 @@
|
|
1
|
-
import chalk from "chalk";
|
2
|
-
import { ethers } from "ethers";
|
3
|
-
import { MUDError } from "@latticexyz/common/errors";
|
4
|
-
import { TxConfig, ContractCode } from "./types";
|
5
|
-
|
6
|
-
export async function deployContract(input: TxConfig & { nonce: number; contract: ContractCode }): Promise<string> {
|
7
|
-
const { signer, nonce, maxPriorityFeePerGas, maxFeePerGas, debug, gasPrice, confirmations, contract } = input;
|
8
|
-
|
9
|
-
try {
|
10
|
-
const factory = new ethers.ContractFactory(contract.abi, contract.bytecode, signer);
|
11
|
-
console.log(chalk.gray(`executing deployment of ${contract.name} with nonce ${nonce}`));
|
12
|
-
const deployPromise = factory
|
13
|
-
.deploy({
|
14
|
-
nonce,
|
15
|
-
maxPriorityFeePerGas,
|
16
|
-
maxFeePerGas,
|
17
|
-
gasPrice,
|
18
|
-
})
|
19
|
-
.then((c) => (confirmations ? c : c.deployed()));
|
20
|
-
const { address } = await deployPromise;
|
21
|
-
console.log(chalk.green("Deployed", contract.name, "to", address));
|
22
|
-
return address;
|
23
|
-
} catch (error: any) {
|
24
|
-
if (debug) console.error(error);
|
25
|
-
if (error?.message.includes("invalid bytecode")) {
|
26
|
-
throw new MUDError(
|
27
|
-
`Error deploying ${contract.name}: invalid bytecode. Note that linking of public libraries is not supported yet, make sure none of your libraries use "external" functions.`
|
28
|
-
);
|
29
|
-
} else if (error?.message.includes("CreateContractLimit")) {
|
30
|
-
throw new MUDError(`Error deploying ${contract.name}: CreateContractLimit exceeded.`);
|
31
|
-
} else throw error;
|
32
|
-
}
|
33
|
-
}
|
@@ -1,56 +0,0 @@
|
|
1
|
-
import chalk from "chalk";
|
2
|
-
import { TransactionReceipt, TransactionResponse } from "@ethersproject/providers";
|
3
|
-
import { MUDError } from "@latticexyz/common/errors";
|
4
|
-
import { TxConfig } from "./types";
|
5
|
-
|
6
|
-
/**
|
7
|
-
* Only await gas estimation (for speed), only execute if gas estimation succeeds (for safety)
|
8
|
-
*/
|
9
|
-
export async function fastTxExecute<
|
10
|
-
C extends { connect: any; estimateGas: any; [key: string]: any },
|
11
|
-
F extends keyof C
|
12
|
-
>(
|
13
|
-
input: TxConfig & {
|
14
|
-
nonce: number;
|
15
|
-
contract: C;
|
16
|
-
func: F;
|
17
|
-
args: Parameters<C[F]>;
|
18
|
-
confirmations: number;
|
19
|
-
}
|
20
|
-
): Promise<TransactionResponse | TransactionReceipt> {
|
21
|
-
const {
|
22
|
-
func,
|
23
|
-
args,
|
24
|
-
contract,
|
25
|
-
signer,
|
26
|
-
nonce,
|
27
|
-
maxPriorityFeePerGas,
|
28
|
-
maxFeePerGas,
|
29
|
-
gasPrice,
|
30
|
-
confirmations = 1,
|
31
|
-
debug,
|
32
|
-
} = input;
|
33
|
-
const functionName = `${func as string}(${args.map((arg) => `'${arg}'`).join(",")})`;
|
34
|
-
try {
|
35
|
-
const contractWithSigner = contract.connect(signer);
|
36
|
-
const gasLimit = await contractWithSigner.estimateGas[func].apply(null, args);
|
37
|
-
console.log(chalk.gray(`executing transaction: ${functionName} with nonce ${nonce}`));
|
38
|
-
return contractWithSigner[func]
|
39
|
-
.apply(null, [
|
40
|
-
...args,
|
41
|
-
{
|
42
|
-
gasLimit,
|
43
|
-
nonce: nonce,
|
44
|
-
maxPriorityFeePerGas: maxPriorityFeePerGas,
|
45
|
-
maxFeePerGas: maxFeePerGas,
|
46
|
-
gasPrice: gasPrice,
|
47
|
-
},
|
48
|
-
])
|
49
|
-
.then((tx: TransactionResponse) => {
|
50
|
-
return confirmations === 0 ? tx : tx.wait(confirmations);
|
51
|
-
});
|
52
|
-
} catch (error: any) {
|
53
|
-
if (debug) console.error(error);
|
54
|
-
throw new MUDError(`Gas estimation error for ${functionName}: ${error?.reason}`);
|
55
|
-
}
|
56
|
-
}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import { ethers } from "ethers";
|
2
|
-
|
3
|
-
// TODO: Use viem's getChainId
|
4
|
-
export async function getChainId(rpc: string) {
|
5
|
-
const { result: chainId } = await ethers.utils.fetchJson(
|
6
|
-
rpc,
|
7
|
-
'{ "id": 42, "jsonrpc": "2.0", "method": "eth_chainId", "params": [ ] }'
|
8
|
-
);
|
9
|
-
return Number(chainId);
|
10
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
import { BigNumber, Wallet } from "ethers";
|
2
|
-
import { MUDError } from "@latticexyz/common/errors";
|
3
|
-
|
4
|
-
/**
|
5
|
-
* Set the maxFeePerGas and maxPriorityFeePerGas based on the current base fee and the given multiplier.
|
6
|
-
* The multiplier is used to allow replacing pending transactions.
|
7
|
-
* @param multiplier Multiplier to apply to the base fee
|
8
|
-
*/
|
9
|
-
export async function setInternalFeePerGas(
|
10
|
-
signer: Wallet,
|
11
|
-
multiplier: number
|
12
|
-
): Promise<{
|
13
|
-
maxPriorityFeePerGas: number | undefined;
|
14
|
-
maxFeePerGas: BigNumber | undefined;
|
15
|
-
gasPrice: BigNumber | undefined;
|
16
|
-
}> {
|
17
|
-
// Compute maxFeePerGas and maxPriorityFeePerGas like ethers, but allow for a multiplier to allow replacing pending transactions
|
18
|
-
const feeData = await signer.provider.getFeeData();
|
19
|
-
let maxPriorityFeePerGas: number | undefined;
|
20
|
-
let maxFeePerGas: BigNumber | undefined;
|
21
|
-
let gasPrice: BigNumber | undefined;
|
22
|
-
|
23
|
-
if (feeData.lastBaseFeePerGas) {
|
24
|
-
if (!feeData.lastBaseFeePerGas.eq(0) && (await signer.getBalance()).eq(0)) {
|
25
|
-
throw new MUDError(`Attempting to deploy to a chain with non-zero base fee with an account that has no balance.
|
26
|
-
If you're deploying to the Lattice testnet, you can fund your account by running 'pnpm mud faucet --address ${await signer.getAddress()}'`);
|
27
|
-
}
|
28
|
-
|
29
|
-
// Set the priority fee to 0 for development chains with no base fee, to allow transactions from unfunded wallets
|
30
|
-
maxPriorityFeePerGas = feeData.lastBaseFeePerGas.eq(0) ? 0 : Math.floor(1_500_000_000 * multiplier);
|
31
|
-
maxFeePerGas = feeData.lastBaseFeePerGas.mul(2).add(maxPriorityFeePerGas);
|
32
|
-
} else if (feeData.gasPrice) {
|
33
|
-
// Legacy chains with gasPrice instead of maxFeePerGas
|
34
|
-
if (!feeData.gasPrice.eq(0) && (await signer.getBalance()).eq(0)) {
|
35
|
-
throw new MUDError(
|
36
|
-
`Attempting to deploy to a chain with non-zero gas price with an account that has no balance.`
|
37
|
-
);
|
38
|
-
}
|
39
|
-
|
40
|
-
gasPrice = feeData.gasPrice;
|
41
|
-
} else {
|
42
|
-
throw new MUDError("Can not fetch fee data from RPC");
|
43
|
-
}
|
44
|
-
return {
|
45
|
-
maxPriorityFeePerGas,
|
46
|
-
maxFeePerGas,
|
47
|
-
gasPrice,
|
48
|
-
};
|
49
|
-
}
|
package/src/utils/utils/types.ts
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
import { BigNumber, ContractInterface, ethers } from "ethers";
|
2
|
-
|
3
|
-
export type CallData = {
|
4
|
-
func: string;
|
5
|
-
args: unknown[];
|
6
|
-
};
|
7
|
-
|
8
|
-
export type ContractCode = {
|
9
|
-
name: string;
|
10
|
-
abi: ContractInterface;
|
11
|
-
bytecode: string | { object: string };
|
12
|
-
};
|
13
|
-
|
14
|
-
export type TxConfig = {
|
15
|
-
signer: ethers.Wallet;
|
16
|
-
maxPriorityFeePerGas: number | undefined;
|
17
|
-
maxFeePerGas: BigNumber | undefined;
|
18
|
-
gasPrice: BigNumber | undefined;
|
19
|
-
debug: boolean;
|
20
|
-
confirmations: number;
|
21
|
-
};
|
package/src/utils/world.ts
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
import chalk from "chalk";
|
2
|
-
|
3
|
-
import WorldData from "@latticexyz/world/out/World.sol/World.json" assert { type: "json" };
|
4
|
-
import IBaseWorldAbi from "@latticexyz/world/out/IBaseWorld.sol/IBaseWorld.abi.json" assert { type: "json" };
|
5
|
-
import { deployContract } from "./utils/deployContract";
|
6
|
-
import { getContractData } from "./utils/getContractData";
|
7
|
-
import { TxConfig } from "./utils/types";
|
8
|
-
|
9
|
-
export async function deployWorldContract(
|
10
|
-
ip: TxConfig & {
|
11
|
-
nonce: number;
|
12
|
-
worldContractName: string | undefined;
|
13
|
-
forgeOutDirectory: string;
|
14
|
-
}
|
15
|
-
): Promise<string> {
|
16
|
-
console.log(chalk.blue(`Deploying World`));
|
17
|
-
const contractData = ip.worldContractName
|
18
|
-
? {
|
19
|
-
name: "World",
|
20
|
-
...getContractData(ip.worldContractName, ip.forgeOutDirectory),
|
21
|
-
}
|
22
|
-
: { abi: IBaseWorldAbi, bytecode: WorldData.bytecode, name: "World" };
|
23
|
-
return deployContract({
|
24
|
-
...ip,
|
25
|
-
nonce: ip.nonce,
|
26
|
-
contract: contractData,
|
27
|
-
});
|
28
|
-
}
|