Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export async function onboardMobileHotspot({
payer?: PublicKey;
dcFeePayer?: PublicKey;
assetId: PublicKey;
assetEndpoint?: string;
location?: BN;
rewardableEntityConfig: PublicKey;
deploymentInfo?: MobileDeploymentInfoV0 | null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export async function updateIotMetadata({
dcFeePayer?: PublicKey;
location: BN | null;
elevation: number | null;
assetEndpoint?: string;
gain: number | null;
assetId: PublicKey;
rewardableEntityConfig: PublicKey;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export async function updateMobileMetadata({
payer?: PublicKey;
dcFeePayer?: PublicKey;
location: BN | null;
assetEndpoint?: string;
assetId: PublicKey;
rewardableEntityConfig: PublicKey;
deploymentInfo?: MobileDeploymentInfoV0 | null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export async function initializeCompressionRecipient({
} = await proofArgsAndAccounts({
connection: program.provider.connection,
assetId,
assetEndpoint,
...rest,
});
const recipient = recipientKey(lazyDistributor, assetId)[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export async function claimWelcomePack({
} = await proofArgsAndAccounts({
connection: program.provider.connection,
assetId,
assetEndpoint,
...rest,
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export async function closeWelcomePack({
accounts,
remainingAccounts,
} = await proofArgsAndAccounts({
assetEndpoint,
connection: program.provider.connection,
assetId,
...rest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export async function initializeWelcomePack({
} = await proofArgsAndAccounts({
connection: program.provider.connection,
assetId,
assetEndpoint,
...rest,
});

Expand Down
Loading