peycke commited on
Commit
652ff62
1 Parent(s): acd767c

update readme

Browse files
Files changed (1) hide show
  1. README.md +31 -3
README.md CHANGED
@@ -1,3 +1,31 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ The training dataset includes all addresses that had undertaken at least one borrow transaction on Aave v2 Ethereum or Compound v2 Ethereum any time between 7 May 2019 and 31 August 2023, inclusive (called the observation window).
5
+
6
+ Data Structure & Shape
7
+ There are almost 0.5 million observations with each representing a single borrow event. Therefore, all feature values are calculated as at the timestamp of a borrow event and represent the cumulative positions just before the borrow event's timestamp.
8
+
9
+ Given that the data is at the borrow transaction level, an address with 10 borrow events during the observation window will appear 10 times in the dataset with different feature values across the 10 borrow timestamps.
10
+
11
+ As an example, if address 0xa initiated the following transactions on Aave v2 Ethereum:
12
+
13
+ At block_0: deposit 100 ETH
14
+
15
+ At block_1: borrow 25 ETH
16
+
17
+ At block_3: repay 10 ETH
18
+
19
+ At block_4: borrow 10 ETH
20
+
21
+ then 0xa will appear twice in the dataset as follows:
22
+
23
+ At block_1: all feature values will be calculated using all Ethereum and wallet transactions up to block_0, i.e., excluding the borrow event and other transactions at block_1
24
+
25
+ At block_4: all feature values will be calculated using all Ethereum and wallet transactions up to block_3, i.e., excluding the borrow event and other transactions at block_4
26
+
27
+ The dataset has 79 features in total, including the target label, transaction block number, transaction timestamp, and ETH address of the borrower.
28
+
29
+ Features
30
+ Other than counts related features, all feature values are denominated in ETH. All price conversions of the underlying tokens to ETH were done with the applicable rates as obtained from Transpose, Coinpaprika, CoinGecko, and Compound and Aave's price feeds at the respective event timestamps.
31
+