@gala-chain/api ∙ API
API > ChainCallDTO
Class: ChainCallDTO
Contents
- Extended By
- Constructors
- new ChainCallDTO()
- Properties
- prefix
- signature
- signerPublicKey
- trace
- uniqueKey
- ENCODING
- Methods
- isSignatureValid()
- serialize()
- sign()
- signed()
- validate()
- validateOrReject()
- deserialize()
Extended By
GetObjectDto
GetObjectHistoryDto
DryRunDto
DryRunResultDto
RegisterUserDto
RegisterEthUserDto
UpdatePublicKeyDto
GetPublicKeyDto
GetMyProfileDto
TokenInstanceKey
TokenInstanceQuantity
TokenInstanceQueryKey
TokenClassKey
FetchTokenClassesDto
FetchTokenClassesWithPaginationDto
FetchTokenClassesResponse
FetchTokenInstancesDto
CreateTokenClassDto
UpdateTokenClassDto
FetchBalancesDto
FetchBalancesWithPaginationDto
TokenBalanceWithMetadata
FetchBalancesWithTokenMetadataResponse
TransferTokenDto
AllowanceKey
FetchAllowancesDto
FetchAllowancesLegacyDto
FetchAllowancesResponse
DeleteAllowancesDto
GrantAllowanceDto
HighThroughputGrantAllowanceDto
FulfillMintAllowanceDto
FullAllowanceCheckDto
FullAllowanceCheckResDto
RefreshAllowanceDto
RefreshAllowancesDto
LockTokenDto
LockTokensDto
UnlockTokenDto
UnlockTokensDto
ReleaseTokenDto
UseTokenDto
FetchBurnsDto
BurnTokensDto
BurnAndMintDto
FetchBurnCountersWithPaginationDto
FetchBurnCountersResponse
TokenBurnCounterCompositeKeyDto
MintTokenDto
MintTokenWithAllowanceDto
BatchMintTokenDto
HighThroughputMintTokenDto
FulfillMintDto
FetchMintRequestsDto
FetchTokenSupplyDto
FetchTokenSupplyResponse
PatchMintAllowanceRequestDto
PatchMintRequestDto
Constructors
new ChainCallDTO()
new ChainCallDTO():
ChainCallDTO
Properties
prefix
prefix?:
string
Source
chain-api/src/types/dtos.ts:151
signature
signature?:
string
Source
chain-api/src/types/dtos.ts:142
signerPublicKey
signerPublicKey?:
string
Source
chain-api/src/types/dtos.ts:160
trace
trace?:
TraceContext
Source
chain-api/src/types/dtos.ts:107
uniqueKey
uniqueKey?:
string
Source
chain-api/src/types/dtos.ts:122
ENCODING
static
readonly
ENCODING:"base64"
="base64"
Source
chain-api/src/types/dtos.ts:108
Methods
isSignatureValid()
isSignatureValid(
publicKey
):boolean
Parameters
▪ publicKey: string
Source
chain-api/src/types/dtos.ts:202
serialize()
serialize():
string
Source
chain-api/src/types/dtos.ts:174
sign()
sign(
privateKey
,useDer
):void
Parameters
▪ privateKey: string
▪ useDer: boolean
= false
Source
chain-api/src/types/dtos.ts:185
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:196
validate()
validate():
Promise
\<ValidationError
[]>
Source
chain-api/src/types/dtos.ts:162
validateOrReject()
validateOrReject():
Promise
\<void
>
Source
chain-api/src/types/dtos.ts:166
deserialize()
static
deserialize\<T
>(constructor
,object
):T
Type parameters
▪ T
Parameters
▪ constructor: ClassConstructor
\<Inferred
\<T
, ChainCallDTO
>>
▪ object: string
| Record
\<string
, unknown
> | Record
\<string
, unknown
>[]