forked from DA0-DA0/dao-dao-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
DaoVotingCw20Staked.ts
175 lines (169 loc) · 4.57 KB
/
DaoVotingCw20Staked.ts
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import { Coin, StdFee } from '@cosmjs/amino'
import {
CosmWasmClient,
ExecuteResult,
SigningCosmWasmClient,
} from '@cosmjs/cosmwasm-stargate'
import { ActiveThreshold } from '@dao-dao/types/contracts/common'
import {
ActiveThresholdResponse,
DaoResponse,
InfoResponse,
IsActiveResponse,
StakingContractResponse,
TokenContractResponse,
TotalPowerAtHeightResponse,
VotingPowerAtHeightResponse,
} from '@dao-dao/types/contracts/DaoVotingCw20Staked'
import { CHAIN_GAS_MULTIPLIER } from '@dao-dao/utils'
export interface DaoVotingCw20StakedReadOnlyInterface {
contractAddress: string
stakingContract: () => Promise<StakingContractResponse>
dao: () => Promise<DaoResponse>
activeThreshold: () => Promise<ActiveThresholdResponse>
votingPowerAtHeight: ({
address,
height,
}: {
address: string
height?: number
}) => Promise<VotingPowerAtHeightResponse>
totalPowerAtHeight: ({
height,
}: {
height?: number
}) => Promise<TotalPowerAtHeightResponse>
info: () => Promise<InfoResponse>
tokenContract: () => Promise<TokenContractResponse>
isActive: () => Promise<IsActiveResponse>
}
export class DaoVotingCw20StakedQueryClient
implements DaoVotingCw20StakedReadOnlyInterface
{
client: CosmWasmClient
contractAddress: string
constructor(client: CosmWasmClient, contractAddress: string) {
this.client = client
this.contractAddress = contractAddress
this.stakingContract = this.stakingContract.bind(this)
this.dao = this.dao.bind(this)
this.activeThreshold = this.activeThreshold.bind(this)
this.votingPowerAtHeight = this.votingPowerAtHeight.bind(this)
this.totalPowerAtHeight = this.totalPowerAtHeight.bind(this)
this.info = this.info.bind(this)
this.tokenContract = this.tokenContract.bind(this)
this.isActive = this.isActive.bind(this)
}
stakingContract = async (): Promise<StakingContractResponse> => {
return this.client.queryContractSmart(this.contractAddress, {
staking_contract: {},
})
}
dao = async (): Promise<DaoResponse> => {
return this.client.queryContractSmart(this.contractAddress, {
dao: {},
})
}
activeThreshold = async (): Promise<ActiveThresholdResponse> => {
return this.client.queryContractSmart(this.contractAddress, {
active_threshold: {},
})
}
votingPowerAtHeight = async ({
address,
height,
}: {
address: string
height?: number
}): Promise<VotingPowerAtHeightResponse> => {
return this.client.queryContractSmart(this.contractAddress, {
voting_power_at_height: {
address,
height,
},
})
}
totalPowerAtHeight = async ({
height,
}: {
height?: number
}): Promise<TotalPowerAtHeightResponse> => {
return this.client.queryContractSmart(this.contractAddress, {
total_power_at_height: {
height,
},
})
}
info = async (): Promise<InfoResponse> => {
return this.client.queryContractSmart(this.contractAddress, {
info: {},
})
}
tokenContract = async (): Promise<TokenContractResponse> => {
return this.client.queryContractSmart(this.contractAddress, {
token_contract: {},
})
}
isActive = async (): Promise<IsActiveResponse> => {
return this.client.queryContractSmart(this.contractAddress, {
is_active: {},
})
}
}
export interface DaoVotingCw20StakedInterface
extends DaoVotingCw20StakedReadOnlyInterface {
contractAddress: string
sender: string
updateActiveThreshold: (
{
newThreshold,
}: {
newThreshold?: ActiveThreshold
},
fee?: number | StdFee | 'auto',
memo?: string,
funds?: Coin[]
) => Promise<ExecuteResult>
}
export class DaoVotingCw20StakedClient
extends DaoVotingCw20StakedQueryClient
implements DaoVotingCw20StakedInterface
{
client: SigningCosmWasmClient
sender: string
contractAddress: string
constructor(
client: SigningCosmWasmClient,
sender: string,
contractAddress: string
) {
super(client, contractAddress)
this.client = client
this.sender = sender
this.contractAddress = contractAddress
this.updateActiveThreshold = this.updateActiveThreshold.bind(this)
}
updateActiveThreshold = async (
{
newThreshold,
}: {
newThreshold?: ActiveThreshold
},
fee: number | StdFee | 'auto' = CHAIN_GAS_MULTIPLIER,
memo?: string,
funds?: Coin[]
): Promise<ExecuteResult> => {
return await this.client.execute(
this.sender,
this.contractAddress,
{
update_active_threshold: {
new_threshold: newThreshold,
},
},
fee,
memo,
funds
)
}
}