/** * This file was automatically generated by @cosmwasm/ts-codegen@0.30.1. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run the @cosmwasm/ts-codegen generate command to regenerate this file. */ import { Coin } from "@cosmjs/amino"; import { MsgExecuteContractEncodeObject } from "@cosmjs/cosmwasm-stargate"; import { Decimal } from "./RoyaltyRegistry.types"; export interface RoyaltyRegistryMessage { contractAddress: string; sender: string; initializeCollectionRoyalty: ({ collection }: { collection: string; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; setCollectionRoyaltyDefault: ({ collection, recipient, share }: { collection: string; recipient: string; share: Decimal; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; updateCollectionRoyaltyDefault: ({ collection, decrement, recipient, shareDelta }: { collection: string; decrement?: boolean; recipient?: string; shareDelta?: Decimal; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; setCollectionRoyaltyProtocol: ({ collection, protocol, recipient, share }: { collection: string; protocol: string; recipient: string; share: Decimal; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; updateCollectionRoyaltyProtocol: ({ collection, decrement, protocol, recipient, shareDelta }: { collection: string; decrement?: boolean; protocol: string; recipient?: string; shareDelta?: Decimal; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; } export declare class RoyaltyRegistryMessageComposer implements RoyaltyRegistryMessage { sender: string; contractAddress: string; constructor(sender: string, contractAddress: string); initializeCollectionRoyalty: ({ collection }: { collection: string; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; setCollectionRoyaltyDefault: ({ collection, recipient, share }: { collection: string; recipient: string; share: Decimal; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; updateCollectionRoyaltyDefault: ({ collection, decrement, recipient, shareDelta }: { collection: string; decrement?: boolean | undefined; recipient?: string | undefined; shareDelta?: string | undefined; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; setCollectionRoyaltyProtocol: ({ collection, protocol, recipient, share }: { collection: string; protocol: string; recipient: string; share: Decimal; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; updateCollectionRoyaltyProtocol: ({ collection, decrement, protocol, recipient, shareDelta }: { collection: string; decrement?: boolean | undefined; protocol: string; recipient?: string | undefined; shareDelta?: string | undefined; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; }