Skip to content

@gala-chain/connectAPI


API > ChainCallDTO

Class: ChainCallDTO

Contents

Description

The base DTO (Data Transfer Object) class. Provides common properties and methods for signing, uniqueness, validation, and serialization. All other DTOs in the SDK extend from this base class. To implement custom a custom DTO, create a new class that extends ChainCallDTO, and use the class-validator npm package to decorate the properties of the new class.

Remarks

Additional details for specific properties of this class are generated via the class-validator-jsonschema npm module and can either be viewed in the source code or in the OpenAPI documentation served alongside GalaChain's API endpoints.

Extended By

Constructors

new ChainCallDTO()

new ChainCallDTO(): ChainCallDTO

Properties

prefix

prefix?: string

Source

chain-api/src/types/dtos.ts:159


signature

signature?: string

Source

chain-api/src/types/dtos.ts:150


signerAddress

signerAddress?: string

Source

chain-api/src/types/dtos.ts:166


signerPublicKey

signerPublicKey?: string

Source

chain-api/src/types/dtos.ts:173


signing

signing?: SigningScheme

Source

chain-api/src/types/dtos.ts:183


uniqueKey

uniqueKey?: string

Source

chain-api/src/types/dtos.ts:140

Methods

isSignatureValid()

isSignatureValid(publicKey): boolean

Parameters

publicKey: string

Source

chain-api/src/types/dtos.ts:257


serialize()

serialize(): string

Returns

string

Description

Serialze this object to string in a determinsitic fashion. See Hyperledger Fabric's documentation on JSON Determinism for more details.

Source

chain-api/src/types/dtos.ts:207


sign()

sign(privateKey, useDer): void

Parameters

privateKey: string

useDer: boolean= false

Source

chain-api/src/types/dtos.ts:235


signed()

signed(privateKey, useDer): ChainCallDTO

Creates a signed copy of current object.

Parameters

privateKey: string

useDer: boolean= false

Source

chain-api/src/types/dtos.ts:251


validate()

validate(): Promise\<ValidationError[]>

Source

chain-api/src/types/dtos.ts:185


validateOrReject()

validateOrReject(): Promise\<void>

Source

chain-api/src/types/dtos.ts:189


deserialize()

static deserialize\<T>(constructor, object): T

Type parameters

T

Parameters

constructor: ClassConstructor\<Inferred\<T, ChainCallDTO>>

ClassConstructor that extends ChainCallDTO

object: string | Record\<string, unknown> | Record\<string, unknown>[]

serialized string or plain object to be instantiated via the provided ClassConstructor

Returns

An instantiated class created with the provided ClassConstructor

Description

Instantiate a class instance from a serialized object using the provided ClassConstructor.

Source

chain-api/src/types/dtos.ts:228