Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/Client/api/APIRequester.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference types="react-native" />
export declare type APIParams = Record<string, string | number | null | undefined>;
/// <reference types="node" />
export type APIParams = Record<string, string | number | null | undefined>;
export interface Pagination {
next_key: string | null;
total: number;
Expand Down
2 changes: 1 addition & 1 deletion build/Client/api/APIRequester.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/Client/providers/FaucetAPI/methods/requestCredit.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/Client/providers/IdentityAPI/methods/getIdentity.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/Client/providers/IdentityAPI/methods/getToken.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/Denom.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export declare type Denom = string;
export type Denom = string;
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/Msg.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { IbcConnectionMsg } from './ibc/msgs/connection';
import { IbcChannelMsg } from './ibc/msgs/channel';
import { CrisisMsg } from './crisis';
import { Any } from '@terra-money/terra.proto/google/protobuf/any';
export declare type Msg = BankMsg | DistributionMsg | FeeGrantMsg | GovMsg | MarketMsg | MsgAuthMsg | OracleMsg | SlashingMsg | StakingMsg | VestingMsg | WasmMsg | IbcTransferMsg | IbcClientMsg | IbcConnectionMsg | IbcChannelMsg | CrisisMsg;
export type Msg = BankMsg | DistributionMsg | FeeGrantMsg | GovMsg | MarketMsg | MsgAuthMsg | OracleMsg | SlashingMsg | StakingMsg | VestingMsg | WasmMsg | IbcTransferMsg | IbcClientMsg | IbcConnectionMsg | IbcChannelMsg | CrisisMsg;
export declare namespace Msg {
type Amino = BankMsg.Amino | DistributionMsg.Amino | FeeGrantMsg.Amino | GovMsg.Amino | MarketMsg.Amino | MsgAuthMsg.Amino | OracleMsg.Amino | SlashingMsg.Amino | StakingMsg.Amino | VestingMsg.Amino | WasmMsg.Amino | IbcTransferMsg.Amino | CrisisMsg.Amino;
type Data = BankMsg.Data | DistributionMsg.Data | FeeGrantMsg.Data | GovMsg.Data | MarketMsg.Data | MsgAuthMsg.Data | OracleMsg.Data | SlashingMsg.Data | StakingMsg.Data | VestingMsg.Data | WasmMsg.Data | IbcTransferMsg.Data | IbcClientMsg.Data | IbcConnectionMsg.Data | IbcChannelMsg.Data | CrisisMsg.Data;
Expand Down
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/PublicKey.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { JSONSerializable } from '../util/json';
import { LegacyAminoPubKey as LegacyAminoPubKey_pb } from '@terra-money/terra.proto/cosmos/crypto/multisig/keys';
import { Any } from '@terra-money/terra.proto/google/protobuf/any';
import { PubKey as PubKey_pb } from '@terra-money/terra.proto/cosmos/crypto/secp256k1/keys';
export declare type PublicKey = SimplePublicKey | LegacyAminoMultisigPublicKey | ValConsPublicKey;
export type PublicKey = SimplePublicKey | LegacyAminoMultisigPublicKey | ValConsPublicKey;
export declare namespace PublicKey {
type Amino = SimplePublicKey.Amino | LegacyAminoMultisigPublicKey.Amino | ValConsPublicKey.Amino;
type Data = SimplePublicKey.Data | LegacyAminoMultisigPublicKey.Data | ValConsPublicKey.Data;
Expand Down
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/SignatureV2.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export declare class SignatureV2 {
static fromAmino(data: SignatureV2.Amino): SignatureV2;
}
export declare namespace SignatureV2 {
const SignMode: typeof SignMode_pb;
const SignMode: any;
type SignMode = SignMode_pb;
interface Amino {
signature: string;
Expand Down
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/Tx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export declare namespace ModeInfo {
multi?: Multi.Data;
}
type Proto = ModeInfo_pb;
const SignMode: typeof SignMode_pb;
const SignMode: any;
type SignMode = SignMode_pb;
class Single {
mode: SignMode;
Expand Down
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/auth/Account.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ContinuousVestingAccount } from './ContinuousVestingAccount';
import { DelayedVestingAccount } from './DelayedVestingAccount';
import { PeriodicVestingAccount } from './PeriodicVestingAccount';
import { BaseVestingAccount } from './BaseVestingAccount';
export declare type Account = BaseAccount | BaseVestingAccount | LazyGradedVestingAccount | ContinuousVestingAccount | DelayedVestingAccount | PeriodicVestingAccount;
export type Account = BaseAccount | BaseVestingAccount | LazyGradedVestingAccount | ContinuousVestingAccount | DelayedVestingAccount | PeriodicVestingAccount;
/**
* Stores information about an account fetched from the blockchain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export declare namespace AuthorizationGrant {
}
type Proto = Grant_pb;
}
export declare type Authorization = SendAuthorization | GenericAuthorization | StakeAuthorization;
export type Authorization = SendAuthorization | GenericAuthorization | StakeAuthorization;
export declare namespace Authorization {
type Amino = SendAuthorization.Amino | GenericAuthorization.Amino;
type Data = SendAuthorization.Data | GenericAuthorization.Data | StakeAuthorization.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export declare namespace StakeAuthorizationValidators {
}
export declare namespace StakeAuthorization {
type Type = AuthorizationType;
const Type: typeof AuthorizationType;
const Type: any;
interface Data {
'@type': '/cosmos.staking.v1beta1.StakeAuthorization';
max_tokens?: Coin.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { MsgExecAuthorized } from './MsgExecAuthorized';
export * from './MsgGrantAuthorization';
export * from './MsgRevokeAuthorization';
export * from './MsgExecAuthorized';
export declare type MsgAuthMsg = MsgGrantAuthorization | MsgRevokeAuthorization | MsgExecAuthorized;
export type MsgAuthMsg = MsgGrantAuthorization | MsgRevokeAuthorization | MsgExecAuthorized;
export declare namespace MsgAuthMsg {
type Amino = MsgGrantAuthorization.Amino | MsgRevokeAuthorization.Amino | MsgExecAuthorized.Amino;
type Data = MsgGrantAuthorization.Data | MsgRevokeAuthorization.Data | MsgExecAuthorized.Data;
Expand Down
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/bank/msgs/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { MsgSend } from './MsgSend';
import { MsgMultiSend } from './MsgMultiSend';
export * from './MsgSend';
export * from './MsgMultiSend';
export declare type BankMsg = MsgSend | MsgMultiSend;
export type BankMsg = MsgSend | MsgMultiSend;
export declare namespace BankMsg {
type Amino = MsgSend.Amino | MsgMultiSend.Amino;
type Data = MsgSend.Data | MsgMultiSend.Data;
Expand Down
10 changes: 5 additions & 5 deletions build/Client/providers/LCDClient/core/bech32.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/** `terra-` prefixed account address */
export declare type AccAddress = string;
export type AccAddress = string;
/** `terravaloper-` prefixed validator operator address */
export declare type ValAddress = string;
export type ValAddress = string;
/** `terravalcons-` prefixed validator consensus address */
export declare type ValConsAddress = string;
export type ValConsAddress = string;
/** `terrapub-` prefixed account public key */
export declare type AccPubKey = string;
export type AccPubKey = string;
/** `terravaloperpub-` prefixed validator public key */
export declare type ValPubKey = string;
export type ValPubKey = string;
export declare namespace AccAddress {
/**
* Checks if a string is a valid Terra account address.
Expand Down
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/crisis/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { MsgVerifyInvariant } from './MsgVerifyInvariant';
export * from './MsgVerifyInvariant';
export declare type CrisisMsg = MsgVerifyInvariant;
export type CrisisMsg = MsgVerifyInvariant;
export declare namespace CrisisMsg {
type Amino = MsgVerifyInvariant.Amino;
type Data = MsgVerifyInvariant.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export * from './MsgSetWithdrawAddress';
export * from './MsgWithdrawDelegatorReward';
export * from './MsgWithdrawValidatorCommission';
export * from './MsgFundCommunityPool';
export declare type DistributionMsg = MsgSetWithdrawAddress | MsgWithdrawDelegatorReward | MsgWithdrawValidatorCommission | MsgFundCommunityPool;
export type DistributionMsg = MsgSetWithdrawAddress | MsgWithdrawDelegatorReward | MsgWithdrawValidatorCommission | MsgFundCommunityPool;
export declare namespace DistributionMsg {
type Amino = MsgSetWithdrawAddress.Amino | MsgWithdrawDelegatorReward.Amino | MsgWithdrawValidatorCommission.Amino | MsgFundCommunityPool.Amino;
type Data = MsgSetWithdrawAddress.Data | MsgWithdrawDelegatorReward.Data | MsgWithdrawValidatorCommission.Data | MsgFundCommunityPool.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export * from './BasicAllowance';
export * from './PeriodicAllowance';
export * from './AllowedMsgAllowance';
import { Any } from '@terra-money/legacy.proto/google/protobuf/any';
export declare type Allowance = BasicAllowance | PeriodicAllowance | AllowedMsgAllowance;
export type Allowance = BasicAllowance | PeriodicAllowance | AllowedMsgAllowance;
export declare namespace Allowance {
type Amino = BasicAllowance.Amino | PeriodicAllowance.Amino | AllowedMsgAllowance.Amino;
type Data = BasicAllowance.Data | PeriodicAllowance.Data | AllowedMsgAllowance.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { MsgGrantAllowance } from './MsgGrantAllowance';
import { MsgRevokeAllowance } from './MsgRevokeAllowance';
export * from './MsgGrantAllowance';
export * from './MsgRevokeAllowance';
export declare type FeeGrantMsg = MsgGrantAllowance | MsgRevokeAllowance;
export type FeeGrantMsg = MsgGrantAllowance | MsgRevokeAllowance;
export declare namespace FeeGrantMsg {
type Amino = MsgGrantAllowance.Amino | MsgRevokeAllowance.Amino;
type Data = MsgGrantAllowance.Data | MsgRevokeAllowance.Data;
Expand Down
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/gov/Proposal.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export declare class Proposal extends JSONSerializable<Proposal.Amino, Proposal.
toProto(isClassic?: boolean): Proposal.Proto;
}
export declare namespace Proposal {
const Status: typeof ProposalStatus;
const Status: any;
type Status = ProposalStatus;
interface FinalTallyResult {
yes: Int;
Expand Down
4 changes: 2 additions & 2 deletions build/Client/providers/LCDClient/core/gov/Vote.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export declare class Vote extends JSONSerializable<Vote.Amino, Vote.Data, Vote.P
proposal_id: number;
voter: AccAddress;
options: WeightedVoteOption[];
Option: typeof VoteOption;
Option: any;
/**
* @param proposal_id ID of proposal to vote on
* @param voter voter's account address
Expand All @@ -24,7 +24,7 @@ export declare class Vote extends JSONSerializable<Vote.Amino, Vote.Data, Vote.P
toProto(_?: boolean): Vote.Proto;
}
export declare namespace Vote {
const Option: typeof VoteOption;
const Option: any;
type Option = VoteOption;
interface Amino {
proposal_id: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export declare class MsgVote extends JSONSerializable<MsgVote.Amino, MsgVote.Dat
static unpackAny(msgAny: Any, _?: boolean): MsgVote;
}
export declare namespace MsgVote {
const Option: typeof VoteOption;
const Option: any;
type Option = VoteOption;
interface Amino {
type: 'gov/MsgVote' | 'cosmos-sdk/MsgVote';
Expand Down
2 changes: 1 addition & 1 deletion build/Client/providers/LCDClient/core/gov/msgs/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export * from './MsgDeposit';
export * from './MsgSubmitProposal';
export * from './MsgVote';
export * from './MsgVoteWeighted';
export declare type GovMsg = MsgDeposit | MsgSubmitProposal | MsgVote | MsgVoteWeighted;
export type GovMsg = MsgDeposit | MsgSubmitProposal | MsgVote | MsgVoteWeighted;
export declare namespace GovMsg {
type Amino = MsgDeposit.Amino | MsgSubmitProposal.Amino | MsgVote.Amino | MsgVoteWeighted.Amino;
type Data = MsgDeposit.Data | MsgSubmitProposal.Data | MsgVote.Data | MsgVoteWeighted.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { MsgTransfer } from './v1/msgs/MsgTransfer';
export * from './v1/msgs/MsgTransfer';
export * from './v2/FungibleTokenPacketData';
export * from './v1/DenomTrace';
export declare type IbcTransferMsg = MsgTransfer;
export type IbcTransferMsg = MsgTransfer;
export declare namespace IbcTransferMsg {
type Data = MsgTransfer.Data;
type Amino = MsgTransfer.Amino;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export * from './MsgRecvPacket';
export * from './MsgRecvAcknowledgement';
export * from './MsgTimeout';
export * from './MsgTimeoutClose';
export declare type IbcChannelMsg = MsgChannelOpenInit | MsgChannelOpenTry | MsgChannelOpenConfirm | MsgChannelOpenAck | MsgChannelCloseInit | MsgChannelCloseConfirm | MsgRecvPacket | MsgAcknowledgement | MsgTimeout | MsgTimeoutOnClose;
export type IbcChannelMsg = MsgChannelOpenInit | MsgChannelOpenTry | MsgChannelOpenConfirm | MsgChannelOpenAck | MsgChannelCloseInit | MsgChannelCloseConfirm | MsgRecvPacket | MsgAcknowledgement | MsgTimeout | MsgTimeoutOnClose;
export declare namespace IbcChannelMsg {
type Data = MsgChannelOpenInit.Data | MsgChannelOpenTry.Data | MsgChannelOpenConfirm.Data | MsgChannelOpenAck.Data | MsgChannelCloseInit.Data | MsgChannelCloseConfirm.Data | MsgRecvPacket.Data | MsgAcknowledgement.Data | MsgTimeout.Data | MsgTimeoutOnClose.Data;
type Proto = MsgChannelOpenInit.Proto | MsgChannelOpenTry.Proto | MsgChannelOpenConfirm.Proto | MsgChannelOpenAck.Proto | MsgChannelCloseInit.Proto | MsgChannelCloseConfirm.Proto | MsgRecvPacket.Proto | MsgAcknowledgement.Proto | MsgTimeout.Proto | MsgTimeoutOnClose.Proto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export * from './MsgCreateClient';
export * from './MsgUpdateClient';
export * from './MsgUpgradeClient';
export * from './MsgSubmitMisbehaviour';
export declare type IbcClientMsg = MsgCreateClient | MsgUpdateClient | MsgUpgradeClient | MsgSubmitMisbehaviour;
export type IbcClientMsg = MsgCreateClient | MsgUpdateClient | MsgUpgradeClient | MsgSubmitMisbehaviour;
export declare namespace IbcClientMsg {
type Data = MsgCreateClient.Data | MsgUpdateClient.Data | MsgUpgradeClient.Data | MsgSubmitMisbehaviour.Data;
type Proto = MsgCreateClient.Proto | MsgUpdateClient.Proto | MsgUpgradeClient.Proto | MsgSubmitMisbehaviour.Proto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export * from './MsgConnectionOpenInit';
export * from './MsgConnectionOpenTry';
export * from './MsgConnectionOpenConfirm';
export * from './MsgConnectionOpenAck';
export declare type IbcConnectionMsg = MsgConnectionOpenInit | MsgConnectionOpenTry | MsgConnectionOpenConfirm | MsgConnectionOpenAck;
export type IbcConnectionMsg = MsgConnectionOpenInit | MsgConnectionOpenTry | MsgConnectionOpenConfirm | MsgConnectionOpenAck;
export declare namespace IbcConnectionMsg {
type Data = MsgConnectionOpenInit.Data | MsgConnectionOpenTry.Data | MsgConnectionOpenConfirm.Data | MsgConnectionOpenAck.Data;
type Proto = MsgConnectionOpenInit.Proto | MsgConnectionOpenTry.Proto | MsgConnectionOpenConfirm.Proto | MsgConnectionOpenAck.Proto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { MsgSwap } from './MsgSwap';
export * from './MsgSwap';
import { MsgSwapSend } from './MsgSwapSend';
export * from './MsgSwapSend';
export declare type MarketMsg = MsgSwap | MsgSwapSend;
export type MarketMsg = MsgSwap | MsgSwapSend;
export declare namespace MarketMsg {
type Amino = MsgSwap.Amino | MsgSwapSend.Amino;
type Data = MsgSwap.Data | MsgSwapSend.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { MsgAggregateExchangeRateVote } from './MsgAggregateExchangeRateVote';
export * from './MsgDelegateFeedConsent';
export * from './MsgAggregateExchangeRateVote';
export * from './MsgAggregateExchangeRatePrevote';
export declare type OracleMsg = MsgDelegateFeedConsent | MsgAggregateExchangeRateVote | MsgAggregateExchangeRatePrevote;
export type OracleMsg = MsgDelegateFeedConsent | MsgAggregateExchangeRateVote | MsgAggregateExchangeRatePrevote;
export declare namespace OracleMsg {
type Amino = MsgDelegateFeedConsent.Amino | MsgAggregateExchangeRateVote.Amino | MsgAggregateExchangeRatePrevote.Amino;
type Data = MsgDelegateFeedConsent.Data | MsgAggregateExchangeRateVote.Data | MsgAggregateExchangeRatePrevote.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { MsgUnjail } from './MsgUnjail';
export * from './MsgUnjail';
export declare type SlashingMsg = MsgUnjail;
export type SlashingMsg = MsgUnjail;
export declare namespace SlashingMsg {
type Amino = MsgUnjail.Amino;
type Data = MsgUnjail.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export declare class Validator extends JSONSerializable<Validator.Amino, Validat
static fromProto(data: Validator.Proto): Validator;
}
export declare namespace Validator {
const Status: typeof BondStatus;
const Status: any;
type Status = BondStatus;
interface Amino {
operator_address: ValAddress;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export * from './MsgUndelegate';
export * from './MsgBeginRedelegate';
export * from './MsgCreateValidator';
export * from './MsgEditValidator';
export declare type StakingMsg = MsgDelegate | MsgUndelegate | MsgBeginRedelegate | MsgCreateValidator | MsgEditValidator;
export type StakingMsg = MsgDelegate | MsgUndelegate | MsgBeginRedelegate | MsgCreateValidator | MsgEditValidator;
export declare namespace StakingMsg {
type Amino = MsgDelegate.Amino | MsgUndelegate.Amino | MsgBeginRedelegate.Amino | MsgCreateValidator.Amino | MsgEditValidator.Amino;
type Data = MsgDelegate.Data | MsgUndelegate.Data | MsgBeginRedelegate.Data | MsgCreateValidator.Data | MsgEditValidator.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { MsgDonateAllVestingTokens } from './MsgDonateAllVestingTokens';
export * from './MsgCreatePeriodicVestingAccount';
export * from './MsgCreateVestingAccount';
export * from './MsgDonateAllVestingTokens';
export declare type VestingMsg = MsgCreatePeriodicVestingAccount | MsgCreateVestingAccount | MsgDonateAllVestingTokens;
export type VestingMsg = MsgCreatePeriodicVestingAccount | MsgCreateVestingAccount | MsgDonateAllVestingTokens;
export declare namespace VestingMsg {
type Amino = MsgCreatePeriodicVestingAccount.Amino | MsgCreateVestingAccount.Amino | MsgDonateAllVestingTokens.Amino;
type Data = MsgCreatePeriodicVestingAccount.Data | MsgCreateVestingAccount.Data | MsgDonateAllVestingTokens.Data;
Expand Down
Loading