Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/data/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},

Expand Down
2 changes: 1 addition & 1 deletion app/src/data/package-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class PackageInfo {
return this;
}

tranfer({
transfer({
to,
selfTransfer,
}: {
Expand Down
2 changes: 1 addition & 1 deletion app/src/mutations/packageInfoMutations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function useCreatePackageInfoMutation(network: Network) {
display.textColor,
);

packageInfo.tranfer({
packageInfo.transfer({
selfTransfer: true,
});

Expand Down
2 changes: 1 addition & 1 deletion crates/mvr-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions scripts/src/init-for-testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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});
Expand Down