Skip to content

Commit 90ed01a

Browse files
authored
Merge pull request #317 from augustine0956/feature/tax-withholding
Feature/tax withholding
2 parents 734a0b1 + f32ab0d commit 90ed01a

18,664 files changed

Lines changed: 2864322 additions & 186 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"_format": "hh-sol-dbg-1",
3+
"buildInfo": "..\\..\\..\\..\\build-info\\2c22078101a0fddaccc7af47184821bc.json"
4+
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"_format": "hh-sol-artifact-1",
3+
"contractName": "Ownable",
4+
"sourceName": "@openzeppelin/contracts/access/Ownable.sol",
5+
"abi": [
6+
{
7+
"anonymous": false,
8+
"inputs": [
9+
{
10+
"indexed": true,
11+
"internalType": "address",
12+
"name": "previousOwner",
13+
"type": "address"
14+
},
15+
{
16+
"indexed": true,
17+
"internalType": "address",
18+
"name": "newOwner",
19+
"type": "address"
20+
}
21+
],
22+
"name": "OwnershipTransferred",
23+
"type": "event"
24+
},
25+
{
26+
"inputs": [],
27+
"name": "owner",
28+
"outputs": [
29+
{
30+
"internalType": "address",
31+
"name": "",
32+
"type": "address"
33+
}
34+
],
35+
"stateMutability": "view",
36+
"type": "function"
37+
},
38+
{
39+
"inputs": [],
40+
"name": "renounceOwnership",
41+
"outputs": [],
42+
"stateMutability": "nonpayable",
43+
"type": "function"
44+
},
45+
{
46+
"inputs": [
47+
{
48+
"internalType": "address",
49+
"name": "newOwner",
50+
"type": "address"
51+
}
52+
],
53+
"name": "transferOwnership",
54+
"outputs": [],
55+
"stateMutability": "nonpayable",
56+
"type": "function"
57+
}
58+
],
59+
"bytecode": "0x",
60+
"deployedBytecode": "0x",
61+
"linkReferences": {},
62+
"deployedLinkReferences": {}
63+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"_format": "hh-sol-dbg-1",
3+
"buildInfo": "..\\..\\..\\..\\build-info\\2c22078101a0fddaccc7af47184821bc.json"
4+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"_format": "hh-sol-artifact-1",
3+
"contractName": "ReentrancyGuard",
4+
"sourceName": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
5+
"abi": [],
6+
"bytecode": "0x",
7+
"deployedBytecode": "0x",
8+
"linkReferences": {},
9+
"deployedLinkReferences": {}
10+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"_format": "hh-sol-dbg-1",
3+
"buildInfo": "..\\..\\..\\..\\..\\build-info\\2c22078101a0fddaccc7af47184821bc.json"
4+
}

contracts/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json

Lines changed: 297 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"_format": "hh-sol-dbg-1",
3+
"buildInfo": "..\\..\\..\\..\\..\\build-info\\2c22078101a0fddaccc7af47184821bc.json"
4+
}
Lines changed: 194 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
{
2+
"_format": "hh-sol-artifact-1",
3+
"contractName": "IERC20",
4+
"sourceName": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
5+
"abi": [
6+
{
7+
"anonymous": false,
8+
"inputs": [
9+
{
10+
"indexed": true,
11+
"internalType": "address",
12+
"name": "owner",
13+
"type": "address"
14+
},
15+
{
16+
"indexed": true,
17+
"internalType": "address",
18+
"name": "spender",
19+
"type": "address"
20+
},
21+
{
22+
"indexed": false,
23+
"internalType": "uint256",
24+
"name": "value",
25+
"type": "uint256"
26+
}
27+
],
28+
"name": "Approval",
29+
"type": "event"
30+
},
31+
{
32+
"anonymous": false,
33+
"inputs": [
34+
{
35+
"indexed": true,
36+
"internalType": "address",
37+
"name": "from",
38+
"type": "address"
39+
},
40+
{
41+
"indexed": true,
42+
"internalType": "address",
43+
"name": "to",
44+
"type": "address"
45+
},
46+
{
47+
"indexed": false,
48+
"internalType": "uint256",
49+
"name": "value",
50+
"type": "uint256"
51+
}
52+
],
53+
"name": "Transfer",
54+
"type": "event"
55+
},
56+
{
57+
"inputs": [
58+
{
59+
"internalType": "address",
60+
"name": "owner",
61+
"type": "address"
62+
},
63+
{
64+
"internalType": "address",
65+
"name": "spender",
66+
"type": "address"
67+
}
68+
],
69+
"name": "allowance",
70+
"outputs": [
71+
{
72+
"internalType": "uint256",
73+
"name": "",
74+
"type": "uint256"
75+
}
76+
],
77+
"stateMutability": "view",
78+
"type": "function"
79+
},
80+
{
81+
"inputs": [
82+
{
83+
"internalType": "address",
84+
"name": "spender",
85+
"type": "address"
86+
},
87+
{
88+
"internalType": "uint256",
89+
"name": "amount",
90+
"type": "uint256"
91+
}
92+
],
93+
"name": "approve",
94+
"outputs": [
95+
{
96+
"internalType": "bool",
97+
"name": "",
98+
"type": "bool"
99+
}
100+
],
101+
"stateMutability": "nonpayable",
102+
"type": "function"
103+
},
104+
{
105+
"inputs": [
106+
{
107+
"internalType": "address",
108+
"name": "account",
109+
"type": "address"
110+
}
111+
],
112+
"name": "balanceOf",
113+
"outputs": [
114+
{
115+
"internalType": "uint256",
116+
"name": "",
117+
"type": "uint256"
118+
}
119+
],
120+
"stateMutability": "view",
121+
"type": "function"
122+
},
123+
{
124+
"inputs": [],
125+
"name": "totalSupply",
126+
"outputs": [
127+
{
128+
"internalType": "uint256",
129+
"name": "",
130+
"type": "uint256"
131+
}
132+
],
133+
"stateMutability": "view",
134+
"type": "function"
135+
},
136+
{
137+
"inputs": [
138+
{
139+
"internalType": "address",
140+
"name": "to",
141+
"type": "address"
142+
},
143+
{
144+
"internalType": "uint256",
145+
"name": "amount",
146+
"type": "uint256"
147+
}
148+
],
149+
"name": "transfer",
150+
"outputs": [
151+
{
152+
"internalType": "bool",
153+
"name": "",
154+
"type": "bool"
155+
}
156+
],
157+
"stateMutability": "nonpayable",
158+
"type": "function"
159+
},
160+
{
161+
"inputs": [
162+
{
163+
"internalType": "address",
164+
"name": "from",
165+
"type": "address"
166+
},
167+
{
168+
"internalType": "address",
169+
"name": "to",
170+
"type": "address"
171+
},
172+
{
173+
"internalType": "uint256",
174+
"name": "amount",
175+
"type": "uint256"
176+
}
177+
],
178+
"name": "transferFrom",
179+
"outputs": [
180+
{
181+
"internalType": "bool",
182+
"name": "",
183+
"type": "bool"
184+
}
185+
],
186+
"stateMutability": "nonpayable",
187+
"type": "function"
188+
}
189+
],
190+
"bytecode": "0x",
191+
"deployedBytecode": "0x",
192+
"linkReferences": {},
193+
"deployedLinkReferences": {}
194+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"_format": "hh-sol-dbg-1",
3+
"buildInfo": "..\\..\\..\\..\\..\\..\\build-info\\2c22078101a0fddaccc7af47184821bc.json"
4+
}

0 commit comments

Comments
 (0)