web3-proxy/web3_proxy/Cargo.toml

94 lines
3.5 KiB
TOML
Raw Normal View History

2022-05-05 22:07:09 +03:00
[package]
2022-08-06 08:46:33 +03:00
name = "web3_proxy"
version = "0.27.0"
2022-05-05 22:07:09 +03:00
edition = "2021"
2023-01-18 08:26:10 +03:00
default-run = "web3_proxy_cli"
2022-05-05 22:07:09 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-07-07 00:42:31 +03:00
[features]
default = ["connectinfo", "deadlock_detection"]
2022-07-07 00:42:31 +03:00
deadlock_detection = ["parking_lot/deadlock_detection"]
mimalloc = ["dep:mimalloc"]
tokio-console = ["dep:tokio-console", "dep:console-subscriber"]
2023-04-20 01:22:27 +03:00
rdkafka-src = ["rdkafka/cmake-build", "rdkafka/libz", "rdkafka/ssl", "rdkafka/zstd-pkg-config"]
connectinfo = []
2022-07-07 00:42:31 +03:00
2022-05-05 22:07:09 +03:00
[dependencies]
2022-09-15 20:57:24 +03:00
deferred-rate-limiter = { path = "../deferred-rate-limiter" }
2022-07-26 07:53:38 +03:00
entities = { path = "../entities" }
latency = { path = "../latency" }
2022-07-26 07:53:38 +03:00
migration = { path = "../migration" }
2023-05-15 20:48:59 +03:00
quick_cache_ttl = { path = "../quick_cache_ttl" }
2022-09-15 20:57:24 +03:00
redis-rate-limiter = { path = "../redis-rate-limiter" }
2022-11-12 09:11:58 +03:00
thread-fast-rng = { path = "../thread-fast-rng" }
2022-07-26 07:53:38 +03:00
2023-01-24 08:50:59 +03:00
# TODO: regex has several "perf" features that we might want to use
# TODO: make sure this uuid version matches sea-orm. PR to put this in their prelude
# TODO: import num_traits from sea-orm so we always have the same version
# TODO: import chrono from sea-orm so we always have the same version
# TODO: make sure this time version matches siwe. PR to put this in their prelude
2023-05-11 23:25:55 +03:00
anyhow = { version = "1.0.71", features = ["backtrace"] }
arc-swap = "1.6.0"
2023-01-12 02:19:21 +03:00
argh = "0.1.10"
2023-05-11 23:25:55 +03:00
axum = { version = "0.6.18", features = ["headers", "ws"] }
axum-client-ip = "0.4.1"
2023-04-05 22:30:52 +03:00
axum-macros = "0.3.7"
chrono = "0.4.24"
console-subscriber = { version = "*", optional = true }
2022-10-18 00:47:58 +03:00
counter = "0.5.7"
2022-05-05 22:07:09 +03:00
derive_more = "0.99.17"
2022-07-26 03:38:00 +03:00
dotenv = "0.15.0"
env_logger = "0.10.0"
2023-05-11 23:25:55 +03:00
ethers = { version = "2.0.4", default-features = false, features = ["rustls", "ws"] }
ewma = "0.1.1"
2022-05-17 20:24:10 +03:00
fdlimit = "0.2.1"
flume = "0.10.14"
2023-02-22 07:25:02 +03:00
fstrings = "0.2"
2023-04-05 22:30:52 +03:00
futures = { version = "0.3.28", features = ["thread-pool"] }
2023-05-14 01:00:24 +03:00
gethostname = "0.4.3"
2023-01-24 08:50:59 +03:00
glob = "0.3.1"
2023-05-11 23:25:55 +03:00
handlebars = "4.3.7"
2023-01-15 23:02:33 +03:00
hashbrown = { version = "0.13.2", features = ["serde"] }
2022-10-11 08:13:00 +03:00
hdrhistogram = "7.5.2"
hex_fmt = "0.3.0"
hostname = "0.3.1"
2023-02-25 11:47:16 +03:00
http = "0.2.9"
User Balance + Referral Logic (#44) * will implement balance topup endpoint * will quickly fix other PR reviews * merging from master * will finish up godmoe * will finish up login * added logic to top up balance (first iteration) * should implement additional columns soon (currency, amount, tx-hash), as well as a new table for spend * updated migrations, will account for spend next * get back to this later * will merge PR from stats-v2 * stats v2 rebased all my commits and squashed them down to one * cargo upgrade * added migrtation for spend in accounting table. will run test-deposit next * trying to get request from polygon * first iteration /user/balance/:tx_hash works, needs to add accepted tokens next * creating the referral code seems to work * will now check if spending enough credits will lead to both parties receiving credits * rpcstats takes care of accounting for spend data * removed track spend from table * Revert "removed track spend from table" This reverts commit a50802d6ae75f786864c5ec42d0ceb2cb27124ed. * Revert "rpcstats takes care of accounting for spend data" This reverts commit 1cec728bf241e4cfd24351134637ed81c1a5a10b. * removed rpc request table entity * updated referral code to use ulid s * credits used are aggregated * added a bunch of fields to referrer * added database logic whenever an aggregate stats is added. will have to iterate over this a couple times i think. go to (1) detecting accepted stables next, (2) fix influxdb bug and (3) start to write test * removed track spend as this will occur in the database * will first work on "balance", then referral. these should really be treated as two separate PRs (although already convoluted) * balance logic initial commit * breaking WIP, changing the RPC call logic functions * will start testing next * got rid of warnings & lint * will proceed with subtracting / adding to balance * added decimal points, balance tracking seems to work * will beautify code a bit * removed deprecated dependency, and added topic + deposit contract to app.yaml * brownie test suite does not rely on local contract files it pulls all from polygonscan * will continue with referral * should perhaps (in a future revision) recordhow much the referees got for free. marking referrals seems to work rn * user is upgraded to premium if they deposit more than 10$. we dont accept more than $10M in a single tx * will start PR, referral seems to be fine so far, perhaps up to some numbers that still may need tweaking * will start PR * removed rogue comments, cleaned up payments a bit * changes before PR * apply stats * added unique constraint * some refactoring such that the user file is not too bloated * compiling * progress with subusers, creating a table entry seems to work * good response type is there as well now, will work on getters from primary user and secondary user next * subuser logic also seems fine now * downgrade logic * fixed bug influxdb does not support different types in same query (which makes sense) * WIP temporary commit * merging with PR * Delete daemon.rs there are multiple daemons now, so this was moved to `proxyd` * will remove request clone to &mut * multiple request handles for payment * making requests still seem fine * removed redundant commented out bits * added deposit endpoint, added deposit amount and deposit user, untested yet * small bug with downgrade tier id * will add authorization so balance can be received for users * balance history should be set now too * will check balance over time again * subususer can see rpc key balance if admin or owner * stats also seems to work fine now with historical balance * things seem to be building and working * removed clone from OpenRequestHandle * removed influxdb from workspace members * changed config files * reran sea-orm generate entities, added a foreign key, should be proper now * removed contract from commit * made deposit contract optional * added topic in polygon dev * changed deposit contract to deposit factory contract * added selfrelation on user_tier * added payment required * changed chain id to u64 * add wss in polygon llamarpc * removed origin and method from the table * added onchain transactions naming (and forgot to add a migration before) * changed foreign key to be the referrer (id), not the code itself * forgot to add id as the target foreign key * WIP adding cache to update role * fixed merge conflicts --------- Co-authored-by: Bryan Stitt <bryan@llamanodes.com> Co-authored-by: Bryan Stitt <bryan@stitthappens.com>
2023-05-12 19:45:15 +03:00
influxdb2 = { git = "https://github.com/llamanodes/influxdb2", features = ["rustls"] }
influxdb2-structmap = { git = "https://github.com/llamanodes/influxdb2/"}
2023-04-05 22:30:52 +03:00
ipnet = "2.7.2"
2023-01-24 08:50:59 +03:00
itertools = "0.10.5"
listenfd = "1.0.1"
2022-11-12 11:24:32 +03:00
log = "0.4.17"
mimalloc = { version = "0.1.37", optional = true}
2022-07-11 22:16:18 +03:00
num = "0.4.0"
2022-09-24 10:04:11 +03:00
num-traits = "0.2.15"
once_cell = { version = "1.17.1" }
2023-05-11 23:25:55 +03:00
ordered-float = "3.7.0"
pagerduty-rs = { version = "0.1.6", default-features = false, features = ["async", "rustls", "sync"] }
2022-07-19 09:41:04 +03:00
parking_lot = { version = "0.12.1", features = ["arc_lock"] }
2023-02-03 00:44:57 +03:00
prettytable = "*"
2022-05-12 21:49:57 +03:00
proctitle = "0.1.1"
2023-05-18 23:36:35 +03:00
rdkafka = { version = "0.31.0" }
2023-05-11 23:25:55 +03:00
regex = "1.8.1"
2023-05-18 23:36:35 +03:00
reqwest = { version = "0.11.18", default-features = false, features = ["json", "tokio-rustls"] }
2023-03-03 04:39:50 +03:00
rmp-serde = "1.1.1"
2023-05-19 08:43:07 +03:00
sentry = { version = "0.31.1", default-features = false, features = ["backtrace", "contexts", "panic", "anyhow", "reqwest", "rustls", "log", "sentry-log"] }
2023-05-11 23:25:55 +03:00
serde = { version = "1.0.163", features = [] }
2023-04-20 07:09:17 +03:00
serde_json = { version = "1.0.96", default-features = false, features = ["alloc", "raw_value"] }
2023-04-05 22:30:52 +03:00
serde_prometheus = "0.2.2"
2023-01-24 08:50:59 +03:00
siwe = "0.5.0"
strum = { version = "0.24.1", features = ["derive"] }
2023-05-11 23:25:55 +03:00
time = "0.3.21"
tokio = { version = "1.28.1", features = ["full"] }
tokio-console = { version = "*", optional = true }
2023-05-11 23:25:55 +03:00
tokio-stream = { version = "0.1.14", features = ["sync"] }
tokio-uring = { version = "0.4.0", optional = true }
2023-05-18 23:36:35 +03:00
toml = "0.7.4"
2022-08-16 03:33:26 +03:00
tower = "0.4.13"
2023-02-25 11:47:16 +03:00
tower-http = { version = "0.4.0", features = ["cors", "sensitive-headers"] }
User Balance + Referral Logic (#44) * will implement balance topup endpoint * will quickly fix other PR reviews * merging from master * will finish up godmoe * will finish up login * added logic to top up balance (first iteration) * should implement additional columns soon (currency, amount, tx-hash), as well as a new table for spend * updated migrations, will account for spend next * get back to this later * will merge PR from stats-v2 * stats v2 rebased all my commits and squashed them down to one * cargo upgrade * added migrtation for spend in accounting table. will run test-deposit next * trying to get request from polygon * first iteration /user/balance/:tx_hash works, needs to add accepted tokens next * creating the referral code seems to work * will now check if spending enough credits will lead to both parties receiving credits * rpcstats takes care of accounting for spend data * removed track spend from table * Revert "removed track spend from table" This reverts commit a50802d6ae75f786864c5ec42d0ceb2cb27124ed. * Revert "rpcstats takes care of accounting for spend data" This reverts commit 1cec728bf241e4cfd24351134637ed81c1a5a10b. * removed rpc request table entity * updated referral code to use ulid s * credits used are aggregated * added a bunch of fields to referrer * added database logic whenever an aggregate stats is added. will have to iterate over this a couple times i think. go to (1) detecting accepted stables next, (2) fix influxdb bug and (3) start to write test * removed track spend as this will occur in the database * will first work on "balance", then referral. these should really be treated as two separate PRs (although already convoluted) * balance logic initial commit * breaking WIP, changing the RPC call logic functions * will start testing next * got rid of warnings & lint * will proceed with subtracting / adding to balance * added decimal points, balance tracking seems to work * will beautify code a bit * removed deprecated dependency, and added topic + deposit contract to app.yaml * brownie test suite does not rely on local contract files it pulls all from polygonscan * will continue with referral * should perhaps (in a future revision) recordhow much the referees got for free. marking referrals seems to work rn * user is upgraded to premium if they deposit more than 10$. we dont accept more than $10M in a single tx * will start PR, referral seems to be fine so far, perhaps up to some numbers that still may need tweaking * will start PR * removed rogue comments, cleaned up payments a bit * changes before PR * apply stats * added unique constraint * some refactoring such that the user file is not too bloated * compiling * progress with subusers, creating a table entry seems to work * good response type is there as well now, will work on getters from primary user and secondary user next * subuser logic also seems fine now * downgrade logic * fixed bug influxdb does not support different types in same query (which makes sense) * WIP temporary commit * merging with PR * Delete daemon.rs there are multiple daemons now, so this was moved to `proxyd` * will remove request clone to &mut * multiple request handles for payment * making requests still seem fine * removed redundant commented out bits * added deposit endpoint, added deposit amount and deposit user, untested yet * small bug with downgrade tier id * will add authorization so balance can be received for users * balance history should be set now too * will check balance over time again * subususer can see rpc key balance if admin or owner * stats also seems to work fine now with historical balance * things seem to be building and working * removed clone from OpenRequestHandle * removed influxdb from workspace members * changed config files * reran sea-orm generate entities, added a foreign key, should be proper now * removed contract from commit * made deposit contract optional * added topic in polygon dev * changed deposit contract to deposit factory contract * added selfrelation on user_tier * added payment required * changed chain id to u64 * add wss in polygon llamarpc * removed origin and method from the table * added onchain transactions naming (and forgot to add a migration before) * changed foreign key to be the referrer (id), not the code itself * forgot to add id as the target foreign key * WIP adding cache to update role * fixed merge conflicts --------- Co-authored-by: Bryan Stitt <bryan@llamanodes.com> Co-authored-by: Bryan Stitt <bryan@stitthappens.com>
2023-05-12 19:45:15 +03:00
ulid = { version = "1.0.0", features = ["uuid", "serde"] }
2022-09-09 00:01:36 +03:00
url = "2.3.1"
2023-05-18 23:36:35 +03:00
uuid = "1.3.3"