@latticexyz/cli 2.0.0-next.1 → 2.0.0-next.11
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/chunk-TW3YGZ4D.js +11 -0
- package/dist/chunk-TW3YGZ4D.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/mud.js +11 -7
- package/dist/mud.js.map +1 -1
- package/package.json +17 -15
- package/src/commands/deploy.ts +1 -1
- package/src/commands/dev-contracts.ts +17 -16
- package/src/commands/index.ts +2 -2
- package/src/commands/set-version.ts +19 -60
- package/src/commands/tablegen.ts +3 -2
- package/src/commands/test.ts +3 -2
- package/src/commands/trace.ts +17 -9
- package/src/commands/worldgen.ts +1 -1
- package/src/common.ts +1 -0
- package/src/index.ts +0 -1
- package/src/mud.ts +5 -2
- package/src/mudPackages.ts +24 -0
- package/src/utils/deploy.ts +189 -554
- package/src/utils/deployHandler.ts +9 -3
- package/src/utils/modules/constants.ts +23 -0
- package/src/utils/modules/getInstallModuleCallData.ts +27 -0
- package/src/utils/modules/getUserModules.ts +5 -0
- package/src/utils/modules/types.ts +14 -0
- package/src/utils/systems/getGrantAccessCallData.ts +29 -0
- package/src/utils/systems/getRegisterFunctionSelectorsCallData.ts +57 -0
- package/src/utils/systems/getRegisterSystemCallData.ts +17 -0
- package/src/utils/systems/types.ts +9 -0
- package/src/utils/systems/utils.ts +42 -0
- package/src/utils/tables/getRegisterTableCallData.ts +49 -0
- package/src/utils/tables/getTableIds.ts +18 -0
- package/src/utils/tables/types.ts +12 -0
- package/src/utils/utils/confirmNonce.ts +24 -0
- package/src/utils/utils/deployContract.ts +33 -0
- package/src/utils/utils/fastTxExecute.ts +56 -0
- package/src/utils/utils/getContractData.ts +29 -0
- package/src/utils/utils/postDeploy.ts +25 -0
- package/src/utils/utils/setInternalFeePerGas.ts +49 -0
- package/src/utils/utils/types.ts +21 -0
- package/src/utils/world.ts +28 -0
- package/dist/chunk-P7JIR52V.js +0 -32
- package/dist/chunk-P7JIR52V.js.map +0 -1
- package/src/commands/tsgen.ts +0 -34
- package/src/render-ts/index.ts +0 -5
- package/src/render-ts/recsV1TableOptions.ts +0 -57
- package/src/render-ts/renderRecsV1Tables.ts +0 -35
- package/src/render-ts/schemaTypesToRecsTypeStrings.ts +0 -202
- package/src/render-ts/tsgen.ts +0 -12
- package/src/render-ts/types.ts +0 -17
- package/src/utils/index.ts +0 -7
- package/src/utils/worldtypes.ts +0 -21
- /package/src/utils/{getChainId.ts → utils/getChainId.ts} +0 -0
@@ -7,8 +7,9 @@ import { WorldConfig } from "@latticexyz/world";
|
|
7
7
|
import { deploy } from "../utils/deploy";
|
8
8
|
import { forge, getRpcUrl, getSrcDirectory } from "@latticexyz/common/foundry";
|
9
9
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
|
10
|
-
import { getChainId } from "../utils/getChainId";
|
11
10
|
import { getExistingContracts } from "./getExistingContracts";
|
11
|
+
import { execa } from "execa";
|
12
|
+
import { getChainId } from "./utils/getChainId";
|
12
13
|
|
13
14
|
export type DeployOptions = {
|
14
15
|
configPath?: string;
|
@@ -37,10 +38,15 @@ export async function deployHandler(args: DeployOptions) {
|
|
37
38
|
)
|
38
39
|
);
|
39
40
|
|
40
|
-
if (clean)
|
41
|
+
if (clean) {
|
42
|
+
await forge(["clean"], { profile });
|
43
|
+
}
|
41
44
|
|
42
45
|
// Run forge build
|
43
|
-
if (!skipBuild)
|
46
|
+
if (!skipBuild) {
|
47
|
+
await forge(["build", "--skip", "test", "script"], { profile });
|
48
|
+
await execa("mud", ["abi-ts"], { stdio: "inherit" });
|
49
|
+
}
|
44
50
|
|
45
51
|
// Get a list of all contract names
|
46
52
|
const srcDir = args?.srcDir ?? (await getSrcDirectory());
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import KeysWithValueModuleData from "@latticexyz/world-modules/out/KeysWithValueModule.sol/KeysWithValueModule.json" assert { type: "json" };
|
2
|
+
import KeysInTableModuleData from "@latticexyz/world-modules/out/KeysInTableModule.sol/KeysInTableModule.json" assert { type: "json" };
|
3
|
+
import UniqueEntityModuleData from "@latticexyz/world-modules/out/UniqueEntityModule.sol/UniqueEntityModule.json" assert { type: "json" };
|
4
|
+
import { ContractCode } from "../utils/types";
|
5
|
+
|
6
|
+
// These modules are always deployed
|
7
|
+
export const defaultModuleContracts: ContractCode[] = [
|
8
|
+
{
|
9
|
+
name: "KeysWithValueModule",
|
10
|
+
abi: KeysWithValueModuleData.abi,
|
11
|
+
bytecode: KeysWithValueModuleData.bytecode,
|
12
|
+
},
|
13
|
+
{
|
14
|
+
name: "KeysInTableModule",
|
15
|
+
abi: KeysInTableModuleData.abi,
|
16
|
+
bytecode: KeysInTableModuleData.bytecode,
|
17
|
+
},
|
18
|
+
{
|
19
|
+
name: "UniqueEntityModule",
|
20
|
+
abi: UniqueEntityModuleData.abi,
|
21
|
+
bytecode: UniqueEntityModuleData.bytecode,
|
22
|
+
},
|
23
|
+
];
|
@@ -0,0 +1,27 @@
|
|
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
|
+
}
|
@@ -0,0 +1,29 @@
|
|
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
|
+
}
|
@@ -0,0 +1,57 @@
|
|
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
|
+
}
|
@@ -0,0 +1,17 @@
|
|
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
|
+
}
|
@@ -0,0 +1,42 @@
|
|
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
|
+
}
|
@@ -0,0 +1,49 @@
|
|
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
|
+
}
|
@@ -0,0 +1,18 @@
|
|
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
|
+
}
|
@@ -0,0 +1,12 @@
|
|
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 };
|
@@ -0,0 +1,24 @@
|
|
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
|
+
}
|
@@ -0,0 +1,33 @@
|
|
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
|
+
}
|
@@ -0,0 +1,56 @@
|
|
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
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { readFileSync } from "fs";
|
2
|
+
import path from "path";
|
3
|
+
import { Fragment } from "ethers/lib/utils.js";
|
4
|
+
import { MUDError } from "@latticexyz/common/errors";
|
5
|
+
|
6
|
+
/**
|
7
|
+
* Load the contract's abi and bytecode from the file system
|
8
|
+
* @param contractName: Name of the contract to load
|
9
|
+
*/
|
10
|
+
export function getContractData(
|
11
|
+
contractName: string,
|
12
|
+
forgeOutDirectory: string
|
13
|
+
): { bytecode: string; abi: Fragment[] } {
|
14
|
+
let data: any;
|
15
|
+
const contractDataPath = path.join(forgeOutDirectory, contractName + ".sol", contractName + ".json");
|
16
|
+
try {
|
17
|
+
data = JSON.parse(readFileSync(contractDataPath, "utf8"));
|
18
|
+
} catch (error: any) {
|
19
|
+
throw new MUDError(`Error reading file at ${contractDataPath}`);
|
20
|
+
}
|
21
|
+
|
22
|
+
const bytecode = data?.bytecode?.object;
|
23
|
+
if (!bytecode) throw new MUDError(`No bytecode found in ${contractDataPath}`);
|
24
|
+
|
25
|
+
const abi = data?.abi;
|
26
|
+
if (!abi) throw new MUDError(`No ABI found in ${contractDataPath}`);
|
27
|
+
|
28
|
+
return { abi, bytecode };
|
29
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import { existsSync } from "fs";
|
2
|
+
import path from "path";
|
3
|
+
import chalk from "chalk";
|
4
|
+
import { getScriptDirectory, forge } from "@latticexyz/common/foundry";
|
5
|
+
|
6
|
+
export async function postDeploy(
|
7
|
+
postDeployScript: string,
|
8
|
+
worldAddress: string,
|
9
|
+
rpc: string,
|
10
|
+
profile: string | undefined
|
11
|
+
): Promise<void> {
|
12
|
+
// Execute postDeploy forge script
|
13
|
+
const postDeployPath = path.join(await getScriptDirectory(), postDeployScript + ".s.sol");
|
14
|
+
if (existsSync(postDeployPath)) {
|
15
|
+
console.log(chalk.blue(`Executing post deploy script at ${postDeployPath}`));
|
16
|
+
await forge(
|
17
|
+
["script", postDeployScript, "--sig", "run(address)", worldAddress, "--broadcast", "--rpc-url", rpc, "-vvv"],
|
18
|
+
{
|
19
|
+
profile: profile,
|
20
|
+
}
|
21
|
+
);
|
22
|
+
} else {
|
23
|
+
console.log(`No script at ${postDeployPath}, skipping post deploy hook`);
|
24
|
+
}
|
25
|
+
}
|
@@ -0,0 +1,49 @@
|
|
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
|
+
}
|
@@ -0,0 +1,21 @@
|
|
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
|
+
};
|
@@ -0,0 +1,28 @@
|
|
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
|
+
}
|