forked from massalabs/massa-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrapper.ts
216 lines (200 loc) · 5.1 KB
/
wrapper.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
import { Address, call } from '@massalabs/massa-as-sdk';
import {
Args,
NoArg,
bytesToU256,
bytesToString,
byteToU8,
} from '@massalabs/as-types';
import { u256 } from 'as-bignum/assembly';
/**
* The Massa's standard token implementation wrapper.
*
* This class can be used to wrap a smart contract implementing
* Massa standard token.
* All the serialization/deserialization will handled here.
*
* ```typescript
* const coin = new TokenWrapper(scAddress);
* const coinName = coin.name();
* const bal = coin.balanceOf(myAddress);
* console.log(`balance: ${bal.value.toString()} of token: ${coinName}`);
* ```
*/
export class TokenWrapper {
_origin: Address;
/**
* Wraps a smart contract exposing standard token FFI.
*
* @param at - Address of the smart contract. -
*/
constructor(at: Address) {
this._origin = at;
}
/**
* Initializes the smart contract.
*
* @param name - Name of the token.
* @param symbol - Symbol of the token.
* @param decimals - Number of decimals of the token.
* @param supply - Initial supply of the token.
*/
init(name: string, symbol: string, decimals: u8, supply: u256): void {
const args = new Args().add(name).add(symbol).add(decimals).add(supply);
call(this._origin, 'constructor', args, 0);
}
/**
* Returns the version of the smart contract.
* This versioning is following the best practices defined in https://semver.org/.
*
* @returns
*/
version(): string {
return bytesToString(call(this._origin, 'version', NoArg, 0));
}
/**
* Returns the name of the token.
*
* @returns name of the token.
*/
name(): string {
return bytesToString(call(this._origin, 'name', NoArg, 0));
}
/** Returns the symbol of the token.
*
* @returns token symbol.
*/
symbol(): string {
return bytesToString(call(this._origin, 'symbol', NoArg, 0));
}
/**
* Returns the number of decimals of the token.
*
* @returns number of decimals.
*/
decimals(): u8 {
const res = call(this._origin, 'decimals', NoArg, 0);
return byteToU8(res);
}
/**
* Returns the total token supply.
*
* The number of tokens that were initially minted.
*
* @returns number of minted tokens.
*/
totalSupply(): u256 {
return bytesToU256(call(this._origin, 'totalSupply', NoArg, 0));
}
/**
* Returns the balance of an account.
*
* @param account -
*/
balanceOf(account: Address): u256 {
return bytesToU256(
call(this._origin, 'balanceOf', new Args().add(account), 0),
);
}
/**
* Transfers tokens from the caller's account to the recipient's account.
*
* @param toAccount -
* @param nbTokens -
*/
transfer(toAccount: Address, nbTokens: u256): void {
call(this._origin, 'transfer', new Args().add(toAccount).add(nbTokens), 0);
}
/**
* Returns the allowance set on the owner's account for the spender.
*
* @param ownerAccount -
* @param spenderAccount -
*/
allowance(ownerAccount: Address, spenderAccount: Address): u256 {
return bytesToU256(
call(
this._origin,
'allowance',
new Args().add(ownerAccount).add(spenderAccount),
0,
),
);
}
/**
* Increases the allowance of the spender on the owner's account
* by the given amount.
*
* This function can only be called by the owner.
*
* @param spenderAccount -
* @param nbTokens -
*/
increaseAllowance(spenderAccount: Address, nbTokens: u256): void {
call(
this._origin,
'increaseAllowance',
new Args().add(spenderAccount).add(nbTokens),
0,
);
}
/**
* Decreases the allowance of the spender on the owner's account
* by the given amount.
*
* This function can only be called by the owner.
*
* @param spenderAccount -
* @param nbTokens -
*/
decreaseAllowance(spenderAccount: Address, nbTokens: u256): void {
call(
this._origin,
'decreaseAllowance',
new Args().add(spenderAccount).add(nbTokens),
0,
);
}
/**
* Transfers token ownership from the owner's account to
* the recipient's account using the spender's allowance.
*
* This function can only be called by the spender.
* This function is atomic:
* - both allowance and transfer are executed if possible;
* - or if allowance or transfer is not possible, both are discarded.
*
* @param ownerAccount -
* @param recipientAccount -
* @param nbTokens -
*/
transferFrom(
ownerAccount: Address,
recipientAccount: Address,
nbTokens: u256,
): void {
call(
this._origin,
'transferFrom',
new Args().add(ownerAccount).add(recipientAccount).add(nbTokens),
0,
);
}
/**
* Mint an amount of nbTokens tokens from to the toAccount address .
*
* @param toAccount -
* @param nbTokens -
*/
mint(toAccount: Address, nbTokens: u256): void {
call(this._origin, 'mint', new Args().add(toAccount).add(nbTokens), 0);
}
/**
* Burn nbTokens on the caller address
*
* @param nbTokens -
*/
burn(nbTokens: u256): void {
call(this._origin, 'burn', new Args().add(nbTokens), 0);
}
}