@ar.io/sdk 3.24.0 → 4.0.0-solana.10
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/README.md +143 -23
- package/lib/esm/cli/cli.js +200 -40
- package/lib/esm/cli/commands/antCommands.js +40 -14
- package/lib/esm/cli/commands/arnsPurchaseCommands.js +46 -7
- package/lib/esm/cli/commands/escrowCommands.js +208 -0
- package/lib/esm/cli/commands/gatewayWriteCommands.js +132 -22
- package/lib/esm/cli/commands/pruneCommands.js +166 -0
- package/lib/esm/cli/commands/readCommands.js +10 -2
- package/lib/esm/cli/commands/transfer.js +6 -6
- package/lib/esm/cli/options.js +141 -2
- package/lib/esm/cli/utils.js +280 -39
- package/lib/esm/common/ant-registry.js +25 -3
- package/lib/esm/common/ant.js +50 -5
- package/lib/esm/common/contracts/ao-process.js +4 -6
- package/lib/esm/common/io.js +41 -0
- package/lib/esm/common/marketplace.js +24 -79
- package/lib/esm/constants.js +13 -1
- package/lib/esm/solana/ant-readable.js +387 -0
- package/lib/esm/solana/ant-registry-readable.js +118 -0
- package/lib/esm/solana/ant-registry-writeable.js +457 -0
- package/lib/esm/solana/ant-writeable.js +352 -0
- package/lib/esm/solana/ata.js +55 -0
- package/lib/esm/solana/canonical-message.js +92 -0
- package/lib/esm/solana/clusters.js +62 -0
- package/lib/esm/solana/constants.js +130 -0
- package/lib/esm/solana/delegation-math.js +63 -0
- package/lib/esm/solana/deserialize.js +1182 -0
- package/lib/esm/solana/escrow.js +797 -0
- package/lib/esm/solana/events.js +210 -0
- package/lib/esm/solana/funding-plan.js +682 -0
- package/lib/esm/solana/generated/ant/events/aclEntryAddedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/aclEntryRemovedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/antMetadataUpdatedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/antReconciledEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/antTransferredEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/attributesClearedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/attributesSyncedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/controllerAddedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/controllerRemovedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/index.js +16 -0
- package/lib/esm/solana/generated/ant/events/recordMetadataPrunedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/recordMetadataRemovedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/recordMetadataUpdatedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/recordRemovedEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/recordSetEvent.js +21 -0
- package/lib/esm/solana/generated/ant/events/recordTransferredEvent.js +21 -0
- package/lib/esm/solana/generated/ant-escrow/events/escrowCancelledEvent.js +21 -0
- package/lib/esm/solana/generated/ant-escrow/events/escrowClaimedEvent.js +21 -0
- package/lib/esm/solana/generated/ant-escrow/events/escrowDepositedEvent.js +21 -0
- package/lib/esm/solana/generated/ant-escrow/events/escrowRecipientUpdatedEvent.js +21 -0
- package/lib/esm/solana/generated/ant-escrow/events/index.js +5 -0
- package/lib/esm/solana/generated/arns/events/demandFactorUpdatedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/index.js +13 -0
- package/lib/esm/solana/generated/arns/events/leaseExtendedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/namePurchasedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/nameReassignedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/nameReleasedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/nameReservedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/nameUnreservedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/nameUpgradedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/namesPrunedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/reservedNameClaimedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/returnedNamePurchasedEvent.js +21 -0
- package/lib/esm/solana/generated/arns/events/undernameIncreasedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/configUpdatedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/coreMigrationFinalizedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/index.js +14 -0
- package/lib/esm/solana/generated/core/events/primaryNameRemovedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/primaryNameRequestExpiredEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/primaryNameRequestedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/primaryNameSetEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/supplyFinalizedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/transferEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/vaultCreatedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/vaultExtendedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/vaultIncreasedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/vaultReleasedEvent.js +21 -0
- package/lib/esm/solana/generated/core/events/vaultRevokedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/allowlistToggledEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/delegateAllowlistedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/delegationClosedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/delegationDecreasedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/delegationEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/epochClosedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/epochCreatedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/epochDistributedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/epochPrescribedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/epochWeightsTalliedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/epochsToggledEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/fundingPlanAppliedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/garMigrationFinalizedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/gatewayFinalizedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/gatewayJoinedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/gatewayLeavingEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/gatewayPrunedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/gatewaySettingsUpdatedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/index.js +31 -0
- package/lib/esm/solana/generated/gar/events/instantWithdrawalEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/observationSubmittedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/observerAddressUpdatedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/operatorStakeIncreasedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/redelegationEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/residueVaultCreatedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/rewardsCompoundedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/stakePaymentEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/withdrawalCancelledEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/withdrawalClaimedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/withdrawalCreatedEvent.js +21 -0
- package/lib/esm/solana/generated/gar/events/withdrawalPaymentEvent.js +21 -0
- package/lib/esm/solana/generated/mpl-core/accounts/assetV1.js +42 -0
- package/lib/esm/solana/generated/mpl-core/accounts/collectionV1.js +42 -0
- package/lib/esm/solana/generated/mpl-core/accounts/hashedAssetV1.js +45 -0
- package/lib/esm/solana/generated/mpl-core/accounts/index.js +12 -0
- package/lib/esm/solana/generated/mpl-core/accounts/pluginHeaderV1.js +45 -0
- package/lib/esm/solana/generated/mpl-core/accounts/pluginRegistryV1.js +42 -0
- package/lib/esm/solana/generated/mpl-core/errors/index.js +8 -0
- package/lib/esm/solana/generated/mpl-core/errors/mplCore.js +136 -0
- package/lib/esm/solana/generated/mpl-core/index.js +8 -0
- package/lib/esm/solana/generated/mpl-core/instructions/addCollectionExternalPluginAdapterV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/addCollectionPluginV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/addExternalPluginAdapterV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/addPluginV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/approveCollectionPluginAuthorityV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/approvePluginAuthorityV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/burnCollectionV1.js +49 -0
- package/lib/esm/solana/generated/mpl-core/instructions/burnV1.js +49 -0
- package/lib/esm/solana/generated/mpl-core/instructions/collect.js +42 -0
- package/lib/esm/solana/generated/mpl-core/instructions/compressV1.js +50 -0
- package/lib/esm/solana/generated/mpl-core/instructions/createCollectionV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/createCollectionV2.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/createV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/createV2.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/decompressV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/executeV1.js +56 -0
- package/lib/esm/solana/generated/mpl-core/instructions/index.js +40 -0
- package/lib/esm/solana/generated/mpl-core/instructions/removeCollectionExternalPluginAdapterV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/removeCollectionPluginV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/removeExternalPluginAdapterV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/removePluginV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/revokeCollectionPluginAuthorityV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/revokePluginAuthorityV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/transferV1.js +49 -0
- package/lib/esm/solana/generated/mpl-core/instructions/updateCollectionExternalPluginAdapterV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/updateCollectionInfoV1.js +45 -0
- package/lib/esm/solana/generated/mpl-core/instructions/updateCollectionPluginV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/updateCollectionV1.js +52 -0
- package/lib/esm/solana/generated/mpl-core/instructions/updateExternalPluginAdapterV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/updatePluginV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/updateV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/updateV2.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/writeCollectionExternalPluginAdapterDataV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/instructions/writeExternalPluginAdapterDataV1.js +53 -0
- package/lib/esm/solana/generated/mpl-core/program-address.js +1 -0
- package/lib/esm/solana/generated/mpl-core/types/addAssetsToGroupV1Args.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/addBlocker.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/addCollectionsToGroupV1Args.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/addGroupsToGroupV1Args.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/agentIdentity.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/agentIdentityInitInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/agentIdentityUpdateInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/appData.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/appDataInitInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/appDataUpdateInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/attribute.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/attributes.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/authority.js +24 -0
- package/lib/esm/solana/generated/mpl-core/types/autograph.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/autographSignature.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/bubblegumV2.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/burnDelegate.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/closeGroupV1Args.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/compressionProof.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/creator.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/dataSection.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/dataSectionInitInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/dataSectionUpdateInfo.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/dataState.js +23 -0
- package/lib/esm/solana/generated/mpl-core/types/edition.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/externalCheckResult.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/externalPluginAdapter.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/externalPluginAdapterInitInfo.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/externalPluginAdapterKey.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/externalPluginAdapterSchema.js +24 -0
- package/lib/esm/solana/generated/mpl-core/types/externalPluginAdapterType.js +28 -0
- package/lib/esm/solana/generated/mpl-core/types/externalPluginAdapterUpdateInfo.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/externalRegistryRecord.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/externalValidationResult.js +24 -0
- package/lib/esm/solana/generated/mpl-core/types/extraAccount.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/freezeDelegate.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/freezeExecute.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/groups.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/hashablePluginSchema.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/hashedAssetSchema.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/hookableLifecycleEvent.js +26 -0
- package/lib/esm/solana/generated/mpl-core/types/immutableMetadata.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/index.js +89 -0
- package/lib/esm/solana/generated/mpl-core/types/key.js +28 -0
- package/lib/esm/solana/generated/mpl-core/types/lifecycleHook.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/lifecycleHookInitInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/lifecycleHookUpdateInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/linkedAppData.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/linkedAppDataInitInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/linkedAppDataUpdateInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/linkedDataKey.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/linkedLifecycleHook.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/linkedLifecycleHookInitInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/linkedLifecycleHookUpdateInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/masterEdition.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/oracle.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/oracleInitInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/oracleUpdateInfo.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/oracleValidation.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/permanentBurnDelegate.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/permanentFreezeDelegate.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/permanentFreezeExecute.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/permanentTransferDelegate.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/plugin.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/pluginAuthorityPair.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/pluginType.js +40 -0
- package/lib/esm/solana/generated/mpl-core/types/registryRecord.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/relationshipKind.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/removeAssetsFromGroupV1Args.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/removeCollectionsFromGroupV1Args.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/removeGroupsFromGroupV1Args.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/royalties.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/ruleSet.js +24 -0
- package/lib/esm/solana/generated/mpl-core/types/seed.js +24 -0
- package/lib/esm/solana/generated/mpl-core/types/transferDelegate.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/updateAuthority.js +24 -0
- package/lib/esm/solana/generated/mpl-core/types/updateDelegate.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/updateGroupV1Args.js +17 -0
- package/lib/esm/solana/generated/mpl-core/types/updateType.js +24 -0
- package/lib/esm/solana/generated/mpl-core/types/validationResult.js +25 -0
- package/lib/esm/solana/generated/mpl-core/types/validationResultsOffset.js +24 -0
- package/lib/esm/solana/generated/mpl-core/types/verifiedCreators.js +18 -0
- package/lib/esm/solana/generated/mpl-core/types/verifiedCreatorsSignature.js +17 -0
- package/lib/esm/solana/index.js +85 -0
- package/lib/esm/solana/instruction.js +24 -0
- package/lib/esm/solana/io-readable.js +1752 -0
- package/lib/esm/solana/io-writeable.js +2215 -0
- package/lib/esm/solana/json-rpc.js +74 -0
- package/lib/esm/solana/metadata.js +66 -0
- package/lib/esm/solana/mpl-core.js +142 -0
- package/lib/esm/solana/pda.js +317 -0
- package/lib/esm/solana/send.js +117 -0
- package/lib/esm/solana/spawn-ant.js +210 -0
- package/lib/esm/solana/types.js +1 -0
- package/lib/esm/types/ant.js +19 -7
- package/lib/esm/types/io.js +8 -1
- package/lib/esm/utils/ant.js +1 -0
- package/lib/esm/utils/ao.js +1 -0
- package/lib/esm/version.js +1 -1
- package/lib/types/cli/commands/antCommands.d.ts +2 -7
- package/lib/types/cli/commands/arnsPurchaseCommands.d.ts +12 -0
- package/lib/types/cli/commands/escrowCommands.d.ts +62 -0
- package/lib/types/cli/commands/pruneCommands.d.ts +31 -0
- package/lib/types/cli/commands/readCommands.d.ts +2 -0
- package/lib/types/cli/options.d.ts +112 -0
- package/lib/types/cli/types.d.ts +6 -0
- package/lib/types/cli/utils.d.ts +43 -5
- package/lib/types/common/ant-registry.d.ts +41 -0
- package/lib/types/common/ant.d.ts +35 -2
- package/lib/types/common/contracts/ao-process.d.ts +2 -16
- package/lib/types/common/io.d.ts +42 -2
- package/lib/types/common/marketplace.d.ts +2 -14
- package/lib/types/constants.d.ts +11 -1
- package/lib/types/solana/ant-readable.d.ts +121 -0
- package/lib/types/solana/ant-registry-readable.d.ts +90 -0
- package/lib/types/solana/ant-registry-writeable.d.ts +234 -0
- package/lib/types/solana/ant-writeable.d.ts +162 -0
- package/lib/types/solana/ata.d.ts +29 -0
- package/lib/types/solana/canonical-message.d.ts +82 -0
- package/lib/types/solana/clusters.d.ts +62 -0
- package/lib/types/solana/constants.d.ts +103 -0
- package/lib/types/solana/delegation-math.d.ts +20 -0
- package/lib/types/solana/deserialize.d.ts +440 -0
- package/lib/types/solana/escrow.d.ts +403 -0
- package/lib/types/solana/events.d.ts +156 -0
- package/lib/types/solana/funding-plan.d.ts +210 -0
- package/lib/types/solana/generated/ant/events/aclEntryAddedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/aclEntryRemovedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/antMetadataUpdatedEvent.d.ts +28 -0
- package/lib/types/solana/generated/ant/events/antReconciledEvent.d.ts +28 -0
- package/lib/types/solana/generated/ant/events/antTransferredEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/attributesClearedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/attributesSyncedEvent.d.ts +24 -0
- package/lib/types/solana/generated/ant/events/controllerAddedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/controllerRemovedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/index.d.ts +15 -0
- package/lib/types/solana/generated/ant/events/recordMetadataPrunedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/recordMetadataRemovedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/recordMetadataUpdatedEvent.d.ts +28 -0
- package/lib/types/solana/generated/ant/events/recordRemovedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant/events/recordSetEvent.d.ts +34 -0
- package/lib/types/solana/generated/ant/events/recordTransferredEvent.d.ts +30 -0
- package/lib/types/solana/generated/ant-escrow/events/escrowCancelledEvent.d.ts +28 -0
- package/lib/types/solana/generated/ant-escrow/events/escrowClaimedEvent.d.ts +32 -0
- package/lib/types/solana/generated/ant-escrow/events/escrowDepositedEvent.d.ts +36 -0
- package/lib/types/solana/generated/ant-escrow/events/escrowRecipientUpdatedEvent.d.ts +26 -0
- package/lib/types/solana/generated/ant-escrow/events/index.d.ts +4 -0
- package/lib/types/solana/generated/arns/events/demandFactorUpdatedEvent.d.ts +28 -0
- package/lib/types/solana/generated/arns/events/index.d.ts +12 -0
- package/lib/types/solana/generated/arns/events/leaseExtendedEvent.d.ts +32 -0
- package/lib/types/solana/generated/arns/events/namePurchasedEvent.d.ts +34 -0
- package/lib/types/solana/generated/arns/events/nameReassignedEvent.d.ts +28 -0
- package/lib/types/solana/generated/arns/events/nameReleasedEvent.d.ts +24 -0
- package/lib/types/solana/generated/arns/events/nameReservedEvent.d.ts +28 -0
- package/lib/types/solana/generated/arns/events/nameUnreservedEvent.d.ts +24 -0
- package/lib/types/solana/generated/arns/events/nameUpgradedEvent.d.ts +28 -0
- package/lib/types/solana/generated/arns/events/namesPrunedEvent.d.ts +26 -0
- package/lib/types/solana/generated/arns/events/reservedNameClaimedEvent.d.ts +24 -0
- package/lib/types/solana/generated/arns/events/returnedNamePurchasedEvent.d.ts +32 -0
- package/lib/types/solana/generated/arns/events/undernameIncreasedEvent.d.ts +32 -0
- package/lib/types/solana/generated/core/events/configUpdatedEvent.d.ts +26 -0
- package/lib/types/solana/generated/core/events/coreMigrationFinalizedEvent.d.ts +26 -0
- package/lib/types/solana/generated/core/events/index.d.ts +13 -0
- package/lib/types/solana/generated/core/events/primaryNameRemovedEvent.d.ts +26 -0
- package/lib/types/solana/generated/core/events/primaryNameRequestExpiredEvent.d.ts +26 -0
- package/lib/types/solana/generated/core/events/primaryNameRequestedEvent.d.ts +30 -0
- package/lib/types/solana/generated/core/events/primaryNameSetEvent.d.ts +24 -0
- package/lib/types/solana/generated/core/events/supplyFinalizedEvent.d.ts +26 -0
- package/lib/types/solana/generated/core/events/transferEvent.d.ts +26 -0
- package/lib/types/solana/generated/core/events/vaultCreatedEvent.d.ts +28 -0
- package/lib/types/solana/generated/core/events/vaultExtendedEvent.d.ts +26 -0
- package/lib/types/solana/generated/core/events/vaultIncreasedEvent.d.ts +28 -0
- package/lib/types/solana/generated/core/events/vaultReleasedEvent.d.ts +26 -0
- package/lib/types/solana/generated/core/events/vaultRevokedEvent.d.ts +28 -0
- package/lib/types/solana/generated/gar/events/allowlistToggledEvent.d.ts +24 -0
- package/lib/types/solana/generated/gar/events/delegateAllowlistedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/delegationClosedEvent.d.ts +24 -0
- package/lib/types/solana/generated/gar/events/delegationDecreasedEvent.d.ts +28 -0
- package/lib/types/solana/generated/gar/events/delegationEvent.d.ts +28 -0
- package/lib/types/solana/generated/gar/events/epochClosedEvent.d.ts +24 -0
- package/lib/types/solana/generated/gar/events/epochCreatedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/epochDistributedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/epochPrescribedEvent.d.ts +28 -0
- package/lib/types/solana/generated/gar/events/epochWeightsTalliedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/epochsToggledEvent.d.ts +24 -0
- package/lib/types/solana/generated/gar/events/fundingPlanAppliedEvent.d.ts +28 -0
- package/lib/types/solana/generated/gar/events/garMigrationFinalizedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/gatewayFinalizedEvent.d.ts +24 -0
- package/lib/types/solana/generated/gar/events/gatewayJoinedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/gatewayLeavingEvent.d.ts +22 -0
- package/lib/types/solana/generated/gar/events/gatewayPrunedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/gatewaySettingsUpdatedEvent.d.ts +24 -0
- package/lib/types/solana/generated/gar/events/index.d.ts +30 -0
- package/lib/types/solana/generated/gar/events/instantWithdrawalEvent.d.ts +30 -0
- package/lib/types/solana/generated/gar/events/observationSubmittedEvent.d.ts +28 -0
- package/lib/types/solana/generated/gar/events/observerAddressUpdatedEvent.d.ts +24 -0
- package/lib/types/solana/generated/gar/events/operatorStakeIncreasedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/redelegationEvent.d.ts +30 -0
- package/lib/types/solana/generated/gar/events/residueVaultCreatedEvent.d.ts +30 -0
- package/lib/types/solana/generated/gar/events/rewardsCompoundedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/stakePaymentEvent.d.ts +28 -0
- package/lib/types/solana/generated/gar/events/withdrawalCancelledEvent.d.ts +30 -0
- package/lib/types/solana/generated/gar/events/withdrawalClaimedEvent.d.ts +26 -0
- package/lib/types/solana/generated/gar/events/withdrawalCreatedEvent.d.ts +28 -0
- package/lib/types/solana/generated/gar/events/withdrawalPaymentEvent.d.ts +28 -0
- package/lib/types/solana/generated/mpl-core/accounts/assetV1.d.ts +37 -0
- package/lib/types/solana/generated/mpl-core/accounts/collectionV1.d.ts +37 -0
- package/lib/types/solana/generated/mpl-core/accounts/hashedAssetV1.d.ts +30 -0
- package/lib/types/solana/generated/mpl-core/accounts/index.d.ts +12 -0
- package/lib/types/solana/generated/mpl-core/accounts/pluginHeaderV1.d.ts +30 -0
- package/lib/types/solana/generated/mpl-core/accounts/pluginRegistryV1.d.ts +31 -0
- package/lib/types/solana/generated/mpl-core/errors/index.d.ts +8 -0
- package/lib/types/solana/generated/mpl-core/errors/mplCore.d.ts +133 -0
- package/lib/types/solana/generated/mpl-core/index.d.ts +8 -0
- package/lib/types/solana/generated/mpl-core/instructions/addCollectionExternalPluginAdapterV1.d.ts +56 -0
- package/lib/types/solana/generated/mpl-core/instructions/addCollectionPluginV1.d.ts +59 -0
- package/lib/types/solana/generated/mpl-core/instructions/addExternalPluginAdapterV1.d.ts +60 -0
- package/lib/types/solana/generated/mpl-core/instructions/addPluginV1.d.ts +63 -0
- package/lib/types/solana/generated/mpl-core/instructions/approveCollectionPluginAuthorityV1.d.ts +59 -0
- package/lib/types/solana/generated/mpl-core/instructions/approvePluginAuthorityV1.d.ts +63 -0
- package/lib/types/solana/generated/mpl-core/instructions/burnCollectionV1.d.ts +52 -0
- package/lib/types/solana/generated/mpl-core/instructions/burnV1.d.ts +60 -0
- package/lib/types/solana/generated/mpl-core/instructions/collect.d.ts +39 -0
- package/lib/types/solana/generated/mpl-core/instructions/compressV1.d.ts +55 -0
- package/lib/types/solana/generated/mpl-core/instructions/createCollectionV1.d.ts +58 -0
- package/lib/types/solana/generated/mpl-core/instructions/createCollectionV2.d.ts +61 -0
- package/lib/types/solana/generated/mpl-core/instructions/createV1.d.ts +77 -0
- package/lib/types/solana/generated/mpl-core/instructions/createV2.d.ts +80 -0
- package/lib/types/solana/generated/mpl-core/instructions/decompressV1.d.ts +60 -0
- package/lib/types/solana/generated/mpl-core/instructions/executeV1.d.ts +63 -0
- package/lib/types/solana/generated/mpl-core/instructions/index.d.ts +40 -0
- package/lib/types/solana/generated/mpl-core/instructions/removeCollectionExternalPluginAdapterV1.d.ts +56 -0
- package/lib/types/solana/generated/mpl-core/instructions/removeCollectionPluginV1.d.ts +56 -0
- package/lib/types/solana/generated/mpl-core/instructions/removeExternalPluginAdapterV1.d.ts +60 -0
- package/lib/types/solana/generated/mpl-core/instructions/removePluginV1.d.ts +60 -0
- package/lib/types/solana/generated/mpl-core/instructions/revokeCollectionPluginAuthorityV1.d.ts +56 -0
- package/lib/types/solana/generated/mpl-core/instructions/revokePluginAuthorityV1.d.ts +60 -0
- package/lib/types/solana/generated/mpl-core/instructions/transferV1.d.ts +64 -0
- package/lib/types/solana/generated/mpl-core/instructions/updateCollectionExternalPluginAdapterV1.d.ts +59 -0
- package/lib/types/solana/generated/mpl-core/instructions/updateCollectionInfoV1.d.ts +47 -0
- package/lib/types/solana/generated/mpl-core/instructions/updateCollectionPluginV1.d.ts +56 -0
- package/lib/types/solana/generated/mpl-core/instructions/updateCollectionV1.d.ts +62 -0
- package/lib/types/solana/generated/mpl-core/instructions/updateExternalPluginAdapterV1.d.ts +63 -0
- package/lib/types/solana/generated/mpl-core/instructions/updatePluginV1.d.ts +60 -0
- package/lib/types/solana/generated/mpl-core/instructions/updateV1.d.ts +66 -0
- package/lib/types/solana/generated/mpl-core/instructions/updateV2.d.ts +70 -0
- package/lib/types/solana/generated/mpl-core/instructions/writeCollectionExternalPluginAdapterDataV1.d.ts +63 -0
- package/lib/types/solana/generated/mpl-core/instructions/writeExternalPluginAdapterDataV1.d.ts +67 -0
- package/lib/types/solana/generated/mpl-core/program-address.d.ts +7 -0
- package/lib/types/solana/generated/mpl-core/types/addAssetsToGroupV1Args.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/addBlocker.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/addCollectionsToGroupV1Args.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/addGroupsToGroupV1Args.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/agentIdentity.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/agentIdentityInitInfo.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/agentIdentityUpdateInfo.d.ts +20 -0
- package/lib/types/solana/generated/mpl-core/types/appData.d.ts +20 -0
- package/lib/types/solana/generated/mpl-core/types/appDataInitInfo.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/appDataUpdateInfo.d.ts +18 -0
- package/lib/types/solana/generated/mpl-core/types/attribute.d.ts +16 -0
- package/lib/types/solana/generated/mpl-core/types/attributes.d.ts +18 -0
- package/lib/types/solana/generated/mpl-core/types/authority.d.ts +29 -0
- package/lib/types/solana/generated/mpl-core/types/autograph.d.ts +18 -0
- package/lib/types/solana/generated/mpl-core/types/autographSignature.d.ts +16 -0
- package/lib/types/solana/generated/mpl-core/types/bubblegumV2.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/burnDelegate.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/closeGroupV1Args.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/compressionProof.d.ts +28 -0
- package/lib/types/solana/generated/mpl-core/types/creator.d.ts +16 -0
- package/lib/types/solana/generated/mpl-core/types/dataSection.d.ts +20 -0
- package/lib/types/solana/generated/mpl-core/types/dataSectionInitInfo.d.ts +20 -0
- package/lib/types/solana/generated/mpl-core/types/dataSectionUpdateInfo.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/dataState.d.ts +16 -0
- package/lib/types/solana/generated/mpl-core/types/edition.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/externalCheckResult.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/externalPluginAdapter.d.ts +66 -0
- package/lib/types/solana/generated/mpl-core/types/externalPluginAdapterInitInfo.d.ts +66 -0
- package/lib/types/solana/generated/mpl-core/types/externalPluginAdapterKey.d.ts +64 -0
- package/lib/types/solana/generated/mpl-core/types/externalPluginAdapterSchema.d.ts +17 -0
- package/lib/types/solana/generated/mpl-core/types/externalPluginAdapterType.d.ts +21 -0
- package/lib/types/solana/generated/mpl-core/types/externalPluginAdapterUpdateInfo.d.ts +59 -0
- package/lib/types/solana/generated/mpl-core/types/externalRegistryRecord.d.ts +28 -0
- package/lib/types/solana/generated/mpl-core/types/externalValidationResult.d.ts +17 -0
- package/lib/types/solana/generated/mpl-core/types/extraAccount.d.ts +86 -0
- package/lib/types/solana/generated/mpl-core/types/freezeDelegate.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/freezeExecute.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/groups.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/hashablePluginSchema.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/hashedAssetSchema.d.ts +16 -0
- package/lib/types/solana/generated/mpl-core/types/hookableLifecycleEvent.d.ts +19 -0
- package/lib/types/solana/generated/mpl-core/types/immutableMetadata.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/index.d.ts +89 -0
- package/lib/types/solana/generated/mpl-core/types/key.d.ts +21 -0
- package/lib/types/solana/generated/mpl-core/types/lifecycleHook.d.ts +24 -0
- package/lib/types/solana/generated/mpl-core/types/lifecycleHookInitInfo.d.ts +28 -0
- package/lib/types/solana/generated/mpl-core/types/lifecycleHookUpdateInfo.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/linkedAppData.d.ts +20 -0
- package/lib/types/solana/generated/mpl-core/types/linkedAppDataInitInfo.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/linkedAppDataUpdateInfo.d.ts +18 -0
- package/lib/types/solana/generated/mpl-core/types/linkedDataKey.d.ts +31 -0
- package/lib/types/solana/generated/mpl-core/types/linkedLifecycleHook.d.ts +24 -0
- package/lib/types/solana/generated/mpl-core/types/linkedLifecycleHookInitInfo.d.ts +28 -0
- package/lib/types/solana/generated/mpl-core/types/linkedLifecycleHookUpdateInfo.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/masterEdition.d.ts +21 -0
- package/lib/types/solana/generated/mpl-core/types/oracle.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/oracleInitInfo.d.ts +26 -0
- package/lib/types/solana/generated/mpl-core/types/oracleUpdateInfo.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/oracleValidation.d.ts +35 -0
- package/lib/types/solana/generated/mpl-core/types/permanentBurnDelegate.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/permanentFreezeDelegate.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/permanentFreezeExecute.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/permanentTransferDelegate.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/plugin.d.ts +150 -0
- package/lib/types/solana/generated/mpl-core/types/pluginAuthorityPair.d.ts +20 -0
- package/lib/types/solana/generated/mpl-core/types/pluginType.d.ts +33 -0
- package/lib/types/solana/generated/mpl-core/types/registryRecord.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/relationshipKind.d.ts +18 -0
- package/lib/types/solana/generated/mpl-core/types/removeAssetsFromGroupV1Args.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/removeCollectionsFromGroupV1Args.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/removeGroupsFromGroupV1Args.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/royalties.d.ts +22 -0
- package/lib/types/solana/generated/mpl-core/types/ruleSet.d.ts +27 -0
- package/lib/types/solana/generated/mpl-core/types/seed.d.ts +36 -0
- package/lib/types/solana/generated/mpl-core/types/transferDelegate.d.ts +13 -0
- package/lib/types/solana/generated/mpl-core/types/updateAuthority.d.ts +27 -0
- package/lib/types/solana/generated/mpl-core/types/updateDelegate.d.ts +15 -0
- package/lib/types/solana/generated/mpl-core/types/updateGroupV1Args.d.ts +19 -0
- package/lib/types/solana/generated/mpl-core/types/updateType.d.ts +17 -0
- package/lib/types/solana/generated/mpl-core/types/validationResult.d.ts +18 -0
- package/lib/types/solana/generated/mpl-core/types/validationResultsOffset.d.ts +33 -0
- package/lib/types/solana/generated/mpl-core/types/verifiedCreators.d.ts +18 -0
- package/lib/types/solana/generated/mpl-core/types/verifiedCreatorsSignature.d.ts +16 -0
- package/lib/types/solana/index.d.ts +63 -0
- package/lib/types/solana/instruction.d.ts +24 -0
- package/lib/types/solana/io-readable.d.ts +360 -0
- package/lib/types/solana/io-writeable.d.ts +533 -0
- package/lib/types/solana/json-rpc.d.ts +32 -0
- package/lib/types/solana/metadata.d.ts +69 -0
- package/lib/types/solana/mpl-core.d.ts +76 -0
- package/lib/types/solana/pda.d.ts +95 -0
- package/lib/types/solana/send.d.ts +16 -0
- package/lib/types/solana/spawn-ant.d.ts +130 -0
- package/lib/types/solana/types.d.ts +67 -0
- package/lib/types/types/ant-registry.d.ts +39 -0
- package/lib/types/types/ant.d.ts +22 -4
- package/lib/types/types/io.d.ts +56 -1
- package/lib/types/version.d.ts +1 -1
- package/package.json +33 -16
- package/lib/cjs/cli/cli.js +0 -822
- package/lib/cjs/cli/commands/antCommands.js +0 -113
- package/lib/cjs/cli/commands/arnsPurchaseCommands.js +0 -212
- package/lib/cjs/cli/commands/gatewayWriteCommands.js +0 -210
- package/lib/cjs/cli/commands/readCommands.js +0 -215
- package/lib/cjs/cli/commands/transfer.js +0 -159
- package/lib/cjs/cli/options.js +0 -470
- package/lib/cjs/cli/types.js +0 -2
- package/lib/cjs/cli/utils.js +0 -639
- package/lib/cjs/common/ant-registry.js +0 -155
- package/lib/cjs/common/ant-versions.js +0 -93
- package/lib/cjs/common/ant.js +0 -1182
- package/lib/cjs/common/arweave.js +0 -27
- package/lib/cjs/common/contracts/ao-process.js +0 -224
- package/lib/cjs/common/error.js +0 -64
- package/lib/cjs/common/faucet.js +0 -150
- package/lib/cjs/common/hyperbeam/hb.js +0 -173
- package/lib/cjs/common/index.js +0 -42
- package/lib/cjs/common/io.js +0 -1423
- package/lib/cjs/common/logger.js +0 -83
- package/lib/cjs/common/loggers/winston.js +0 -68
- package/lib/cjs/common/marketplace.js +0 -731
- package/lib/cjs/common/turbo.js +0 -223
- package/lib/cjs/constants.js +0 -41
- package/lib/cjs/node/index.js +0 -39
- package/lib/cjs/package.json +0 -1
- package/lib/cjs/types/ant-registry.js +0 -2
- package/lib/cjs/types/ant.js +0 -168
- package/lib/cjs/types/common.js +0 -2
- package/lib/cjs/types/faucet.js +0 -2
- package/lib/cjs/types/index.js +0 -37
- package/lib/cjs/types/io.js +0 -51
- package/lib/cjs/types/token.js +0 -116
- package/lib/cjs/utils/ant.js +0 -108
- package/lib/cjs/utils/ao.js +0 -432
- package/lib/cjs/utils/arweave.js +0 -285
- package/lib/cjs/utils/base64.js +0 -62
- package/lib/cjs/utils/hash.js +0 -56
- package/lib/cjs/utils/index.js +0 -38
- package/lib/cjs/utils/json.js +0 -26
- package/lib/cjs/utils/processes.js +0 -173
- package/lib/cjs/utils/random.js +0 -30
- package/lib/cjs/utils/schema.js +0 -15
- package/lib/cjs/utils/url.js +0 -37
- package/lib/cjs/version.js +0 -20
- package/lib/cjs/web/index.js +0 -41
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type Authority, type AuthorityArgs, type ExternalPluginAdapterSchema, type ExternalPluginAdapterSchemaArgs } from './index.js';
|
|
10
|
+
export type LinkedAppDataInitInfo = {
|
|
11
|
+
dataAuthority: Authority;
|
|
12
|
+
initPluginAuthority: Option<Authority>;
|
|
13
|
+
schema: Option<ExternalPluginAdapterSchema>;
|
|
14
|
+
};
|
|
15
|
+
export type LinkedAppDataInitInfoArgs = {
|
|
16
|
+
dataAuthority: AuthorityArgs;
|
|
17
|
+
initPluginAuthority: OptionOrNullable<AuthorityArgs>;
|
|
18
|
+
schema: OptionOrNullable<ExternalPluginAdapterSchemaArgs>;
|
|
19
|
+
};
|
|
20
|
+
export declare function getLinkedAppDataInitInfoEncoder(): Encoder<LinkedAppDataInitInfoArgs>;
|
|
21
|
+
export declare function getLinkedAppDataInitInfoDecoder(): Decoder<LinkedAppDataInitInfo>;
|
|
22
|
+
export declare function getLinkedAppDataInitInfoCodec(): Codec<LinkedAppDataInitInfoArgs, LinkedAppDataInitInfo>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type ExternalPluginAdapterSchema, type ExternalPluginAdapterSchemaArgs } from './index.js';
|
|
10
|
+
export type LinkedAppDataUpdateInfo = {
|
|
11
|
+
schema: Option<ExternalPluginAdapterSchema>;
|
|
12
|
+
};
|
|
13
|
+
export type LinkedAppDataUpdateInfoArgs = {
|
|
14
|
+
schema: OptionOrNullable<ExternalPluginAdapterSchemaArgs>;
|
|
15
|
+
};
|
|
16
|
+
export declare function getLinkedAppDataUpdateInfoEncoder(): Encoder<LinkedAppDataUpdateInfoArgs>;
|
|
17
|
+
export declare function getLinkedAppDataUpdateInfoDecoder(): Decoder<LinkedAppDataUpdateInfo>;
|
|
18
|
+
export declare function getLinkedAppDataUpdateInfoCodec(): Codec<LinkedAppDataUpdateInfoArgs, LinkedAppDataUpdateInfo>;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Address, type Codec, type Decoder, type Encoder, type GetDiscriminatedUnionVariant, type GetDiscriminatedUnionVariantContent } from '@solana/kit';
|
|
9
|
+
import { type Authority, type AuthorityArgs } from './index.js';
|
|
10
|
+
export type LinkedDataKey = {
|
|
11
|
+
__kind: "LinkedLifecycleHook";
|
|
12
|
+
fields: readonly [Address];
|
|
13
|
+
} | {
|
|
14
|
+
__kind: "LinkedAppData";
|
|
15
|
+
fields: readonly [Authority];
|
|
16
|
+
};
|
|
17
|
+
export type LinkedDataKeyArgs = {
|
|
18
|
+
__kind: "LinkedLifecycleHook";
|
|
19
|
+
fields: readonly [Address];
|
|
20
|
+
} | {
|
|
21
|
+
__kind: "LinkedAppData";
|
|
22
|
+
fields: readonly [AuthorityArgs];
|
|
23
|
+
};
|
|
24
|
+
export declare function getLinkedDataKeyEncoder(): Encoder<LinkedDataKeyArgs>;
|
|
25
|
+
export declare function getLinkedDataKeyDecoder(): Decoder<LinkedDataKey>;
|
|
26
|
+
export declare function getLinkedDataKeyCodec(): Codec<LinkedDataKeyArgs, LinkedDataKey>;
|
|
27
|
+
export declare function linkedDataKey(kind: 'LinkedLifecycleHook', data: GetDiscriminatedUnionVariantContent<LinkedDataKeyArgs, '__kind', 'LinkedLifecycleHook'>['fields']): GetDiscriminatedUnionVariant<LinkedDataKeyArgs, '__kind', 'LinkedLifecycleHook'>;
|
|
28
|
+
export declare function linkedDataKey(kind: 'LinkedAppData', data: GetDiscriminatedUnionVariantContent<LinkedDataKeyArgs, '__kind', 'LinkedAppData'>['fields']): GetDiscriminatedUnionVariant<LinkedDataKeyArgs, '__kind', 'LinkedAppData'>;
|
|
29
|
+
export declare function isLinkedDataKey<K extends LinkedDataKey['__kind']>(kind: K, value: LinkedDataKey): value is LinkedDataKey & {
|
|
30
|
+
__kind: K;
|
|
31
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Address, type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type Authority, type AuthorityArgs, type ExternalPluginAdapterSchema, type ExternalPluginAdapterSchemaArgs, type ExtraAccount, type ExtraAccountArgs } from './index.js';
|
|
10
|
+
export type LinkedLifecycleHook = {
|
|
11
|
+
hookedProgram: Address;
|
|
12
|
+
extraAccounts: Option<Array<ExtraAccount>>;
|
|
13
|
+
dataAuthority: Option<Authority>;
|
|
14
|
+
schema: ExternalPluginAdapterSchema;
|
|
15
|
+
};
|
|
16
|
+
export type LinkedLifecycleHookArgs = {
|
|
17
|
+
hookedProgram: Address;
|
|
18
|
+
extraAccounts: OptionOrNullable<Array<ExtraAccountArgs>>;
|
|
19
|
+
dataAuthority: OptionOrNullable<AuthorityArgs>;
|
|
20
|
+
schema: ExternalPluginAdapterSchemaArgs;
|
|
21
|
+
};
|
|
22
|
+
export declare function getLinkedLifecycleHookEncoder(): Encoder<LinkedLifecycleHookArgs>;
|
|
23
|
+
export declare function getLinkedLifecycleHookDecoder(): Decoder<LinkedLifecycleHook>;
|
|
24
|
+
export declare function getLinkedLifecycleHookCodec(): Codec<LinkedLifecycleHookArgs, LinkedLifecycleHook>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Address, type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type Authority, type AuthorityArgs, type ExternalCheckResult, type ExternalCheckResultArgs, type ExternalPluginAdapterSchema, type ExternalPluginAdapterSchemaArgs, type ExtraAccount, type ExtraAccountArgs, type HookableLifecycleEvent, type HookableLifecycleEventArgs } from './index.js';
|
|
10
|
+
export type LinkedLifecycleHookInitInfo = {
|
|
11
|
+
hookedProgram: Address;
|
|
12
|
+
initPluginAuthority: Option<Authority>;
|
|
13
|
+
lifecycleChecks: Array<readonly [HookableLifecycleEvent, ExternalCheckResult]>;
|
|
14
|
+
extraAccounts: Option<Array<ExtraAccount>>;
|
|
15
|
+
dataAuthority: Option<Authority>;
|
|
16
|
+
schema: Option<ExternalPluginAdapterSchema>;
|
|
17
|
+
};
|
|
18
|
+
export type LinkedLifecycleHookInitInfoArgs = {
|
|
19
|
+
hookedProgram: Address;
|
|
20
|
+
initPluginAuthority: OptionOrNullable<AuthorityArgs>;
|
|
21
|
+
lifecycleChecks: Array<readonly [HookableLifecycleEventArgs, ExternalCheckResultArgs]>;
|
|
22
|
+
extraAccounts: OptionOrNullable<Array<ExtraAccountArgs>>;
|
|
23
|
+
dataAuthority: OptionOrNullable<AuthorityArgs>;
|
|
24
|
+
schema: OptionOrNullable<ExternalPluginAdapterSchemaArgs>;
|
|
25
|
+
};
|
|
26
|
+
export declare function getLinkedLifecycleHookInitInfoEncoder(): Encoder<LinkedLifecycleHookInitInfoArgs>;
|
|
27
|
+
export declare function getLinkedLifecycleHookInitInfoDecoder(): Decoder<LinkedLifecycleHookInitInfo>;
|
|
28
|
+
export declare function getLinkedLifecycleHookInitInfoCodec(): Codec<LinkedLifecycleHookInitInfoArgs, LinkedLifecycleHookInitInfo>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type ExternalCheckResult, type ExternalCheckResultArgs, type ExternalPluginAdapterSchema, type ExternalPluginAdapterSchemaArgs, type ExtraAccount, type ExtraAccountArgs, type HookableLifecycleEvent, type HookableLifecycleEventArgs } from './index.js';
|
|
10
|
+
export type LinkedLifecycleHookUpdateInfo = {
|
|
11
|
+
lifecycleChecks: Option<Array<readonly [HookableLifecycleEvent, ExternalCheckResult]>>;
|
|
12
|
+
extraAccounts: Option<Array<ExtraAccount>>;
|
|
13
|
+
schema: Option<ExternalPluginAdapterSchema>;
|
|
14
|
+
};
|
|
15
|
+
export type LinkedLifecycleHookUpdateInfoArgs = {
|
|
16
|
+
lifecycleChecks: OptionOrNullable<Array<readonly [HookableLifecycleEventArgs, ExternalCheckResultArgs]>>;
|
|
17
|
+
extraAccounts: OptionOrNullable<Array<ExtraAccountArgs>>;
|
|
18
|
+
schema: OptionOrNullable<ExternalPluginAdapterSchemaArgs>;
|
|
19
|
+
};
|
|
20
|
+
export declare function getLinkedLifecycleHookUpdateInfoEncoder(): Encoder<LinkedLifecycleHookUpdateInfoArgs>;
|
|
21
|
+
export declare function getLinkedLifecycleHookUpdateInfoDecoder(): Decoder<LinkedLifecycleHookUpdateInfo>;
|
|
22
|
+
export declare function getLinkedLifecycleHookUpdateInfoCodec(): Codec<LinkedLifecycleHookUpdateInfoArgs, LinkedLifecycleHookUpdateInfo>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
export type MasterEdition = {
|
|
10
|
+
maxSupply: Option<number>;
|
|
11
|
+
name: Option<string>;
|
|
12
|
+
uri: Option<string>;
|
|
13
|
+
};
|
|
14
|
+
export type MasterEditionArgs = {
|
|
15
|
+
maxSupply: OptionOrNullable<number>;
|
|
16
|
+
name: OptionOrNullable<string>;
|
|
17
|
+
uri: OptionOrNullable<string>;
|
|
18
|
+
};
|
|
19
|
+
export declare function getMasterEditionEncoder(): Encoder<MasterEditionArgs>;
|
|
20
|
+
export declare function getMasterEditionDecoder(): Decoder<MasterEdition>;
|
|
21
|
+
export declare function getMasterEditionCodec(): Codec<MasterEditionArgs, MasterEdition>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Address, type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type ExtraAccount, type ExtraAccountArgs, type ValidationResultsOffset, type ValidationResultsOffsetArgs } from './index.js';
|
|
10
|
+
export type Oracle = {
|
|
11
|
+
baseAddress: Address;
|
|
12
|
+
baseAddressConfig: Option<ExtraAccount>;
|
|
13
|
+
resultsOffset: ValidationResultsOffset;
|
|
14
|
+
};
|
|
15
|
+
export type OracleArgs = {
|
|
16
|
+
baseAddress: Address;
|
|
17
|
+
baseAddressConfig: OptionOrNullable<ExtraAccountArgs>;
|
|
18
|
+
resultsOffset: ValidationResultsOffsetArgs;
|
|
19
|
+
};
|
|
20
|
+
export declare function getOracleEncoder(): Encoder<OracleArgs>;
|
|
21
|
+
export declare function getOracleDecoder(): Decoder<Oracle>;
|
|
22
|
+
export declare function getOracleCodec(): Codec<OracleArgs, Oracle>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Address, type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type Authority, type AuthorityArgs, type ExternalCheckResult, type ExternalCheckResultArgs, type ExtraAccount, type ExtraAccountArgs, type HookableLifecycleEvent, type HookableLifecycleEventArgs, type ValidationResultsOffset, type ValidationResultsOffsetArgs } from './index.js';
|
|
10
|
+
export type OracleInitInfo = {
|
|
11
|
+
baseAddress: Address;
|
|
12
|
+
initPluginAuthority: Option<Authority>;
|
|
13
|
+
lifecycleChecks: Array<readonly [HookableLifecycleEvent, ExternalCheckResult]>;
|
|
14
|
+
baseAddressConfig: Option<ExtraAccount>;
|
|
15
|
+
resultsOffset: Option<ValidationResultsOffset>;
|
|
16
|
+
};
|
|
17
|
+
export type OracleInitInfoArgs = {
|
|
18
|
+
baseAddress: Address;
|
|
19
|
+
initPluginAuthority: OptionOrNullable<AuthorityArgs>;
|
|
20
|
+
lifecycleChecks: Array<readonly [HookableLifecycleEventArgs, ExternalCheckResultArgs]>;
|
|
21
|
+
baseAddressConfig: OptionOrNullable<ExtraAccountArgs>;
|
|
22
|
+
resultsOffset: OptionOrNullable<ValidationResultsOffsetArgs>;
|
|
23
|
+
};
|
|
24
|
+
export declare function getOracleInitInfoEncoder(): Encoder<OracleInitInfoArgs>;
|
|
25
|
+
export declare function getOracleInitInfoDecoder(): Decoder<OracleInitInfo>;
|
|
26
|
+
export declare function getOracleInitInfoCodec(): Codec<OracleInitInfoArgs, OracleInitInfo>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type ExternalCheckResult, type ExternalCheckResultArgs, type ExtraAccount, type ExtraAccountArgs, type HookableLifecycleEvent, type HookableLifecycleEventArgs, type ValidationResultsOffset, type ValidationResultsOffsetArgs } from './index.js';
|
|
10
|
+
export type OracleUpdateInfo = {
|
|
11
|
+
lifecycleChecks: Option<Array<readonly [HookableLifecycleEvent, ExternalCheckResult]>>;
|
|
12
|
+
baseAddressConfig: Option<ExtraAccount>;
|
|
13
|
+
resultsOffset: Option<ValidationResultsOffset>;
|
|
14
|
+
};
|
|
15
|
+
export type OracleUpdateInfoArgs = {
|
|
16
|
+
lifecycleChecks: OptionOrNullable<Array<readonly [HookableLifecycleEventArgs, ExternalCheckResultArgs]>>;
|
|
17
|
+
baseAddressConfig: OptionOrNullable<ExtraAccountArgs>;
|
|
18
|
+
resultsOffset: OptionOrNullable<ValidationResultsOffsetArgs>;
|
|
19
|
+
};
|
|
20
|
+
export declare function getOracleUpdateInfoEncoder(): Encoder<OracleUpdateInfoArgs>;
|
|
21
|
+
export declare function getOracleUpdateInfoDecoder(): Decoder<OracleUpdateInfo>;
|
|
22
|
+
export declare function getOracleUpdateInfoCodec(): Codec<OracleUpdateInfoArgs, OracleUpdateInfo>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder, type GetDiscriminatedUnionVariant, type GetDiscriminatedUnionVariantContent } from '@solana/kit';
|
|
9
|
+
import { type ExternalValidationResult, type ExternalValidationResultArgs } from './index.js';
|
|
10
|
+
export type OracleValidation = {
|
|
11
|
+
__kind: "Uninitialized";
|
|
12
|
+
} | {
|
|
13
|
+
__kind: "V1";
|
|
14
|
+
create: ExternalValidationResult;
|
|
15
|
+
transfer: ExternalValidationResult;
|
|
16
|
+
burn: ExternalValidationResult;
|
|
17
|
+
update: ExternalValidationResult;
|
|
18
|
+
};
|
|
19
|
+
export type OracleValidationArgs = {
|
|
20
|
+
__kind: "Uninitialized";
|
|
21
|
+
} | {
|
|
22
|
+
__kind: "V1";
|
|
23
|
+
create: ExternalValidationResultArgs;
|
|
24
|
+
transfer: ExternalValidationResultArgs;
|
|
25
|
+
burn: ExternalValidationResultArgs;
|
|
26
|
+
update: ExternalValidationResultArgs;
|
|
27
|
+
};
|
|
28
|
+
export declare function getOracleValidationEncoder(): Encoder<OracleValidationArgs>;
|
|
29
|
+
export declare function getOracleValidationDecoder(): Decoder<OracleValidation>;
|
|
30
|
+
export declare function getOracleValidationCodec(): Codec<OracleValidationArgs, OracleValidation>;
|
|
31
|
+
export declare function oracleValidation(kind: 'Uninitialized'): GetDiscriminatedUnionVariant<OracleValidationArgs, '__kind', 'Uninitialized'>;
|
|
32
|
+
export declare function oracleValidation(kind: 'V1', data: GetDiscriminatedUnionVariantContent<OracleValidationArgs, '__kind', 'V1'>): GetDiscriminatedUnionVariant<OracleValidationArgs, '__kind', 'V1'>;
|
|
33
|
+
export declare function isOracleValidation<K extends OracleValidation['__kind']>(kind: K, value: OracleValidation): value is OracleValidation & {
|
|
34
|
+
__kind: K;
|
|
35
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit';
|
|
9
|
+
export type PermanentBurnDelegate = {};
|
|
10
|
+
export type PermanentBurnDelegateArgs = PermanentBurnDelegate;
|
|
11
|
+
export declare function getPermanentBurnDelegateEncoder(): FixedSizeEncoder<PermanentBurnDelegateArgs>;
|
|
12
|
+
export declare function getPermanentBurnDelegateDecoder(): FixedSizeDecoder<PermanentBurnDelegate>;
|
|
13
|
+
export declare function getPermanentBurnDelegateCodec(): FixedSizeCodec<PermanentBurnDelegateArgs, PermanentBurnDelegate>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit';
|
|
9
|
+
export type PermanentFreezeDelegate = {
|
|
10
|
+
frozen: boolean;
|
|
11
|
+
};
|
|
12
|
+
export type PermanentFreezeDelegateArgs = PermanentFreezeDelegate;
|
|
13
|
+
export declare function getPermanentFreezeDelegateEncoder(): FixedSizeEncoder<PermanentFreezeDelegateArgs>;
|
|
14
|
+
export declare function getPermanentFreezeDelegateDecoder(): FixedSizeDecoder<PermanentFreezeDelegate>;
|
|
15
|
+
export declare function getPermanentFreezeDelegateCodec(): FixedSizeCodec<PermanentFreezeDelegateArgs, PermanentFreezeDelegate>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit';
|
|
9
|
+
export type PermanentFreezeExecute = {
|
|
10
|
+
frozen: boolean;
|
|
11
|
+
};
|
|
12
|
+
export type PermanentFreezeExecuteArgs = PermanentFreezeExecute;
|
|
13
|
+
export declare function getPermanentFreezeExecuteEncoder(): FixedSizeEncoder<PermanentFreezeExecuteArgs>;
|
|
14
|
+
export declare function getPermanentFreezeExecuteDecoder(): FixedSizeDecoder<PermanentFreezeExecute>;
|
|
15
|
+
export declare function getPermanentFreezeExecuteCodec(): FixedSizeCodec<PermanentFreezeExecuteArgs, PermanentFreezeExecute>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit';
|
|
9
|
+
export type PermanentTransferDelegate = {};
|
|
10
|
+
export type PermanentTransferDelegateArgs = PermanentTransferDelegate;
|
|
11
|
+
export declare function getPermanentTransferDelegateEncoder(): FixedSizeEncoder<PermanentTransferDelegateArgs>;
|
|
12
|
+
export declare function getPermanentTransferDelegateDecoder(): FixedSizeDecoder<PermanentTransferDelegate>;
|
|
13
|
+
export declare function getPermanentTransferDelegateCodec(): FixedSizeCodec<PermanentTransferDelegateArgs, PermanentTransferDelegate>;
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder, type GetDiscriminatedUnionVariant, type GetDiscriminatedUnionVariantContent } from '@solana/kit';
|
|
9
|
+
import { type AddBlocker, type AddBlockerArgs, type Attributes, type AttributesArgs, type Autograph, type AutographArgs, type BubblegumV2, type BubblegumV2Args, type BurnDelegate, type BurnDelegateArgs, type Edition, type EditionArgs, type FreezeDelegate, type FreezeDelegateArgs, type FreezeExecute, type FreezeExecuteArgs, type Groups, type GroupsArgs, type ImmutableMetadata, type ImmutableMetadataArgs, type MasterEdition, type MasterEditionArgs, type PermanentBurnDelegate, type PermanentBurnDelegateArgs, type PermanentFreezeDelegate, type PermanentFreezeDelegateArgs, type PermanentFreezeExecute, type PermanentFreezeExecuteArgs, type PermanentTransferDelegate, type PermanentTransferDelegateArgs, type Royalties, type RoyaltiesArgs, type TransferDelegate, type TransferDelegateArgs, type UpdateDelegate, type UpdateDelegateArgs, type VerifiedCreators, type VerifiedCreatorsArgs } from './index.js';
|
|
10
|
+
export type Plugin = {
|
|
11
|
+
__kind: "Royalties";
|
|
12
|
+
fields: readonly [Royalties];
|
|
13
|
+
} | {
|
|
14
|
+
__kind: "FreezeDelegate";
|
|
15
|
+
fields: readonly [FreezeDelegate];
|
|
16
|
+
} | {
|
|
17
|
+
__kind: "BurnDelegate";
|
|
18
|
+
fields: readonly [BurnDelegate];
|
|
19
|
+
} | {
|
|
20
|
+
__kind: "TransferDelegate";
|
|
21
|
+
fields: readonly [TransferDelegate];
|
|
22
|
+
} | {
|
|
23
|
+
__kind: "UpdateDelegate";
|
|
24
|
+
fields: readonly [UpdateDelegate];
|
|
25
|
+
} | {
|
|
26
|
+
__kind: "PermanentFreezeDelegate";
|
|
27
|
+
fields: readonly [PermanentFreezeDelegate];
|
|
28
|
+
} | {
|
|
29
|
+
__kind: "Attributes";
|
|
30
|
+
fields: readonly [Attributes];
|
|
31
|
+
} | {
|
|
32
|
+
__kind: "PermanentTransferDelegate";
|
|
33
|
+
fields: readonly [PermanentTransferDelegate];
|
|
34
|
+
} | {
|
|
35
|
+
__kind: "PermanentBurnDelegate";
|
|
36
|
+
fields: readonly [PermanentBurnDelegate];
|
|
37
|
+
} | {
|
|
38
|
+
__kind: "Edition";
|
|
39
|
+
fields: readonly [Edition];
|
|
40
|
+
} | {
|
|
41
|
+
__kind: "MasterEdition";
|
|
42
|
+
fields: readonly [MasterEdition];
|
|
43
|
+
} | {
|
|
44
|
+
__kind: "AddBlocker";
|
|
45
|
+
fields: readonly [AddBlocker];
|
|
46
|
+
} | {
|
|
47
|
+
__kind: "ImmutableMetadata";
|
|
48
|
+
fields: readonly [ImmutableMetadata];
|
|
49
|
+
} | {
|
|
50
|
+
__kind: "VerifiedCreators";
|
|
51
|
+
fields: readonly [VerifiedCreators];
|
|
52
|
+
} | {
|
|
53
|
+
__kind: "Autograph";
|
|
54
|
+
fields: readonly [Autograph];
|
|
55
|
+
} | {
|
|
56
|
+
__kind: "BubblegumV2";
|
|
57
|
+
fields: readonly [BubblegumV2];
|
|
58
|
+
} | {
|
|
59
|
+
__kind: "FreezeExecute";
|
|
60
|
+
fields: readonly [FreezeExecute];
|
|
61
|
+
} | {
|
|
62
|
+
__kind: "PermanentFreezeExecute";
|
|
63
|
+
fields: readonly [PermanentFreezeExecute];
|
|
64
|
+
} | {
|
|
65
|
+
__kind: "Groups";
|
|
66
|
+
fields: readonly [Groups];
|
|
67
|
+
};
|
|
68
|
+
export type PluginArgs = {
|
|
69
|
+
__kind: "Royalties";
|
|
70
|
+
fields: readonly [RoyaltiesArgs];
|
|
71
|
+
} | {
|
|
72
|
+
__kind: "FreezeDelegate";
|
|
73
|
+
fields: readonly [FreezeDelegateArgs];
|
|
74
|
+
} | {
|
|
75
|
+
__kind: "BurnDelegate";
|
|
76
|
+
fields: readonly [BurnDelegateArgs];
|
|
77
|
+
} | {
|
|
78
|
+
__kind: "TransferDelegate";
|
|
79
|
+
fields: readonly [TransferDelegateArgs];
|
|
80
|
+
} | {
|
|
81
|
+
__kind: "UpdateDelegate";
|
|
82
|
+
fields: readonly [UpdateDelegateArgs];
|
|
83
|
+
} | {
|
|
84
|
+
__kind: "PermanentFreezeDelegate";
|
|
85
|
+
fields: readonly [PermanentFreezeDelegateArgs];
|
|
86
|
+
} | {
|
|
87
|
+
__kind: "Attributes";
|
|
88
|
+
fields: readonly [AttributesArgs];
|
|
89
|
+
} | {
|
|
90
|
+
__kind: "PermanentTransferDelegate";
|
|
91
|
+
fields: readonly [PermanentTransferDelegateArgs];
|
|
92
|
+
} | {
|
|
93
|
+
__kind: "PermanentBurnDelegate";
|
|
94
|
+
fields: readonly [PermanentBurnDelegateArgs];
|
|
95
|
+
} | {
|
|
96
|
+
__kind: "Edition";
|
|
97
|
+
fields: readonly [EditionArgs];
|
|
98
|
+
} | {
|
|
99
|
+
__kind: "MasterEdition";
|
|
100
|
+
fields: readonly [MasterEditionArgs];
|
|
101
|
+
} | {
|
|
102
|
+
__kind: "AddBlocker";
|
|
103
|
+
fields: readonly [AddBlockerArgs];
|
|
104
|
+
} | {
|
|
105
|
+
__kind: "ImmutableMetadata";
|
|
106
|
+
fields: readonly [ImmutableMetadataArgs];
|
|
107
|
+
} | {
|
|
108
|
+
__kind: "VerifiedCreators";
|
|
109
|
+
fields: readonly [VerifiedCreatorsArgs];
|
|
110
|
+
} | {
|
|
111
|
+
__kind: "Autograph";
|
|
112
|
+
fields: readonly [AutographArgs];
|
|
113
|
+
} | {
|
|
114
|
+
__kind: "BubblegumV2";
|
|
115
|
+
fields: readonly [BubblegumV2Args];
|
|
116
|
+
} | {
|
|
117
|
+
__kind: "FreezeExecute";
|
|
118
|
+
fields: readonly [FreezeExecuteArgs];
|
|
119
|
+
} | {
|
|
120
|
+
__kind: "PermanentFreezeExecute";
|
|
121
|
+
fields: readonly [PermanentFreezeExecuteArgs];
|
|
122
|
+
} | {
|
|
123
|
+
__kind: "Groups";
|
|
124
|
+
fields: readonly [GroupsArgs];
|
|
125
|
+
};
|
|
126
|
+
export declare function getPluginEncoder(): Encoder<PluginArgs>;
|
|
127
|
+
export declare function getPluginDecoder(): Decoder<Plugin>;
|
|
128
|
+
export declare function getPluginCodec(): Codec<PluginArgs, Plugin>;
|
|
129
|
+
export declare function plugin(kind: 'Royalties', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'Royalties'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'Royalties'>;
|
|
130
|
+
export declare function plugin(kind: 'FreezeDelegate', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'FreezeDelegate'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'FreezeDelegate'>;
|
|
131
|
+
export declare function plugin(kind: 'BurnDelegate', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'BurnDelegate'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'BurnDelegate'>;
|
|
132
|
+
export declare function plugin(kind: 'TransferDelegate', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'TransferDelegate'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'TransferDelegate'>;
|
|
133
|
+
export declare function plugin(kind: 'UpdateDelegate', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'UpdateDelegate'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'UpdateDelegate'>;
|
|
134
|
+
export declare function plugin(kind: 'PermanentFreezeDelegate', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'PermanentFreezeDelegate'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'PermanentFreezeDelegate'>;
|
|
135
|
+
export declare function plugin(kind: 'Attributes', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'Attributes'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'Attributes'>;
|
|
136
|
+
export declare function plugin(kind: 'PermanentTransferDelegate', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'PermanentTransferDelegate'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'PermanentTransferDelegate'>;
|
|
137
|
+
export declare function plugin(kind: 'PermanentBurnDelegate', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'PermanentBurnDelegate'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'PermanentBurnDelegate'>;
|
|
138
|
+
export declare function plugin(kind: 'Edition', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'Edition'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'Edition'>;
|
|
139
|
+
export declare function plugin(kind: 'MasterEdition', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'MasterEdition'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'MasterEdition'>;
|
|
140
|
+
export declare function plugin(kind: 'AddBlocker', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'AddBlocker'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'AddBlocker'>;
|
|
141
|
+
export declare function plugin(kind: 'ImmutableMetadata', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'ImmutableMetadata'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'ImmutableMetadata'>;
|
|
142
|
+
export declare function plugin(kind: 'VerifiedCreators', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'VerifiedCreators'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'VerifiedCreators'>;
|
|
143
|
+
export declare function plugin(kind: 'Autograph', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'Autograph'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'Autograph'>;
|
|
144
|
+
export declare function plugin(kind: 'BubblegumV2', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'BubblegumV2'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'BubblegumV2'>;
|
|
145
|
+
export declare function plugin(kind: 'FreezeExecute', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'FreezeExecute'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'FreezeExecute'>;
|
|
146
|
+
export declare function plugin(kind: 'PermanentFreezeExecute', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'PermanentFreezeExecute'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'PermanentFreezeExecute'>;
|
|
147
|
+
export declare function plugin(kind: 'Groups', data: GetDiscriminatedUnionVariantContent<PluginArgs, '__kind', 'Groups'>['fields']): GetDiscriminatedUnionVariant<PluginArgs, '__kind', 'Groups'>;
|
|
148
|
+
export declare function isPlugin<K extends Plugin['__kind']>(kind: K, value: Plugin): value is Plugin & {
|
|
149
|
+
__kind: K;
|
|
150
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder, type Option, type OptionOrNullable } from '@solana/kit';
|
|
9
|
+
import { type Authority, type AuthorityArgs, type Plugin, type PluginArgs } from './index.js';
|
|
10
|
+
export type PluginAuthorityPair = {
|
|
11
|
+
plugin: Plugin;
|
|
12
|
+
authority: Option<Authority>;
|
|
13
|
+
};
|
|
14
|
+
export type PluginAuthorityPairArgs = {
|
|
15
|
+
plugin: PluginArgs;
|
|
16
|
+
authority: OptionOrNullable<AuthorityArgs>;
|
|
17
|
+
};
|
|
18
|
+
export declare function getPluginAuthorityPairEncoder(): Encoder<PluginAuthorityPairArgs>;
|
|
19
|
+
export declare function getPluginAuthorityPairDecoder(): Decoder<PluginAuthorityPair>;
|
|
20
|
+
export declare function getPluginAuthorityPairCodec(): Codec<PluginAuthorityPairArgs, PluginAuthorityPair>;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit';
|
|
9
|
+
export declare enum PluginType {
|
|
10
|
+
Royalties = 0,
|
|
11
|
+
FreezeDelegate = 1,
|
|
12
|
+
BurnDelegate = 2,
|
|
13
|
+
TransferDelegate = 3,
|
|
14
|
+
UpdateDelegate = 4,
|
|
15
|
+
PermanentFreezeDelegate = 5,
|
|
16
|
+
Attributes = 6,
|
|
17
|
+
PermanentTransferDelegate = 7,
|
|
18
|
+
PermanentBurnDelegate = 8,
|
|
19
|
+
Edition = 9,
|
|
20
|
+
MasterEdition = 10,
|
|
21
|
+
AddBlocker = 11,
|
|
22
|
+
ImmutableMetadata = 12,
|
|
23
|
+
VerifiedCreators = 13,
|
|
24
|
+
Autograph = 14,
|
|
25
|
+
BubblegumV2 = 15,
|
|
26
|
+
FreezeExecute = 16,
|
|
27
|
+
PermanentFreezeExecute = 17,
|
|
28
|
+
Groups = 18
|
|
29
|
+
}
|
|
30
|
+
export type PluginTypeArgs = PluginType;
|
|
31
|
+
export declare function getPluginTypeEncoder(): FixedSizeEncoder<PluginTypeArgs>;
|
|
32
|
+
export declare function getPluginTypeDecoder(): FixedSizeDecoder<PluginType>;
|
|
33
|
+
export declare function getPluginTypeCodec(): FixedSizeCodec<PluginTypeArgs, PluginType>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Codec, type Decoder, type Encoder } from '@solana/kit';
|
|
9
|
+
import { type Authority, type AuthorityArgs, type PluginType, type PluginTypeArgs } from './index.js';
|
|
10
|
+
export type RegistryRecord = {
|
|
11
|
+
pluginType: PluginType;
|
|
12
|
+
authority: Authority;
|
|
13
|
+
offset: bigint;
|
|
14
|
+
};
|
|
15
|
+
export type RegistryRecordArgs = {
|
|
16
|
+
pluginType: PluginTypeArgs;
|
|
17
|
+
authority: AuthorityArgs;
|
|
18
|
+
offset: number | bigint;
|
|
19
|
+
};
|
|
20
|
+
export declare function getRegistryRecordEncoder(): Encoder<RegistryRecordArgs>;
|
|
21
|
+
export declare function getRegistryRecordDecoder(): Decoder<RegistryRecord>;
|
|
22
|
+
export declare function getRegistryRecordCodec(): Codec<RegistryRecordArgs, RegistryRecord>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit';
|
|
9
|
+
export declare enum RelationshipKind {
|
|
10
|
+
Collection = 0,
|
|
11
|
+
ChildGroup = 1,
|
|
12
|
+
ParentGroup = 2,
|
|
13
|
+
Asset = 3
|
|
14
|
+
}
|
|
15
|
+
export type RelationshipKindArgs = RelationshipKind;
|
|
16
|
+
export declare function getRelationshipKindEncoder(): FixedSizeEncoder<RelationshipKindArgs>;
|
|
17
|
+
export declare function getRelationshipKindDecoder(): FixedSizeDecoder<RelationshipKind>;
|
|
18
|
+
export declare function getRelationshipKindCodec(): FixedSizeCodec<RelationshipKindArgs, RelationshipKind>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Address, type Codec, type Decoder, type Encoder } from '@solana/kit';
|
|
9
|
+
export type RemoveAssetsFromGroupV1Args = {
|
|
10
|
+
assets: Array<Address>;
|
|
11
|
+
};
|
|
12
|
+
export type RemoveAssetsFromGroupV1ArgsArgs = RemoveAssetsFromGroupV1Args;
|
|
13
|
+
export declare function getRemoveAssetsFromGroupV1ArgsEncoder(): Encoder<RemoveAssetsFromGroupV1ArgsArgs>;
|
|
14
|
+
export declare function getRemoveAssetsFromGroupV1ArgsDecoder(): Decoder<RemoveAssetsFromGroupV1Args>;
|
|
15
|
+
export declare function getRemoveAssetsFromGroupV1ArgsCodec(): Codec<RemoveAssetsFromGroupV1ArgsArgs, RemoveAssetsFromGroupV1Args>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was AUTOGENERATED using the Codama library.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4
|
+
* to add features, then rerun Codama to update it.
|
|
5
|
+
*
|
|
6
|
+
* @see https://github.com/codama-idl/codama
|
|
7
|
+
*/
|
|
8
|
+
import { type Address, type Codec, type Decoder, type Encoder } from '@solana/kit';
|
|
9
|
+
export type RemoveCollectionsFromGroupV1Args = {
|
|
10
|
+
collections: Array<Address>;
|
|
11
|
+
};
|
|
12
|
+
export type RemoveCollectionsFromGroupV1ArgsArgs = RemoveCollectionsFromGroupV1Args;
|
|
13
|
+
export declare function getRemoveCollectionsFromGroupV1ArgsEncoder(): Encoder<RemoveCollectionsFromGroupV1ArgsArgs>;
|
|
14
|
+
export declare function getRemoveCollectionsFromGroupV1ArgsDecoder(): Decoder<RemoveCollectionsFromGroupV1Args>;
|
|
15
|
+
export declare function getRemoveCollectionsFromGroupV1ArgsCodec(): Codec<RemoveCollectionsFromGroupV1ArgsArgs, RemoveCollectionsFromGroupV1Args>;
|