near-api-js - v7.0.4
    Preparing search index...

    Type Alias ReceiptEnumView

    ReceiptEnumView:
        | {
            Action: {
                actions: ActionView[];
                gas_price: NearToken;
                input_data_ids: CryptoHash[];
                is_promise_yield?: boolean;
                output_data_receivers: DataReceiverView[];
                refund_to?: AccountId
                | null;
                signer_id: AccountId;
                signer_public_key: PublicKey;
            };
        }
        | {
            Data: {
                data?: string
                | null;
                data_id: CryptoHash;
                is_promise_resume?: boolean;
            };
        }
        | {
            GlobalContractDistribution: {
                already_delivered_shards: ShardId[];
                code: string;
                id: GlobalContractIdentifier;
                target_shard: ShardId;
            };
        }