Code Reference¶
Class for accessing PancakeSwap Lottery smart-contract information.
Source code in pancakeswap_lottery/lottery.py
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 |
|
__init__(provider='https://bsc-dataseed.binance.org:443')
¶
Initialize the object
Attributes:
Name | Type | Description |
---|---|---|
provider |
str
|
Web3 HTTPProvider. Defaults to https://bsc-dataseed.binance.org:443 |
Examples:
lottery = Lottery()
Source code in pancakeswap_lottery/lottery.py
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 |
|
get_allocation()
¶
Get prize pool allocation (percent)
Examples:
>>> lottery.get_allocation()
{'1': 50, '2': 20, '3': 10}
Source code in pancakeswap_lottery/lottery.py
246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
|
get_balance_of(address)
¶
Get total number of tickets bought by a given address
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address |
str
|
BSC address |
required |
Examples:
>>> lottery.get_balance_of("0xc13456A34305e9265E907F70f76B1BA6E2055c8B")
2673
Source code in pancakeswap_lottery/lottery.py
279 280 281 282 283 284 285 286 287 288 289 |
|
get_cake()
¶
Get CAKE contract address
Examples:
>>> lottery.get_cake()
0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82
Source code in pancakeswap_lottery/lottery.py
261 262 263 264 265 266 267 268 |
|
get_drawed()
¶
Check if current lottery round is drawed
Examples:
>>> lottery.get_drawed()
False
Source code in pancakeswap_lottery/lottery.py
73 74 75 76 77 78 79 80 |
|
get_drawing_phase()
¶
Get current lottery round drawing phase
Examples:
>>> lottery.get_drawing_phase()
False
Source code in pancakeswap_lottery/lottery.py
82 83 84 85 86 87 88 89 |
|
get_history_amount(issue_index)
¶
Get numbers of tickets matched
Parameters:
Name | Type | Description | Default |
---|---|---|---|
issue_index |
int
|
Lottery round |
required |
Examples:
>>> lottery.get_history_amount(432)
{'4': 1, '3': 34, '2': 718}
Source code in pancakeswap_lottery/lottery.py
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 |
|
get_history_numbers(issue_index)
¶
Get winning numbers of lottery round
Parameters:
Name | Type | Description | Default |
---|---|---|---|
issue_index |
int
|
Lottery round |
required |
Examples:
>>> lottery.get_history_numbers(432)
[2, 13, 7, 3]
Source code in pancakeswap_lottery/lottery.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
|
get_issue_index()
¶
Get current lottery round id
Examples:
>>> lottery.get_issue_index()
435
Source code in pancakeswap_lottery/lottery.py
180 181 182 183 184 185 186 187 |
|
get_last_timestamp(epoch=False)
¶
Last updated (timestamp)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
epoch |
bool
|
Return as epoch timestamp? |
False
|
Examples:
>>> lottery.get_last_timestamp(epoch=False)
2021-03-27 11:38:49
Source code in pancakeswap_lottery/lottery.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
|
get_lotteryNFT()
¶
Get PLT-token contract address
Examples:
>>> lottery.get_lotteryNFT()
0x5e74094Cd416f55179DBd0E45b1a8ED030e396A1
Source code in pancakeswap_lottery/lottery.py
270 271 272 273 274 275 276 277 |
|
get_lottery_date(issue_index)
¶
Get date and time of lottery round
Parameters:
Name | Type | Description | Default |
---|---|---|---|
issue_index |
int
|
Lottery round |
required |
Examples:
>>> lottery.get_lottery_date(432)
2021-03-26 02:00:00+00:00
Source code in pancakeswap_lottery/lottery.py
59 60 61 62 63 64 65 66 67 68 69 70 71 |
|
get_lottery_numbers(tokenid)
¶
Get lottery numbers for a given ticket
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tokenid |
int
|
Lottery ticket id |
required |
Examples:
>>> lottery.get_lottery_numbers(1328060)
[11, 5, 14, 6]
Source code in pancakeswap_lottery/lottery.py
110 111 112 113 114 115 116 117 118 119 120 |
|
get_matching_reward_amount(issue_index, matching_num)
¶
Get number of tickets matched a specified number
Parameters:
Name | Type | Description | Default |
---|---|---|---|
issue_index |
int
|
Lottery round |
required |
matching_num |
int
|
Number to match |
required |
Examples:
>>> lottery.get_matching_reward_amount(432, 3)
34
Source code in pancakeswap_lottery/lottery.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
|
get_max_number()
¶
Get max number
Examples:
>>> lottery.get_max_number()
14
Source code in pancakeswap_lottery/lottery.py
206 207 208 209 210 211 212 213 |
|
get_min_price()
¶
Get current price of 1 ticket
Examples:
>>> lottery.get_min_price()
1
Source code in pancakeswap_lottery/lottery.py
215 216 217 218 219 220 221 222 223 224 |
|
get_reward_view(tokenid)
¶
Get rewards for a given ticket
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tokenid |
int
|
Lottery ticket id |
required |
Examples:
>>> lottery.get_reward_view(1328060)
0
Source code in pancakeswap_lottery/lottery.py
122 123 124 125 126 127 128 129 130 131 132 |
|
get_total_addresses()
¶
Get total addresses
Examples:
>>> lottery.get_total_addresses()
200
Source code in pancakeswap_lottery/lottery.py
226 227 228 229 230 231 232 233 |
|
get_total_amount()
¶
Get total pot (CAKE) of current lottery round
Examples:
>>> lottery.get_total_amount()
34977.25
Source code in pancakeswap_lottery/lottery.py
235 236 237 238 239 240 241 242 243 244 |
|
get_total_rewards(issue_index)
¶
Get total rewards of lottery round
Parameters:
Name | Type | Description | Default |
---|---|---|---|
issue_index |
int
|
Lottery round |
required |
Examples:
>>> lottery.get_total_rewards(432)
51384.125
Source code in pancakeswap_lottery/lottery.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|