diff --git a/app/src/data/content.ts b/app/src/data/content.ts index 51afcec4..85814234 100644 --- a/app/src/data/content.ts +++ b/app/src/data/content.ts @@ -68,7 +68,7 @@ export const Content = { icon: "📦", title: "No active connection.", description: - "No package ID connected. This package does not have a mainnet ID connected. Add an ID so MVR resoution gets enabled.", + "No package ID connected. This package does not have a mainnet ID connected. Add an ID so MVR resolution gets enabled.", button: "Select a metadata object", }, diff --git a/app/src/data/package-info.ts b/app/src/data/package-info.ts index 5807566e..a52e2b15 100644 --- a/app/src/data/package-info.ts +++ b/app/src/data/package-info.ts @@ -106,7 +106,7 @@ export class PackageInfo { return this; } - tranfer({ + transfer({ to, selfTransfer, }: { diff --git a/app/src/mutations/packageInfoMutations.ts b/app/src/mutations/packageInfoMutations.ts index 7ac86746..26ad3803 100644 --- a/app/src/mutations/packageInfoMutations.ts +++ b/app/src/mutations/packageInfoMutations.ts @@ -36,7 +36,7 @@ export function useCreatePackageInfoMutation(network: Network) { display.textColor, ); - packageInfo.tranfer({ + packageInfo.transfer({ selfTransfer: true, }); diff --git a/crates/mvr-cli/src/lib.rs b/crates/mvr-cli/src/lib.rs index f698fd2a..1628c297 100644 --- a/crates/mvr-cli/src/lib.rs +++ b/crates/mvr-cli/src/lib.rs @@ -514,7 +514,7 @@ async fn check_single_package_consistency( Ok(()) } -/// Returns as information from the Move.toml that resovles the original published address of a +/// Returns as information from the Move.toml that resolves the original published address of a /// package, and likely internal package name based on addresses in the [addresses] section. The /// internal package name may be assigned the "0x0" address (if automated address management is /// used). Otherwise, it may be assigned the value of the known original_address_on_chain, which is diff --git a/scripts/src/init-for-testing.ts b/scripts/src/init-for-testing.ts index 788c050d..237a1fbc 100644 --- a/scripts/src/init-for-testing.ts +++ b/scripts/src/init-for-testing.ts @@ -85,9 +85,9 @@ export const setupOnLocalnet = async () => { // }); // tx.transferObjects([app, name], sender(tx)); - pkgInfo.tranfer({ selfTransfer: true }); - pkgInfo2.tranfer({ selfTransfer: true }); - pkgInfo3.tranfer({ selfTransfer: true }); + pkgInfo.transfer({ selfTransfer: true }); + pkgInfo2.transfer({ selfTransfer: true }); + pkgInfo3.transfer({ selfTransfer: true }); const res = await signAndExecute(tx, NETWORK); console.dir(res.effects?.created, {depth: null});