web3-proxy/entities/src/revert_log.rs

46 lines
1.2 KiB
Rust
Raw Normal View History

//! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
2022-09-24 03:14:35 +03:00
use super::sea_orm_active_enums::Method;
2022-12-14 05:13:23 +03:00
use crate::serialization;
2022-09-24 03:14:35 +03:00
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};
2022-10-25 06:41:59 +03:00
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
2022-11-01 21:54:39 +03:00
#[sea_orm(table_name = "revert_log")]
2022-09-24 03:14:35 +03:00
pub struct Model {
#[sea_orm(primary_key)]
pub id: u64,
2022-10-27 03:12:42 +03:00
pub rpc_key_id: u64,
2022-09-24 03:14:35 +03:00
pub timestamp: DateTimeUtc,
pub method: Method,
#[sea_orm(column_type = "Binary(BlobSize::Blob(Some(20)))")]
More balance tests (#182) * fix popularity contest * more info in the Debug for Web3Rpc * add frontend_requests and cache_misses to the Balance query * add more to balance and stats flushing and improved test coverage * it compiles * deserializer for Ulid to Uuid I think a wrapper type on Ulid that implements sea_orm::Value is probably better * rename variable to match struct name * add deserializer for Address -> Vec<u8> * sql sum returns a Decimal. need to convert to u64 * assert more * one log and assert more * log more * use a helper to get the user's rpc provider * this should be 2 now that we have a public and authed call * this should be zero. the public has the cache miss * instrument cu calcs * trace the value we took, not the default that replaced it * move usd_per_chain into config * remove some extra logging * use Arc::into_inner to maybe avoid a race * off by 1 * pass paid credits used instead of returning it this lets us use it to write to our user balance cache first. importantly, this keeps us from holding a write lock while writing to mysql * no cache misses expected in this test * actually check the admin * put the balance checks back now that the rest of the test works * archive request is being set incorrectly * wow howd we manage flipping the greater than sign on archive depth * move latest_balance and premium_credits_used to before any stats are emitted * lint * and build undoes the linting. fun i didnt even want to lint them in the first place, so this is fine * missed incrementing total_spent when not incrementing total_spent_paid_credits * use the credits on self * use the credits on self (pt 2) * fix type for 10 cu query * convert the requestmetadata on the other side of the channel * logs * viewing stats is allowed even without a balance * move paid_credits_used to AuthorizationChecks * wip * test_sum_credits_used finally passes * UserBalanceCache::get_or_insert * re-enable rpc_secret_key_cache * move invalidate to a helper function and always call it **after** the db is commited * fix PartialEq and Eq on RpcSecretKey * cargo upgrade
2023-07-12 10:35:07 +03:00
#[serde(
serialize_with = "serialization::vec_as_address",
deserialize_with = "serialization::address_to_vec"
)]
2022-09-24 03:14:35 +03:00
pub to: Vec<u8>,
2022-09-24 10:03:29 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub call_data: Option<String>,
2022-10-26 00:10:05 +03:00
pub chain_id: u64,
2022-09-24 03:14:35 +03:00
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
#[sea_orm(
2022-11-01 21:54:39 +03:00
belongs_to = "super::rpc_key::Entity",
2022-10-27 03:12:42 +03:00
from = "Column::RpcKeyId",
2022-11-01 21:54:39 +03:00
to = "super::rpc_key::Column::Id",
2022-09-24 03:14:35 +03:00
on_update = "NoAction",
on_delete = "NoAction"
)]
2022-11-01 21:54:39 +03:00
RpcKey,
2022-09-24 03:14:35 +03:00
}
2022-11-01 21:54:39 +03:00
impl Related<super::rpc_key::Entity> for Entity {
2022-09-24 03:14:35 +03:00
fn to() -> RelationDef {
2022-11-01 21:54:39 +03:00
Relation::RpcKey.def()
2022-09-24 03:14:35 +03:00
}
}
impl ActiveModelBehavior for ActiveModel {}