forked from jonnifer-six/cw-plus-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcw20-base.ts
296 lines (256 loc) · 9.79 KB
/
cw20-base.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
import { toUtf8, toBase64 } from "@cosmjs/encoding"
import { calculateFee } from "@cosmjs/stargate"
/*
* This is a set of helpers meant for use with @cosmjs/cli
* Look at https://raw.githubusercontent.com/InterWasm/cw-plus-helpers/main/base.ts on how to setup a wallet
* With these you can easily use the cw20 contract without worrying about forming messages and parsing queries.
*
* Usage: npx @cosmjs/cli@^0.26 --init https://raw.githubusercontent.com/InterWasm/cw-plus-helpers/main/base.ts --init https://raw.githubusercontent.com/InterWasm/cw-plus-helpers/main/cw20-base.ts
*
* Create a client:
* const [addr, client] = await useOptions(uniOptions).setup('password');
*
* Get the mnemonic:
* await useOptions(uniOptions).recoverMnemonic(password);
*
* Create contract:
* const contract = CW20(client, uniOptions);
*
* Upload contract:
* const codeId = await contract.upload(addr, uniOptions);
*
* Instantiate contract example:
* const initMsg = {
* name: "Potato Coin",
* symbol: "TATER",
* decimals: 2,
* initial_balances: [{ address: addr, amount: "10000" }],
* mint: { "minter": addr }
* };
* const instance = await contract.instantiate(addr, codeId, initMsg, 'Potato Coin!', uniOptions);
*
* If you want to use this code inside an app, you will need several imports from https://github.com/CosmWasm/cosmjs
*/
type Expiration = { readonly at_height: number } | { readonly at_time: number } | { readonly never: {} }
interface AllowanceResponse {
readonly allowance: string // integer as string
readonly expires: Expiration
}
interface AllowanceInfo {
readonly allowance: string // integer as string
readonly spender: string // bech32 address
readonly expires: Expiration
}
interface AllAllowancesResponse {
readonly allowances: readonly AllowanceInfo[]
}
interface AllAccountsResponse {
// list of bech32 address that have a balance
readonly accounts: readonly string[]
}
interface CW20Instance {
readonly contractAddress: string
// queries
balance: (address?: string) => Promise<string>
allowance: (owner: string, spender: string) => Promise<AllowanceResponse>
allAllowances: (owner: string, startAfter?: string, limit?: number) => Promise<AllAllowancesResponse>
allAccounts: (startAfter?: string, limit?: number) => Promise<readonly string[]>
tokenInfo: () => Promise<any>
minter: () => Promise<any>
// actions
mint: (txSigner: string, recipient: string, amount: string) => Promise<string>
transfer: (txSigner: string, recipient: string, amount: string) => Promise<string>
send: (txSigner: string, recipient: string, amount: string, msg: Record<string, unknown>) => Promise<string>
burn: (txSigner: string, amount: string) => Promise<string>
increaseAllowance: (txSigner: string, recipient: string, amount: string) => Promise<string>
decreaseAllowance: (txSigner: string, recipient: string, amount: string) => Promise<string>
transferFrom: (txSigner: string, owner: string, recipient: string, amount: string) => Promise<string>
sendFrom: (
txSigner: string,
owner: string,
recipient: string,
amount: string,
msg: Record<string, unknown>,
) => Promise<string>
}
interface CW20Contract {
// upload a code blob and returns a codeId
upload: (txSigner: string, options: Options) => Promise<number>
// instantiates a cw20 contract
// codeId must come from a previous deploy
// label is the public name of the contract in listing
// if you set admin, you can run migrations on this contract (likely client.senderAddress)
instantiate: (
txSigner: string,
codeId: number,
initMsg: Record<string, unknown>,
label: string,
options: Options,
admin?: string,
) => Promise<CW20Instance>
use: (contractAddress: string) => CW20Instance
}
export const CW20 = (client: SigningCosmWasmClient, options: Options): CW20Contract => {
const use = (contractAddress: string): CW20Instance => {
const balance = async (address: string): Promise<string> => {
const result = await client.queryContractSmart(contractAddress, { balance: { address } })
return result.balance
}
const allowance = async (owner: string, spender: string): Promise<AllowanceResponse> => {
return client.queryContractSmart(contractAddress, { allowance: { owner, spender } })
}
const allAllowances = async (
owner: string,
startAfter?: string,
limit?: number,
): Promise<AllAllowancesResponse> => {
return client.queryContractSmart(contractAddress, { all_allowances: { owner, start_after: startAfter, limit } })
}
const allAccounts = async (startAfter?: string, limit?: number): Promise<readonly string[]> => {
const accounts: AllAccountsResponse = await client.queryContractSmart(contractAddress, {
all_accounts: { start_after: startAfter, limit },
})
return accounts.accounts
}
const tokenInfo = async (): Promise<any> => {
return client.queryContractSmart(contractAddress, { token_info: {} })
}
const minter = async (): Promise<any> => {
return client.queryContractSmart(contractAddress, { minter: {} })
}
// mints tokens, returns transactionHash
const mint = async (senderAddress: string, recipient: string, amount: string): Promise<string> => {
const fee = calculateFee(options.fees.exec, options.gasPrice)
const result = await client.execute(senderAddress, contractAddress, { mint: { recipient, amount } }, fee)
return result.transactionHash
}
// transfers tokens, returns transactionHash
const transfer = async (senderAddress: string, recipient: string, amount: string): Promise<string> => {
const fee = calculateFee(options.fees.exec, options.gasPrice)
const result = await client.execute(senderAddress, contractAddress, { transfer: { recipient, amount } }, fee)
return result.transactionHash
}
// burns tokens, returns transactionHash
const burn = async (senderAddress: string, amount: string): Promise<string> => {
const fee = calculateFee(options.fees.exec, options.gasPrice)
const result = await client.execute(senderAddress, contractAddress, { burn: { amount } }, fee)
return result.transactionHash
}
const increaseAllowance = async (senderAddress: string, spender: string, amount: string): Promise<string> => {
const fee = calculateFee(options.fees.exec, options.gasPrice)
const result = await client.execute(
senderAddress,
contractAddress,
{ increase_allowance: { spender, amount } },
fee,
)
return result.transactionHash
}
const decreaseAllowance = async (senderAddress: string, spender: string, amount: string): Promise<string> => {
const fee = calculateFee(options.fees.exec, options.gasPrice)
const result = await client.execute(
senderAddress,
contractAddress,
{ decrease_allowance: { spender, amount } },
fee,
)
return result.transactionHash
}
const transferFrom = async (
senderAddress: string,
owner: string,
recipient: string,
amount: string,
): Promise<string> => {
const fee = calculateFee(options.fees.exec, options.gasPrice)
const result = await client.execute(
senderAddress,
contractAddress,
{ transfer_from: { owner, recipient, amount } },
fee,
)
return result.transactionHash
}
const jsonToBinary = (json: Record<string, unknown>): string => {
return toBase64(toUtf8(JSON.stringify(json)))
}
const send = async (
senderAddress: string,
recipient: string,
amount: string,
msg: Record<string, unknown>,
): Promise<string> => {
const fee = calculateFee(options.fees.exec, options.gasPrice)
const result = await client.execute(
senderAddress,
contractAddress,
{ send: { recipient, amount, msg: jsonToBinary(msg) } },
fee,
)
return result.transactionHash
}
const sendFrom = async (
senderAddress: string,
owner: string,
recipient: string,
amount: string,
msg: Record<string, unknown>,
): Promise<string> => {
const fee = calculateFee(options.fees.exec, options.gasPrice)
const result = await client.execute(
senderAddress,
contractAddress,
{ send_from: { owner, recipient, amount, msg: jsonToBinary(msg) } },
fee,
)
return result.transactionHash
}
return {
contractAddress,
balance,
allowance,
allAllowances,
allAccounts,
tokenInfo,
minter,
mint,
transfer,
burn,
increaseAllowance,
decreaseAllowance,
transferFrom,
send,
sendFrom,
}
}
const downloadWasm = async (url: string): Promise<Uint8Array> => {
const r = await axios.get(url, { responseType: "arraybuffer" })
if (r.status !== 200) {
throw new Error(`Download error: ${r.status}`)
}
return r.data
}
const upload = async (senderAddress: string, options: Options): Promise<number> => {
const sourceUrl = "https://github.com/CosmWasm/cosmwasm-plus/releases/download/v0.10.2/cw20_base.wasm"
const wasm = await downloadWasm(sourceUrl)
const fee = calculateFee(options.fees.upload, options.gasPrice)
const result = await client.upload(senderAddress, wasm, fee)
return result.codeId
}
const instantiate = async (
senderAddress: string,
codeId: number,
initMsg: Record<string, unknown>,
label: string,
options: Options,
admin?: string,
): Promise<CW20Instance> => {
const fee = calculateFee(options.fees.init, options.gasPrice)
const result = await client.instantiate(senderAddress, codeId, initMsg, label, fee, {
memo: `Init ${label}`,
admin,
})
return use(result.contractAddress)
}
return { upload, instantiate, use }
}