Skip to content
Draft
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
33 changes: 17 additions & 16 deletions src/types/chain/osmosis-1/IRangeBlockOsmosis1TrxMsg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -954,26 +954,27 @@ export interface Osmosis1TrxMsgOsmosisIncentivesMsgAddToGauge
}

// types for mgs type:: /osmosis.incentives.MsgCreateGauge
export interface Osmosis1TrxMsgOsmosisIncentivesMsgCreateGauge
extends IRangeMessage {
type: Osmosis1TrxMsgTypes.OsmosisIncentivesMsgCreateGauge;
data: {
export interface Osmosis1TrxMsgOsmosisIncentivesMsgCreateGauge {
type: string;
data: Osmosis1TrxMsgOsmosisIncentivesMsgCreateGaugeData;
}
interface Osmosis1TrxMsgOsmosisIncentivesMsgCreateGaugeData {
owner: string;
distributeTo: {
lockQueryType: string;
denom?: string;
duration: string;
timestamp: string;
};
coins: {
denom: string;
amount: string;
}[];
distributeTo: Osmosis1TrxMsgOsmosisIncentivesMsgCreateGaugeDistributeTo;
coins: Osmosis1TrxMsgOsmosisIncentivesMsgCreateGaugeCoinsItem[];
startTime: string;
numEpochsPaidOver: string;
poolId: string;
};
}
interface Osmosis1TrxMsgOsmosisIncentivesMsgCreateGaugeDistributeTo {
denom: string;
duration: string;
timestamp: string;
}
interface Osmosis1TrxMsgOsmosisIncentivesMsgCreateGaugeCoinsItem {
denom: string;
amount: string;
}


// types for mgs type:: /osmosis.lockup.MsgBeginUnlocking
export interface Osmosis1TrxMsgOsmosisLockupMsgBeginUnlocking
Expand Down