@leofcoin/contracts 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/exports/factory.d.ts +20 -0
- package/exports/factory.js +51 -52
- package/exports/name-service.d.ts +31 -0
- package/exports/name-service.js +107 -106
- package/exports/native-token.d.ts +4 -0
- package/exports/native-token.js +205 -7
- package/exports/power-token.d.ts +4 -0
- package/exports/power-token.js +205 -7
- package/exports/types.d.ts +2 -0
- package/exports/validators.d.ts +16 -0
- package/exports/validators.js +197 -129
- package/package.json +11 -2
- package/rollup.config.js +67 -0
- package/src/factory.ts +56 -0
- package/src/name-service.ts +120 -0
- package/src/native-token.ts +7 -0
- package/src/power-token.ts +7 -0
- package/src/types.ts +3 -0
- package/src/validators.ts +129 -0
- package/tsconfig.json +15 -0
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022 vandeurenglenn
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 vandeurenglenn
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export default class Factory {
|
|
2
|
+
#private;
|
|
3
|
+
constructor(state: {
|
|
4
|
+
contracts: any[];
|
|
5
|
+
totalContracts: number;
|
|
6
|
+
});
|
|
7
|
+
get state(): {
|
|
8
|
+
totalContracts: number;
|
|
9
|
+
contracts: any[];
|
|
10
|
+
};
|
|
11
|
+
get name(): string;
|
|
12
|
+
get contracts(): any[];
|
|
13
|
+
get totalContracts(): number;
|
|
14
|
+
isRegistered(address: any): boolean;
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @param {Address} address contract address to register
|
|
18
|
+
*/
|
|
19
|
+
registerContract(address: string): Promise<void>;
|
|
20
|
+
}
|
package/exports/factory.js
CHANGED
|
@@ -1,52 +1,51 @@
|
|
|
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
|
-
}
|
|
1
|
+
class Factory {
|
|
2
|
+
/**
|
|
3
|
+
* string
|
|
4
|
+
*/
|
|
5
|
+
#name = 'ArtOnlineContractFactory';
|
|
6
|
+
/**
|
|
7
|
+
* uint
|
|
8
|
+
*/
|
|
9
|
+
#totalContracts = 0;
|
|
10
|
+
/**
|
|
11
|
+
* Array => string
|
|
12
|
+
*/
|
|
13
|
+
#contracts = [];
|
|
14
|
+
constructor(state) {
|
|
15
|
+
if (state) {
|
|
16
|
+
this.#contracts = state.contracts;
|
|
17
|
+
this.#totalContracts = state.totalContracts;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
get state() {
|
|
21
|
+
return {
|
|
22
|
+
totalContracts: this.#totalContracts,
|
|
23
|
+
contracts: this.#contracts
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
get name() {
|
|
27
|
+
return this.#name;
|
|
28
|
+
}
|
|
29
|
+
get contracts() {
|
|
30
|
+
return [...this.#contracts];
|
|
31
|
+
}
|
|
32
|
+
get totalContracts() {
|
|
33
|
+
return this.#totalContracts;
|
|
34
|
+
}
|
|
35
|
+
isRegistered(address) {
|
|
36
|
+
return this.#contracts.includes(address);
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @param {Address} address contract address to register
|
|
41
|
+
*/
|
|
42
|
+
async registerContract(address) {
|
|
43
|
+
await msg.staticCall(address, 'hasRole', [msg.sender, 'OWNER']);
|
|
44
|
+
if (this.#contracts.includes(address))
|
|
45
|
+
throw new Error('already registered');
|
|
46
|
+
this.#totalContracts += 1;
|
|
47
|
+
this.#contracts.push(address);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export { Factory as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
type registry = {
|
|
2
|
+
name: {
|
|
3
|
+
address: address;
|
|
4
|
+
owner: address;
|
|
5
|
+
};
|
|
6
|
+
};
|
|
7
|
+
export default class NameService {
|
|
8
|
+
#private;
|
|
9
|
+
get name(): string;
|
|
10
|
+
get registry(): {};
|
|
11
|
+
get state(): {
|
|
12
|
+
owner: string;
|
|
13
|
+
registry: registry;
|
|
14
|
+
currency: string;
|
|
15
|
+
price: BigNumberish;
|
|
16
|
+
};
|
|
17
|
+
constructor(factoryAddress: address, currency: address, validatorAddress: address, price: BigNumberish, state: {
|
|
18
|
+
owner: address;
|
|
19
|
+
registry: registry;
|
|
20
|
+
currency: address;
|
|
21
|
+
price: BigNumberish;
|
|
22
|
+
});
|
|
23
|
+
changeOwner(owner: any): void;
|
|
24
|
+
changePrice(price: number): void;
|
|
25
|
+
changeCurrency(currency: any): void;
|
|
26
|
+
purchaseName(name: string | number, address: any): Promise<void>;
|
|
27
|
+
lookup(name: string | number): any;
|
|
28
|
+
transferOwnership(name: string | number, to: any): void;
|
|
29
|
+
changeAddress(name: string | number, address: any): void;
|
|
30
|
+
}
|
|
31
|
+
export {};
|
package/exports/name-service.js
CHANGED
|
@@ -1,106 +1,107 @@
|
|
|
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
|
-
|
|
1
|
+
class NameService {
|
|
2
|
+
/**
|
|
3
|
+
* string
|
|
4
|
+
*/
|
|
5
|
+
#name = 'ArtOnlineNameService';
|
|
6
|
+
/**
|
|
7
|
+
* string
|
|
8
|
+
*/
|
|
9
|
+
#owner;
|
|
10
|
+
/**
|
|
11
|
+
* number
|
|
12
|
+
*/
|
|
13
|
+
#price = 0;
|
|
14
|
+
/**
|
|
15
|
+
* Object => string
|
|
16
|
+
*/
|
|
17
|
+
#registry;
|
|
18
|
+
/**
|
|
19
|
+
* => string
|
|
20
|
+
*/
|
|
21
|
+
#currency;
|
|
22
|
+
get name() {
|
|
23
|
+
return this.#name;
|
|
24
|
+
}
|
|
25
|
+
get registry() {
|
|
26
|
+
return { ...this.#registry };
|
|
27
|
+
}
|
|
28
|
+
get state() {
|
|
29
|
+
return {
|
|
30
|
+
owner: this.#owner,
|
|
31
|
+
registry: this.#registry,
|
|
32
|
+
currency: this.#currency,
|
|
33
|
+
price: this.#price
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
// TODO: control with contract
|
|
37
|
+
constructor(factoryAddress, currency, validatorAddress, price, state) {
|
|
38
|
+
if (state) {
|
|
39
|
+
this.#owner = state.owner;
|
|
40
|
+
this.#registry = state.registry;
|
|
41
|
+
this.#currency = state.currency;
|
|
42
|
+
this.#price = state.price;
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
this.#owner = msg.sender;
|
|
46
|
+
this.#price = price;
|
|
47
|
+
this.#registry['ArtOnlineContractFactory'] = {
|
|
48
|
+
owner: msg.sender,
|
|
49
|
+
address: factoryAddress
|
|
50
|
+
};
|
|
51
|
+
this.#registry['ArtOnlineToken'] = {
|
|
52
|
+
owner: msg.sender,
|
|
53
|
+
address: currency
|
|
54
|
+
};
|
|
55
|
+
this.#registry['ArtOnlineValidators'] = {
|
|
56
|
+
owner: msg.sender,
|
|
57
|
+
address: validatorAddress
|
|
58
|
+
};
|
|
59
|
+
this.#currency = currency;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
changeOwner(owner) {
|
|
63
|
+
if (msg.sender !== this.#owner)
|
|
64
|
+
throw new Error('no owner');
|
|
65
|
+
this.#owner = owner;
|
|
66
|
+
}
|
|
67
|
+
changePrice(price) {
|
|
68
|
+
if (msg.sender !== this.#owner)
|
|
69
|
+
throw new Error('no owner');
|
|
70
|
+
this.#price = price;
|
|
71
|
+
}
|
|
72
|
+
changeCurrency(currency) {
|
|
73
|
+
if (msg.sender !== this.#owner)
|
|
74
|
+
throw new Error('no owner');
|
|
75
|
+
this.#currency = currency;
|
|
76
|
+
}
|
|
77
|
+
async purchaseName(name, address) {
|
|
78
|
+
const balance = await msg.call(this.#currency, 'balanceOf', [msg.sender]);
|
|
79
|
+
if (balance < this.#price)
|
|
80
|
+
throw new Error('price exceeds balance');
|
|
81
|
+
try {
|
|
82
|
+
await msg.call(this.#currency, 'transfer', [msg.sender, this.#owner, this.#price]);
|
|
83
|
+
}
|
|
84
|
+
catch (error) {
|
|
85
|
+
throw error;
|
|
86
|
+
}
|
|
87
|
+
this.#registry[name] = {
|
|
88
|
+
owner: msg.sender,
|
|
89
|
+
address
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
lookup(name) {
|
|
93
|
+
return this.#registry[name];
|
|
94
|
+
}
|
|
95
|
+
transferOwnership(name, to) {
|
|
96
|
+
if (msg.sender !== this.#registry[name].owner)
|
|
97
|
+
throw new Error('not a owner');
|
|
98
|
+
this.#registry[name].owner = to;
|
|
99
|
+
}
|
|
100
|
+
changeAddress(name, address) {
|
|
101
|
+
if (msg.sender !== this.#registry[name].owner)
|
|
102
|
+
throw new Error('not a owner');
|
|
103
|
+
this.#registry[name].address = address;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export { NameService as default };
|
package/exports/native-token.js
CHANGED
|
@@ -1,7 +1,205 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
class Roles {
|
|
2
|
+
/**
|
|
3
|
+
* Object => Array
|
|
4
|
+
*/
|
|
5
|
+
#roles = {
|
|
6
|
+
'OWNER': [],
|
|
7
|
+
'MINT': [],
|
|
8
|
+
'BURN': []
|
|
9
|
+
};
|
|
10
|
+
constructor(roles) {
|
|
11
|
+
// allow devs to set their own roles but always keep the default ones included
|
|
12
|
+
// also allows roles to be loaded from the stateStore
|
|
13
|
+
// carefull when including the roles make sure to add the owner
|
|
14
|
+
// because no roles are granted by default when using custom roles
|
|
15
|
+
if (roles) {
|
|
16
|
+
if (roles instanceof Object) {
|
|
17
|
+
this.#roles = { ...roles, ...this.#roles };
|
|
18
|
+
}
|
|
19
|
+
else {
|
|
20
|
+
throw new TypeError(`expected roles to be an object`);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
// no roles given so fallback to default to the msg sender
|
|
25
|
+
this.#grantRole(msg.sender, 'OWNER');
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
*/
|
|
31
|
+
get state() {
|
|
32
|
+
return { roles: this.roles };
|
|
33
|
+
}
|
|
34
|
+
get roles() {
|
|
35
|
+
return { ...this.#roles };
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @param {address} address
|
|
39
|
+
* @param {string} role
|
|
40
|
+
* @returns true | false
|
|
41
|
+
*/
|
|
42
|
+
hasRole(address, role) {
|
|
43
|
+
return this.#roles[role] ? this.#roles[role].includes(address) : false;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* @private
|
|
47
|
+
* @param {address} address address to grant the role to
|
|
48
|
+
* @param {string} role role to give
|
|
49
|
+
*/
|
|
50
|
+
#grantRole(address, role) {
|
|
51
|
+
if (this.hasRole(address, role))
|
|
52
|
+
throw new Error(`${role} role already granted for ${address}`);
|
|
53
|
+
this.#roles[role].push(address);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* remove role for address
|
|
57
|
+
* @private
|
|
58
|
+
* @param {address} address address to revoke role from
|
|
59
|
+
* @param {string} role role to evoke
|
|
60
|
+
*/
|
|
61
|
+
#revokeRole(address, role) {
|
|
62
|
+
if (!this.hasRole(address, role))
|
|
63
|
+
throw new Error(`${role} role already revoked for ${address}`);
|
|
64
|
+
if (role === 'OWNER' && this.#roles[role].length === 1)
|
|
65
|
+
throw new Error(`atleast one owner is needed!`);
|
|
66
|
+
this.#roles[role].splice(this.#roles[role].indexOf(address));
|
|
67
|
+
}
|
|
68
|
+
grantRole(address, role) {
|
|
69
|
+
if (!this.hasRole(address, 'OWNER'))
|
|
70
|
+
throw new Error('Not allowed');
|
|
71
|
+
this.#grantRole(address, role);
|
|
72
|
+
}
|
|
73
|
+
revokeRole(address, role) {
|
|
74
|
+
if (!this.hasRole(address, 'OWNER'))
|
|
75
|
+
throw new Error('Not allowed');
|
|
76
|
+
this.#revokeRole(address, role);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
class Token extends Roles {
|
|
81
|
+
/**
|
|
82
|
+
* string
|
|
83
|
+
*/
|
|
84
|
+
#name;
|
|
85
|
+
/**
|
|
86
|
+
* String
|
|
87
|
+
*/
|
|
88
|
+
#symbol;
|
|
89
|
+
/**
|
|
90
|
+
* uint
|
|
91
|
+
*/
|
|
92
|
+
#holders = 0;
|
|
93
|
+
/**
|
|
94
|
+
* Object => Object => uint
|
|
95
|
+
*/
|
|
96
|
+
#balances = {};
|
|
97
|
+
/**
|
|
98
|
+
* Object => Object => uint
|
|
99
|
+
*/
|
|
100
|
+
#approvals = {};
|
|
101
|
+
#decimals = 18;
|
|
102
|
+
#totalSupply = BigNumber.from(0);
|
|
103
|
+
// this.#privateField2 = 1
|
|
104
|
+
constructor(name, symbol, decimals = 18, state) {
|
|
105
|
+
if (!name)
|
|
106
|
+
throw new Error(`name undefined`);
|
|
107
|
+
if (!symbol)
|
|
108
|
+
throw new Error(`symbol undefined`);
|
|
109
|
+
super(state?.roles);
|
|
110
|
+
this.#name = name;
|
|
111
|
+
this.#symbol = symbol;
|
|
112
|
+
this.#decimals = decimals;
|
|
113
|
+
}
|
|
114
|
+
// enables snapshotting
|
|
115
|
+
// needs dev attention so nothing breaks after snapshot happens
|
|
116
|
+
// iow everything that is not static needs to be included in the stateObject
|
|
117
|
+
/**
|
|
118
|
+
* @return {Object} {holders, balances, ...}
|
|
119
|
+
*/
|
|
120
|
+
get state() {
|
|
121
|
+
return {
|
|
122
|
+
...super.state,
|
|
123
|
+
holders: this.holders,
|
|
124
|
+
balances: this.balances,
|
|
125
|
+
approvals: { ...this.#approvals },
|
|
126
|
+
totalSupply: this.totalSupply
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
get totalSupply() {
|
|
130
|
+
return this.#totalSupply;
|
|
131
|
+
}
|
|
132
|
+
get name() {
|
|
133
|
+
return this.#name;
|
|
134
|
+
}
|
|
135
|
+
get symbol() {
|
|
136
|
+
return this.#symbol;
|
|
137
|
+
}
|
|
138
|
+
get holders() {
|
|
139
|
+
return this.#holders;
|
|
140
|
+
}
|
|
141
|
+
get balances() {
|
|
142
|
+
return { ...this.#balances };
|
|
143
|
+
}
|
|
144
|
+
mint(to, amount) {
|
|
145
|
+
if (!this.hasRole(msg.sender, 'MINT'))
|
|
146
|
+
throw new Error('not allowed');
|
|
147
|
+
this.#totalSupply = this.#totalSupply.add(amount);
|
|
148
|
+
this.#increaseBalance(to, amount);
|
|
149
|
+
}
|
|
150
|
+
burn(from, amount) {
|
|
151
|
+
if (!this.hasRole(msg.sender, 'BURN'))
|
|
152
|
+
throw new Error('not allowed');
|
|
153
|
+
this.#totalSupply = this.#totalSupply.sub(amount);
|
|
154
|
+
this.#decreaseBalance(from, amount);
|
|
155
|
+
}
|
|
156
|
+
#beforeTransfer(from, to, amount) {
|
|
157
|
+
if (!this.#balances[from] || this.#balances[from] < amount)
|
|
158
|
+
throw new Error('amount exceeds balance');
|
|
159
|
+
}
|
|
160
|
+
#updateHolders(address, previousBalance) {
|
|
161
|
+
if (this.#balances[address].toHexString() === '0x00')
|
|
162
|
+
this.#holders -= 1;
|
|
163
|
+
else if (this.#balances[address].toHexString() !== '0x00' && previousBalance.toHexString() === '0x00')
|
|
164
|
+
this.#holders += 1;
|
|
165
|
+
}
|
|
166
|
+
#increaseBalance(address, amount) {
|
|
167
|
+
if (!this.#balances[address])
|
|
168
|
+
this.#balances[address] = BigNumber.from(0);
|
|
169
|
+
const previousBalance = this.#balances[address];
|
|
170
|
+
this.#balances[address] = this.#balances[address].add(amount);
|
|
171
|
+
this.#updateHolders(address, previousBalance);
|
|
172
|
+
}
|
|
173
|
+
#decreaseBalance(address, amount) {
|
|
174
|
+
const previousBalance = this.#balances[address];
|
|
175
|
+
this.#balances[address] = this.#balances[address].sub(amount);
|
|
176
|
+
this.#updateHolders(address, previousBalance);
|
|
177
|
+
}
|
|
178
|
+
balanceOf(address) {
|
|
179
|
+
return this.#balances[address];
|
|
180
|
+
}
|
|
181
|
+
setApproval(operator, amount) {
|
|
182
|
+
const owner = msg.sender;
|
|
183
|
+
if (!this.#approvals[owner])
|
|
184
|
+
this.#approvals[owner] = {};
|
|
185
|
+
this.#approvals[owner][operator] = amount;
|
|
186
|
+
}
|
|
187
|
+
approved(owner, operator, amount) {
|
|
188
|
+
return this.#approvals[owner][operator] === amount;
|
|
189
|
+
}
|
|
190
|
+
transfer(from, to, amount) {
|
|
191
|
+
// TODO: is BigNumber?
|
|
192
|
+
amount = BigNumber.from(amount);
|
|
193
|
+
this.#beforeTransfer(from, to, amount);
|
|
194
|
+
this.#decreaseBalance(from, amount);
|
|
195
|
+
this.#increaseBalance(to, amount);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
class ArtOnline extends Token {
|
|
200
|
+
constructor(state) {
|
|
201
|
+
super('ArtOnline', 'ART', 18, state);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
export { ArtOnline as default };
|