forked from Prompt-Hash-Stellar/prompt-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
71 lines (70 loc) · 2.86 KB
/
Copy pathindex.ts
File metadata and controls
71 lines (70 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { getAccountThresholdError } from "./methods/getAccountThresholdError";
import { getAmountError } from "./methods/getAmountError";
import { getArrayOfStringsError } from "./methods/getArrayOfStringsError";
import { getAssetError } from "./methods/getAssetError";
import { getAssetCodeError } from "./methods/getAssetCodeError";
import { getAssetMultiError } from "./methods/getAssetMultiError";
import { getBipPathError } from "./methods/getBipPathError";
import { getClaimableBalanceIdError } from "./methods/getClaimableBalanceIdError";
import { getClaimaintsError } from "./methods/getClaimaintsError";
import { getContractIdError } from "./methods/getContractIdError";
import { getDataNameError } from "./methods/getDataNameError";
import { getDataValueError } from "./methods/getDataValueError";
import { getEventsFiltersError } from "./methods/getEventsFiltersError";
import { getHomeDomainError } from "./methods/getHomeDomainError";
import { getMemoError } from "./methods/getMemoError";
import { getNumberFractionError } from "./methods/getNumberFractionError";
import { getOptionsSignerError } from "./methods/getOptionsSignerError";
import { getPositiveIntError } from "./methods/getPositiveIntError";
import { getPositiveNumberError } from "./methods/getPositiveNumberError";
import { getPublicKeyError } from "./methods/getPublicKeyError";
import { getRevokeSponsorshipError } from "./methods/getRevokeSponsorshipError";
import { getSecretKeyError } from "./methods/getSecretKeyError";
import { getTimeBoundsError } from "./methods/getTimeBoundsError";
import { getTransactionHashError } from "./methods/getTransactionHashError";
import { getXdrError } from "./methods/getXdrError";
import { getU32Error } from "./methods/getU32Error";
import { getU64Error } from "./methods/getU64Error";
import { getU128Error } from "./methods/getU128Error";
import { getU256Error } from "./methods/getU256Error";
import { getI32Error } from "./methods/getI32Error";
import { getI64Error } from "./methods/getI64Error";
import { getI128Error } from "./methods/getI128Error";
import { getI256Error } from "./methods/getI256Error";
import { getDataUrlError } from "./methods/getDataUrlError";
export const validate = {
getAccountThresholdError,
getAmountError,
getArrayOfStringsError,
getAssetError,
getAssetCodeError,
getAssetMultiError,
getBipPathError,
getClaimableBalanceIdError,
getClaimaintsError,
getContractIdError,
getDataNameError,
getDataValueError,
getEventsFiltersError,
getHomeDomainError,
getMemoError,
getNumberFractionError,
getOptionsSignerError,
getPositiveIntError,
getPositiveNumberError,
getPublicKeyError,
getRevokeSponsorshipError,
getSecretKeyError,
getTimeBoundsError,
getTransactionHashError,
getXdrError,
getU32Error,
getI32Error,
getU64Error,
getI64Error,
getU128Error,
getI128Error,
getU256Error,
getI256Error,
getDataUrlError,
};