From 6e25abda3d2a6559d2d099c08a78da7cff059c3b Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Fri, 13 Dec 2024 11:14:31 -0800 Subject: [PATCH 01/16] use static block rates for polling --- src/utils/calculateBlockRate.ts | 43 ++++++--------------------------- 1 file changed, 8 insertions(+), 35 deletions(-) diff --git a/src/utils/calculateBlockRate.ts b/src/utils/calculateBlockRate.ts index 9f053863..21a3135f 100644 --- a/src/utils/calculateBlockRate.ts +++ b/src/utils/calculateBlockRate.ts @@ -1,44 +1,17 @@ -import { hexToNumber, numberToHex } from 'viem' -import { arbitrum, mainnet } from 'viem/chains' +import { arbitrum, base, mainnet } from 'viem/chains' import { Context } from '@processor' -let lastRateFrom = 0 -let lastResult = 0 - const blockRates: Record = { - [mainnet.id]: 12, - [arbitrum.id]: 0.26, + [mainnet.id]: 12.04, + [arbitrum.id]: 0.25, + [base.id]: 2, } export const calculateBlockRate = async (ctx: Context) => { - if (ctx.isHead && blockRates[ctx.chain.id]) { - return blockRates[ctx.chain.id] - } - const lastBlockNumber = ctx.blocks[ctx.blocks.length - 1].header.height - const rateTestRange = 100_000 - const rateFrom = Math.max( - 1, - Math.floor(lastBlockNumber / rateTestRange) * rateTestRange - rateTestRange, - ) - if (rateFrom === lastRateFrom) { - return lastResult + const rate = blockRates[ctx.chain.id] + if (rate) { + return rate } - const rateTo = Math.min(rateFrom + rateTestRange, lastBlockNumber) - const [rateBlockFrom, rateBlockTo] = (await ctx._chain.client.batchCall([ - { - method: 'eth_getBlockByNumber', - params: [numberToHex(rateFrom), false], - }, - { - method: 'eth_getBlockByNumber', - params: [numberToHex(rateTo), false], - }, - ])) as { timestamp: `0x${string}` }[] - - const seconds = - hexToNumber(rateBlockTo.timestamp) - hexToNumber(rateBlockFrom.timestamp) - const result = seconds / rateTestRange - lastResult = result - return result + throw new Error('No block rate found') } From 3a8e65a5e3b404255857eb1620fc0a17d0673cca Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Sat, 14 Dec 2024 11:38:53 -0800 Subject: [PATCH 02/16] delete erc20-rebasing and create the entities on the otoken processors instead - erc20-rebasing got too complicated due to all the nuance needed for tracking otokens - while we used to track other rebasing tokens - we no longer do, so it doesn't make sense to keep it --- ...79147598-Data.js => 1734140116447-Data.js} | 14 +- schema.graphql | 5 +- src/base/erc20.ts | 29 -- src/base/super-oeth-b.ts | 2 + src/mainnet/processors/erc20s.ts | 43 +- src/model/generated/erc20Balance.model.ts | 3 - src/model/generated/erc20Holder.model.ts | 3 - src/model/generated/erc20State.model.ts | 3 - src/model/generated/oToken.model.ts | 3 + src/model/generated/oTokenAddress.model.ts | 3 + src/oeth/processors/oeth.ts | 2 + src/ousd/processors/erc20s.ts | 46 +- src/ousd/processors/ousd/ousd.ts | 4 +- src/templates/erc20/erc20-rebasing.ts | 479 ------------------ src/templates/erc20/erc20.graphql | 3 - src/templates/erc20/index.ts | 1 - src/templates/otoken/otoken.graphql | 2 + src/templates/otoken/otoken.ts | 123 ++++- src/templates/otoken/utils.ts | 9 +- src/validation/validate.ts | 25 +- 20 files changed, 162 insertions(+), 640 deletions(-) rename db/migrations/{1733979147598-Data.js => 1734140116447-Data.js} (99%) delete mode 100644 src/templates/erc20/erc20-rebasing.ts diff --git a/db/migrations/1733979147598-Data.js b/db/migrations/1734140116447-Data.js similarity index 99% rename from db/migrations/1733979147598-Data.js rename to db/migrations/1734140116447-Data.js index 9221be13..6d0d19c5 100644 --- a/db/migrations/1733979147598-Data.js +++ b/db/migrations/1734140116447-Data.js @@ -1,5 +1,5 @@ -module.exports = class Data1733979147598 { - name = 'Data1733979147598' +module.exports = class Data1734140116447 { + name = 'Data1734140116447' async up(db) { await db.query(`CREATE TABLE "exchange_rate" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "pair" text NOT NULL, "base" text NOT NULL, "quote" text NOT NULL, "rate" numeric NOT NULL, CONSTRAINT "PK_5c5d27d2b900ef6cdeef0398472" PRIMARY KEY ("id"))`) @@ -92,7 +92,7 @@ module.exports = class Data1733979147598 { await db.query(`CREATE INDEX "IDX_1ada02a88b8355495e0917b49b" ON "transaction_details" ("block_number") `) await db.query(`CREATE INDEX "IDX_81a859fb3a14a34f194e1d8606" ON "transaction_details" ("from") `) await db.query(`CREATE INDEX "IDX_ae3e0f0414a1deb6e4840e2e44" ON "transaction_details" ("to") `) - await db.query(`CREATE TABLE "o_token" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "otoken" text NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "total_supply" numeric NOT NULL, "rebasing_supply" numeric NOT NULL, "non_rebasing_supply" numeric NOT NULL, CONSTRAINT "PK_4450ef96d5e51ef55bc8ea0b53e" PRIMARY KEY ("id"))`) + await db.query(`CREATE TABLE "o_token" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "otoken" text NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "total_supply" numeric NOT NULL, "rebasing_supply" numeric NOT NULL, "non_rebasing_supply" numeric NOT NULL, "holder_count" integer NOT NULL, CONSTRAINT "PK_4450ef96d5e51ef55bc8ea0b53e" PRIMARY KEY ("id"))`) await db.query(`CREATE INDEX "IDX_1da06ba7d2c0a02d01d1b7a6c0" ON "o_token" ("chain_id") `) await db.query(`CREATE INDEX "IDX_0851d95d178f682d279a04ebf9" ON "o_token" ("otoken") `) await db.query(`CREATE INDEX "IDX_7889d6ce061da066df89309e51" ON "o_token" ("timestamp") `) @@ -107,7 +107,7 @@ module.exports = class Data1733979147598 { await db.query(`CREATE INDEX "IDX_2f1457755464ec5951d1e96542" ON "o_token_history" ("address_id") `) await db.query(`CREATE INDEX "IDX_42142d191ea0408fb511f9f576" ON "o_token_history" ("block_number") `) await db.query(`CREATE INDEX "IDX_f87d86cfca9ef211ba1b18d2bc" ON "o_token_history" ("tx_hash") `) - await db.query(`CREATE TABLE "o_token_address" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "otoken" text NOT NULL, "address" text NOT NULL, "is_contract" boolean NOT NULL, "rebasing_option" character varying(21) NOT NULL, "balance" numeric NOT NULL, "earned" numeric NOT NULL, "credits" numeric NOT NULL, "delegated_to" text, "last_updated" TIMESTAMP WITH TIME ZONE NOT NULL, CONSTRAINT "PK_5d5d2b6f8a94da6ed63aac85194" PRIMARY KEY ("id"))`) + await db.query(`CREATE TABLE "o_token_address" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "otoken" text NOT NULL, "address" text NOT NULL, "is_contract" boolean NOT NULL, "rebasing_option" character varying(21) NOT NULL, "balance" numeric NOT NULL, "earned" numeric NOT NULL, "credits" numeric NOT NULL, "delegated_to" text, "block_number" integer NOT NULL, "last_updated" TIMESTAMP WITH TIME ZONE NOT NULL, CONSTRAINT "PK_5d5d2b6f8a94da6ed63aac85194" PRIMARY KEY ("id"))`) await db.query(`CREATE INDEX "IDX_7cbc465ce1e9ae06dfe3a8c625" ON "o_token_address" ("chain_id") `) await db.query(`CREATE INDEX "IDX_5342c499e930e396bade7faeb6" ON "o_token_address" ("otoken") `) await db.query(`CREATE INDEX "IDX_75c7d29bf71b393e99c4407885" ON "o_token_address" ("address") `) @@ -199,15 +199,15 @@ module.exports = class Data1733979147598 { await db.query(`CREATE TABLE "erc20" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "address" text NOT NULL, "name" text NOT NULL, "decimals" integer NOT NULL, "symbol" text NOT NULL, CONSTRAINT "PK_8d43ce15401ba044c55a72a8ceb" PRIMARY KEY ("id"))`) await db.query(`CREATE INDEX "IDX_905ff854e6782fc32dc4268a25" ON "erc20" ("chain_id") `) await db.query(`CREATE INDEX "IDX_40fd11c1a0d0f2562824894e85" ON "erc20" ("address") `) - await db.query(`CREATE TABLE "erc20_holder" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "address" text NOT NULL, "account" text NOT NULL, "balance" numeric NOT NULL, "rebasing_credits" numeric, CONSTRAINT "PK_3adce7edbac4bcb03c662c3a1ac" PRIMARY KEY ("id"))`) + await db.query(`CREATE TABLE "erc20_holder" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "address" text NOT NULL, "account" text NOT NULL, "balance" numeric NOT NULL, CONSTRAINT "PK_3adce7edbac4bcb03c662c3a1ac" PRIMARY KEY ("id"))`) await db.query(`CREATE INDEX "IDX_51b9e7c44702ef3a6f05d3702e" ON "erc20_holder" ("chain_id") `) await db.query(`CREATE INDEX "IDX_98f753777a7d77ff8950aee1c7" ON "erc20_holder" ("address") `) await db.query(`CREATE INDEX "IDX_875601f8f24f9082f1c3551406" ON "erc20_holder" ("account") `) - await db.query(`CREATE TABLE "erc20_state" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "address" text NOT NULL, "total_supply" numeric NOT NULL, "holder_count" integer NOT NULL, "rebasing_credits_per_token" numeric, CONSTRAINT "PK_eac1124b07bbdedafd4fff2f7b7" PRIMARY KEY ("id"))`) + await db.query(`CREATE TABLE "erc20_state" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "address" text NOT NULL, "total_supply" numeric NOT NULL, "holder_count" integer NOT NULL, CONSTRAINT "PK_eac1124b07bbdedafd4fff2f7b7" PRIMARY KEY ("id"))`) await db.query(`CREATE INDEX "IDX_2b69abb250c647c7a4b5a5a715" ON "erc20_state" ("chain_id") `) await db.query(`CREATE INDEX "IDX_c3d08eb2dafe4b5b188924d835" ON "erc20_state" ("timestamp") `) await db.query(`CREATE INDEX "IDX_29e8edc6ba8cc37c0c16ff0baf" ON "erc20_state" ("block_number") `) - await db.query(`CREATE TABLE "erc20_balance" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "address" text NOT NULL, "account" text NOT NULL, "balance" numeric NOT NULL, "rebasing_credits" numeric, CONSTRAINT "PK_069b6549e7a9938cc89f32063a6" PRIMARY KEY ("id"))`) + await db.query(`CREATE TABLE "erc20_balance" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "address" text NOT NULL, "account" text NOT NULL, "balance" numeric NOT NULL, CONSTRAINT "PK_069b6549e7a9938cc89f32063a6" PRIMARY KEY ("id"))`) await db.query(`CREATE INDEX "IDX_bb6a884e702f2887037d5a7eec" ON "erc20_balance" ("chain_id") `) await db.query(`CREATE INDEX "IDX_c9fbe21a3411d93ea586af2a4c" ON "erc20_balance" ("timestamp") `) await db.query(`CREATE INDEX "IDX_d1f50dc39003331b76fad8a640" ON "erc20_balance" ("block_number") `) diff --git a/schema.graphql b/schema.graphql index b9f94c84..621f2827 100644 --- a/schema.graphql +++ b/schema.graphql @@ -325,6 +325,7 @@ type OToken @entity { totalSupply: BigInt! rebasingSupply: BigInt! nonRebasingSupply: BigInt! + holderCount: Int! } type OTokenAsset @entity { @@ -346,6 +347,7 @@ type OTokenAddress @entity { earned: BigInt! credits: BigInt! delegatedTo: String + blockNumber: Int! lastUpdated: DateTime! history: [OTokenHistory!]! @derivedFrom(field: "address") } @@ -651,7 +653,6 @@ type ERC20Holder @entity { address: String! @index account: String! @index balance: BigInt! - rebasingCredits: BigInt # Only used for rebasing tokens } type ERC20State @entity { @@ -662,7 +663,6 @@ type ERC20State @entity { address: String! totalSupply: BigInt! holderCount: Int! - rebasingCreditsPerToken: BigInt # Only used for rebasing tokens } type ERC20Balance @entity { @@ -673,7 +673,6 @@ type ERC20Balance @entity { address: String! @index account: String! @index balance: BigInt! - rebasingCredits: BigInt # Only used for rebasing tokens } type ERC20Transfer @entity { diff --git a/src/base/erc20.ts b/src/base/erc20.ts index 969146ea..239ec834 100644 --- a/src/base/erc20.ts +++ b/src/base/erc20.ts @@ -1,10 +1,7 @@ -import * as otoken from '@abi/otoken' import { createERC20EventTracker } from '@templates/erc20/erc20-event' import { createERC20PollingTracker } from '@templates/erc20/erc20-polling' -import { createRebasingERC20Tracker, getErc20RebasingParams } from '@templates/erc20/erc20-rebasing' import { OGN_BASE_ADDRESS } from '@utils/addresses' import { baseAddresses } from '@utils/addresses-base' -import { logFilter } from '@utils/logFilter' export const baseERC20s = [ // OGN @@ -12,32 +9,6 @@ export const baseERC20s = [ from: 15676145, address: OGN_BASE_ADDRESS, }), - // superOETHb - createRebasingERC20Tracker({ - from: 17819702, - address: baseAddresses.tokens.superOETHb, - rebasing: { - rebaseEventFilter: logFilter({ - address: [baseAddresses.tokens.superOETHb], - topic0: [otoken.events.TotalSupplyUpdatedHighres.topic], - transaction: true, - range: { from: 17819702 }, - }), - getCredits: async (ctx, block, address) => { - const oToken = new otoken.Contract(ctx, block.header, baseAddresses.tokens.superOETHb) - return oToken.creditsBalanceOfHighres(address).then((credits) => credits._0) - }, - getCreditsPerToken: async (ctx, block) => { - const oToken = new otoken.Contract(ctx, block.header, baseAddresses.tokens.superOETHb) - return oToken.rebasingCreditsPerTokenHighres() - }, - ...getErc20RebasingParams({ - from: 17819702, - yieldDelegationFrom: 23192884, - address: baseAddresses.tokens.superOETHb, - }), - }, - }), // wsuperOETHb createERC20EventTracker({ from: 17819702, diff --git a/src/base/super-oeth-b.ts b/src/base/super-oeth-b.ts index 147a9273..8347b560 100644 --- a/src/base/super-oeth-b.ts +++ b/src/base/super-oeth-b.ts @@ -7,6 +7,8 @@ import { createOTokenWithdrawalsProcessor } from '@templates/withdrawals' import { aerodromePools, baseAddresses } from '@utils/addresses-base' const otokenProcessor = createOTokenProcessor({ + name: 'Super OETHb', + symbol: 'superOETHb', from: 17819702, vaultFrom: 17819702, otokenAddress: baseAddresses.tokens.superOETHb, diff --git a/src/mainnet/processors/erc20s.ts b/src/mainnet/processors/erc20s.ts index 1d6ff175..5eb97d81 100644 --- a/src/mainnet/processors/erc20s.ts +++ b/src/mainnet/processors/erc20s.ts @@ -1,16 +1,6 @@ -import * as otoken from '@abi/otoken' import { createERC20EventTracker } from '@templates/erc20/erc20-event' import { createERC20PollingTracker } from '@templates/erc20/erc20-polling' -import { createRebasingERC20Tracker, getErc20RebasingParams } from '@templates/erc20/erc20-rebasing' -import { - OETH_ADDRESS, - OETH_DRIPPER_ADDRESS, - OETH_VAULT_ADDRESS, - WOETH_ADDRESS, - oethStrategyArray, - tokens, -} from '@utils/addresses' -import { logFilter } from '@utils/logFilter' +import { OETH_DRIPPER_ADDRESS, OETH_VAULT_ADDRESS, WOETH_ADDRESS, oethStrategyArray, tokens } from '@utils/addresses' import { TokenSymbol } from '@utils/symbols' // TODO: Would be nice if interested parties could register their desires here from other parts of the code, @@ -42,36 +32,6 @@ const simpleTracks: Record[0] }, } -const rebasingTracks: Record[0]> = { - // Origin Specific - OETH: { - from: 16935276, - address: tokens.OETH, - rebasing: { - rebaseEventFilter: logFilter({ - address: [OETH_ADDRESS], - topic0: [otoken.events.TotalSupplyUpdatedHighres.topic], - transaction: true, - range: { from: 16935276 }, - }), - getCredits: async (ctx, block, address) => { - const oToken = new otoken.Contract(ctx, block.header, tokens.OETH) - return oToken.creditsBalanceOfHighres(address).then((credits) => credits._0) - }, - getCreditsPerToken: async (ctx, block) => { - const oToken = new otoken.Contract(ctx, block.header, tokens.OETH) - return oToken.rebasingCreditsPerTokenHighres() - }, - ...getErc20RebasingParams({ - from: 16935276, - yieldDelegationFrom: 21325305, - address: OETH_ADDRESS, - rebaseOptTraceUntil: 20000000, - }), - }, - }, -} - const tracks: Record[0]> = { wOETH: { from: 16933090, @@ -130,7 +90,6 @@ export const erc20s = () => { initialized = true return [ ...Object.values(simpleTracks).map(createERC20EventTracker), - ...Object.values(rebasingTracks).map(createRebasingERC20Tracker), ...Object.values(tracks).map(createERC20PollingTracker), ] } diff --git a/src/model/generated/erc20Balance.model.ts b/src/model/generated/erc20Balance.model.ts index 43cf2344..af5fb774 100644 --- a/src/model/generated/erc20Balance.model.ts +++ b/src/model/generated/erc20Balance.model.ts @@ -31,7 +31,4 @@ export class ERC20Balance { @BigIntColumn_({nullable: false}) balance!: bigint - - @BigIntColumn_({nullable: true}) - rebasingCredits!: bigint | undefined | null } diff --git a/src/model/generated/erc20Holder.model.ts b/src/model/generated/erc20Holder.model.ts index ee9bf199..d889525b 100644 --- a/src/model/generated/erc20Holder.model.ts +++ b/src/model/generated/erc20Holder.model.ts @@ -23,7 +23,4 @@ export class ERC20Holder { @BigIntColumn_({nullable: false}) balance!: bigint - - @BigIntColumn_({nullable: true}) - rebasingCredits!: bigint | undefined | null } diff --git a/src/model/generated/erc20State.model.ts b/src/model/generated/erc20State.model.ts index 370ffe9b..345c1416 100644 --- a/src/model/generated/erc20State.model.ts +++ b/src/model/generated/erc20State.model.ts @@ -29,7 +29,4 @@ export class ERC20State { @IntColumn_({nullable: false}) holderCount!: number - - @BigIntColumn_({nullable: true}) - rebasingCreditsPerToken!: bigint | undefined | null } diff --git a/src/model/generated/oToken.model.ts b/src/model/generated/oToken.model.ts index 46984426..ef6c3d9f 100644 --- a/src/model/generated/oToken.model.ts +++ b/src/model/generated/oToken.model.ts @@ -33,4 +33,7 @@ export class OToken { @BigIntColumn_({nullable: false}) nonRebasingSupply!: bigint + + @IntColumn_({nullable: false}) + holderCount!: number } diff --git a/src/model/generated/oTokenAddress.model.ts b/src/model/generated/oTokenAddress.model.ts index 7fac885c..ccd2fb75 100644 --- a/src/model/generated/oTokenAddress.model.ts +++ b/src/model/generated/oTokenAddress.model.ts @@ -41,6 +41,9 @@ export class OTokenAddress { @StringColumn_({nullable: true}) delegatedTo!: string | undefined | null + @IntColumn_({nullable: false}) + blockNumber!: number + @DateTimeColumn_({nullable: false}) lastUpdated!: Date diff --git a/src/oeth/processors/oeth.ts b/src/oeth/processors/oeth.ts index e0526d14..47a5bb49 100644 --- a/src/oeth/processors/oeth.ts +++ b/src/oeth/processors/oeth.ts @@ -28,6 +28,8 @@ import { } from '@utils/addresses' const otokenProcessor = createOTokenProcessor({ + name: 'OETH', + symbol: 'OETH', from: 16933090, // https://etherscan.io/tx/0x3b4ece4f5fef04bf7ceaec4f6c6edf700540d7597589f8da0e3a8c94264a3b50 vaultFrom: 17084107, otokenAddress: OETH_ADDRESS, diff --git a/src/ousd/processors/erc20s.ts b/src/ousd/processors/erc20s.ts index 88bf4d32..a12e7e27 100644 --- a/src/ousd/processors/erc20s.ts +++ b/src/ousd/processors/erc20s.ts @@ -1,44 +1,5 @@ -import * as otoken from '@abi/otoken' -import * as otokenOld from '@abi/otoken-old' import { createERC20PollingTracker } from '@templates/erc20' -import { createRebasingERC20Tracker, getErc20RebasingParams } from '@templates/erc20/erc20-rebasing' -import { OUSD_ADDRESS, OUSD_VAULT_ADDRESS, ousdStrategyArray, tokens } from '@utils/addresses' -import { logFilter } from '@utils/logFilter' - -const rebasingTracks: Record[0]> = { - OUSD: { - from: 11585978, // From Reset: - address: tokens.OUSD, - rebasing: { - rebaseEventFilter: logFilter({ - address: [OUSD_ADDRESS], - topic0: [otokenOld.events.TotalSupplyUpdated.topic, otoken.events.TotalSupplyUpdatedHighres.topic], - transaction: true, - range: { from: 11585978 }, - }), - getCredits: async (ctx, block, address) => { - const oToken = new otoken.Contract(ctx, block.header, tokens.OUSD) - if (block.header.height < 13533937) { - return oToken.creditsBalanceOf(address).then((credits) => credits._0 * 1000000000n) - } - return oToken.creditsBalanceOfHighres(address).then((credits) => credits._0) - }, - getCreditsPerToken: async (ctx, block) => { - const oToken = new otoken.Contract(ctx, block.header, tokens.OUSD) - if (block.header.height < 13533937) { - return oToken.rebasingCreditsPerToken().then((cpt) => cpt * 1000000000n) - } - return oToken.rebasingCreditsPerTokenHighres() - }, - ...getErc20RebasingParams({ - from: 11585978, - yieldDelegationFrom: 21325305, - address: OUSD_ADDRESS, - rebaseOptTraceUntil: 20000000, - }), - }, - }, -} +import { OUSD_VAULT_ADDRESS, ousdStrategyArray, tokens } from '@utils/addresses' const tracks: Record[0]> = { // OUSD Related @@ -81,7 +42,4 @@ const tracks: Record[0]> = } // This is a function to allow others to subscribe to balance tracking -export const erc20s = () => [ - ...Object.values(rebasingTracks).map(createRebasingERC20Tracker), - ...Object.values(tracks).map(createERC20PollingTracker), -] +export const erc20s = () => [...Object.values(tracks).map(createERC20PollingTracker)] diff --git a/src/ousd/processors/ousd/ousd.ts b/src/ousd/processors/ousd/ousd.ts index d894853a..eab6e04b 100644 --- a/src/ousd/processors/ousd/ousd.ts +++ b/src/ousd/processors/ousd/ousd.ts @@ -15,7 +15,9 @@ import { // export const from = 11585978 // OUSDReset // export const from = 13533937 // https://etherscan.io/tx/0xc9b6fc6a4fad18dad197ff7d0636f74bf066671d75656849a1c45122e00d54cf -export const { from, setup, process } = createOTokenProcessor({ +export const { name, from, setup, process } = createOTokenProcessor({ + name: 'OUSD', + symbol: 'OUSD', from: 11585978, // OUSDReset vaultFrom: 11596942, Upgrade_CreditsBalanceOfHighRes: 13533937, // https://etherscan.io/tx/0xc9b6fc6a4fad18dad197ff7d0636f74bf066671d75656849a1c45122e00d54cf diff --git a/src/templates/erc20/erc20-rebasing.ts b/src/templates/erc20/erc20-rebasing.ts deleted file mode 100644 index 907635f9..00000000 --- a/src/templates/erc20/erc20-rebasing.ts +++ /dev/null @@ -1,479 +0,0 @@ -import * as abi from '@abi/erc20' -import * as otoken from '@abi/otoken' -import { ERC20, ERC20Balance, ERC20Holder, ERC20State, ERC20Transfer } from '@model' -import { Block, Context, Log, Trace } from '@processor' -import { publishERC20State } from '@shared/erc20' -import { EvmBatchProcessor } from '@subsquid/evm-processor' -import { ADDRESS_ZERO } from '@utils/addresses' -import { LogFilter, logFilter } from '@utils/logFilter' -import { TokenAddress } from '@utils/symbols' -import { TraceFilter, traceFilter } from '@utils/traceFilter' - -const duplicateTracker = new Set() - -/** - * Track ERC20 state for rebasing tokens. - */ -export const createRebasingERC20Tracker = ({ - from, - address, - rebasing, -}: { - from: number - address: TokenAddress - rebasing: { - rebaseEventFilter: LogFilter - getCredits: (ctx: Context, block: Block, account: string) => Promise - getCreditsPerToken: (ctx: Context, block: Block) => Promise - enableRpcBalance?: { filter: LogFilter; decode: (log: Log) => { addresses: string[] } } - disableRpcBalance?: { filter: LogFilter; decode: (log: Log) => { addresses: string[] } } - isEligibleForRebasing?: (ctx: Context, block: Block, account: string) => Promise - hooks?: { - filter: LogFilter - traceFilter?: TraceFilter - action: ( - ctx: Context, - block: Block, - params: { log: Log } | { trace: Trace }, - hooks: { - enableRebasing: (account: string) => Promise - disableRebasing: (account: string) => Promise - }, - ) => Promise - }[] - } -}) => { - if (duplicateTracker.has(address)) { - throw new Error('An ERC20 tracker was already created for: ' + address) - } - duplicateTracker.add(address) - - let erc20: ERC20 | undefined - // Keep an in-memory record of what our current holders are. - // TODO: Consider doing this differently? - // Eventually memory may become a constraint. - let mostRecentState: ERC20State | undefined - let holders: Map - const transferLogFilter = logFilter({ - address: [address.toLowerCase()], - topic0: [abi.events.Transfer.topic], - range: { from }, - }) - const initialize = async (ctx: Context) => { - if (erc20) return - const block = ctx.blocks.find((b) => b.header.height >= from) - if (!block) return - erc20 = await ctx.store.findOne(ERC20, { where: { chainId: ctx.chain.id, address } }) - try { - if (!erc20) { - const contract = new abi.Contract(ctx, block.header, address) - const [name, symbol, decimals] = await Promise.all([contract.name(), contract.symbol(), contract.decimals()]) - erc20 = new ERC20({ - id: `${ctx.chain.id}-${address}`, - chainId: ctx.chain.id, - address, - name, - symbol, - decimals, - }) - await ctx.store.insert(erc20) - } - } catch (err) { - ctx.log.error({ height: block.header.height, err }, `Failed to get contract name for ${address}`) - } - } - - let checkBalances = 0 - - return { - name: `rebasing-erc20-${address}`, - from, - setup(processor: EvmBatchProcessor) { - processor.addLog(transferLogFilter.value) - processor.addLog(rebasing.rebaseEventFilter.value) - for (const hook of rebasing.hooks ?? []) { - processor.addLog(hook.filter.value) - if (hook.traceFilter) { - processor.addTrace(hook.traceFilter.value) - } - } - }, - async process(ctx: Context) { - const debugLogging = global.process.env.DEBUG_PERF === 'true' - let start = Date.now() - const time = (name: string) => { - if (!debugLogging) return - const message = `${address} ${name} ${Date.now() - start}ms` - start = Date.now() - ctx.log.info(message) - } - - await initialize(ctx) - time('initialize') - if (!mostRecentState) { - mostRecentState = await ctx.store.findOne(ERC20State, { - where: { chainId: ctx.chain.id, address }, - order: { blockNumber: 'DESC' }, - }) - } - if (!holders) { - const holdersArray = await ctx.store.findBy(ERC20Holder, { chainId: ctx.chain.id, address }) - holders = new Map() - for (const holder of holdersArray) { - holders.set(holder.account, holder.rebasingCredits ?? null) - } - time('initialize holders') - } - const result = { - states: new Map(), - balances: new Map(), - transfers: new Map(), - holders: new Map(), - removedHolders: new Set(), - } - for (const block of ctx.blocks) { - if (block.header.height < from) continue - const contract = new abi.Contract(ctx, block.header, address) - const updateState = async () => { - const id = `${ctx.chain.id}-${block.header.height}-${address}` - const [totalSupply, rebasingCreditsPerToken] = await Promise.all([ - contract.totalSupply(), - rebasing.getCreditsPerToken(ctx, block), - ]) - const state = new ERC20State({ - id, - chainId: ctx.chain.id, - address, - timestamp: new Date(block.header.timestamp), - blockNumber: block.header.height, - totalSupply, - holderCount: holders.size, - rebasingCreditsPerToken, - }) - mostRecentState = state - result.states.set(id, state) - time('update state') - } - const updateBalances = async (accounts: string[]) => { - let doStateUpdate = false - if (accounts.length > 0) { - const credits = await Promise.all(accounts.map((account) => rebasing.getCredits(ctx, block, account))) - for (let i = 0; i < accounts.length; i++) { - const account = accounts[i].toLowerCase() - if (account === ADDRESS_ZERO) continue - const id = `${ctx.chain.id}-${block.header.height}-${address}-${account}` - let useRpcBalance = holders.get(account) === null - if (!holders.has(account) && rebasing.isEligibleForRebasing) { - useRpcBalance = !(await rebasing.isEligibleForRebasing(ctx, block, account)) - } - const rebasingCredits = useRpcBalance ? null : credits[i] - const newBalance = - rebasingCredits === null - ? await contract.balanceOf(account) - : mostRecentState?.rebasingCreditsPerToken - ? (rebasingCredits * 10n ** 18n) / mostRecentState.rebasingCreditsPerToken - : 0n - const balance = new ERC20Balance({ - id, - chainId: ctx.chain.id, - timestamp: new Date(block.header.timestamp), - blockNumber: block.header.height, - address, - account, - balance: newBalance, - rebasingCredits, - }) - result.balances.set(id, balance) - if (balance.balance === 0n) { - doStateUpdate = true - holders.delete(account) - result.holders.delete(account) - result.removedHolders.add(account) - } else { - const holder = new ERC20Holder({ - id: `${ctx.chain.id}-${address}-${account}`, - chainId: ctx.chain.id, - address, - account, - balance: balance.balance, - rebasingCredits: balance.rebasingCredits, - }) - doStateUpdate = true - holders.set(account, rebasingCredits) - result.holders.set(holder.account, holder) - result.removedHolders.delete(holder.account) - } - } - time('update balances') - } - if (doStateUpdate) { - await updateState() - } - } - const updateAllBalances = async () => { - for (const [account, rebasingCredits] of holders.entries()) { - const balance = - rebasingCredits === null - ? await contract.balanceOf(account) - : mostRecentState?.rebasingCreditsPerToken - ? (rebasingCredits * 10n ** 18n) / mostRecentState.rebasingCreditsPerToken - : 0n - result.holders.set( - account, - new ERC20Holder({ - id: `${ctx.chain.id}-${address}-${account}`, - chainId: ctx.chain.id, - address, - account, - balance, - rebasingCredits, - }), - ) - const id = `${ctx.chain.id}-${block.header.height}-${address}-${account}` - result.balances.set( - id, - new ERC20Balance({ - id, - chainId: ctx.chain.id, - timestamp: new Date(block.header.timestamp), - blockNumber: block.header.height, - address, - account, - balance, - rebasingCredits, - }), - ) - } - time('update all balances') - } - - const hookActions = { - async enableRebasing(account: string) { - holders.set(account, await rebasing.getCredits(ctx, block, account)) - await updateBalances([account]) - }, - async disableRebasing(account: string) { - holders.set(account, null) - await updateBalances([account]) - }, - } - - // Iterate Logs - for (const log of block.logs) { - const isTransferLog = transferLogFilter.matches(log) - if (isTransferLog) { - const data = abi.events.Transfer.decode(log) - await updateBalances([data.from.toLowerCase(), data.to.toLowerCase()]) - const fromHolder = result.holders.get(data.from.toLowerCase()) - const toHolder = result.holders.get(data.to.toLowerCase()) - const transfer = new ERC20Transfer({ - id: `${ctx.chain.id}-${log.id}`, - chainId: ctx.chain.id, - txHash: log.transactionHash, - blockNumber: block.header.height, - timestamp: new Date(block.header.timestamp), - address: log.address, - from: data.from.toLowerCase(), - fromBalance: fromHolder?.balance ?? 0n, - to: data.to.toLowerCase(), - toBalance: toHolder?.balance ?? 0n, - value: data.value, - }) - result.transfers.set(transfer.id, transfer) - time('transfer log') - } - const isRebaseLog = rebasing?.rebaseEventFilter.matches(log) - if (isRebaseLog) { - await updateState() - await updateAllBalances() - time('rebase log') - } - const isEnableRpcBalanceLog = rebasing?.enableRpcBalance?.filter.matches(log) - if (isEnableRpcBalanceLog) { - const data = rebasing.enableRpcBalance?.decode(log) - for (const account of data?.addresses ?? []) { - holders.set(account, null) - } - } - const isDisableRpcBalanceLog = rebasing?.disableRpcBalance?.filter.matches(log) - if (isDisableRpcBalanceLog) { - const data = rebasing.disableRpcBalance?.decode(log) - for (const account of data?.addresses ?? []) { - holders.set(account, await rebasing.getCredits(ctx, block, account)) - } - } - - for (const hook of rebasing.hooks ?? []) { - if (hook.filter.matches(log)) { - await hook.action(ctx, block, { log }, hookActions) - } - } - } - - // Iterate Traces - for (const trace of block.traces) { - for (const hook of rebasing.hooks ?? []) { - if (hook.traceFilter?.matches(trace)) { - await hook.action(ctx, block, { trace }, hookActions) - } - } - } - } - await Promise.all([ - ctx.store.upsert([...result.holders.values()]), - ctx.store.insert([...result.states.values()]), - ctx.store.insert([...result.balances.values()]), - ctx.store.insert([...result.transfers.values()]), - ctx.store.remove( - [...result.removedHolders.values()].map( - (account) => new ERC20Holder({ id: `${ctx.chain.id}-${address}-${account}` }), - ), - ), - ]) - time('save') - publishERC20State(ctx, address, result) - time('publish') - - // const lastBlock = ctx.blocks[ctx.blocks.length - 1] - // if (checkBalances < Math.floor(lastBlock.header.height / 100000) && lastBlock.header.height > 14085199) { - // checkBalances = Math.floor(lastBlock.header.height / 100000) - // console.time('Checking balances') - // let correctBalances = 0 - // const holderEntities = await ctx.store.findBy(ERC20Holder, { chainId: ctx.chain.id, address }) - // for (const holder of holderEntities) { - // const account = holder.account - // const contract = new otoken.Contract(ctx, lastBlock.header, address) - // const balance = await contract.balanceOf(account) - // if (holder.balance === balance) { - // correctBalances++ - // } else { - // console.log(`${account} has incorrect balance: ${holder.balance} vs ${balance}`) - // } - // } - // console.timeEnd('Checking balances') - // console.log( - // `Correct balances: ${correctBalances}/${holderEntities.length} (${( - // (correctBalances / holderEntities.length) * - // 100 - // ).toFixed(2)}%)`, - // ) - // } - }, - } -} - -export const getErc20RebasingParams = ({ - from, - rebaseOptTraceUntil, - yieldDelegationFrom, - address, -}: { - from: number - rebaseOptTraceUntil?: number - yieldDelegationFrom: number - address: string -}) => { - const data: Pick< - Parameters[0]['rebasing'], - 'enableRpcBalance' | 'disableRpcBalance' | 'isEligibleForRebasing' | 'hooks' - > = { - enableRpcBalance: { - filter: logFilter({ - address: [address], - topic0: [otoken.events.YieldDelegated.topic], - range: { from: yieldDelegationFrom }, - }), - decode: (log) => { - const data = otoken.events.YieldDelegated.decode(log) - return { addresses: [data.source, data.target] } - }, - }, - disableRpcBalance: { - filter: logFilter({ - address: [address], - topic0: [otoken.events.YieldUndelegated.topic], - range: { from: yieldDelegationFrom }, - }), - decode: (log) => { - const data = otoken.events.YieldUndelegated.decode(log) - return { addresses: [data.source, data.target] } - }, - }, - isEligibleForRebasing: async (ctx, block, account: string) => { - const contract = new otoken.Contract(ctx, block.header, address) - const rebaseState = await contract.rebaseState(account) - if (rebaseState === 0) { - let isContract: boolean = false - if (account !== '0x0000000000000000000000000000000000000000') { - isContract = - (await ctx._chain.client.call('eth_getCode', [account, `0x${block.header.height.toString(16)}`])) !== '0x' - } - return !isContract - } - return rebaseState === 2 - }, - hooks: [ - { - filter: logFilter({ - address: [address], - topic0: [otoken.events.AccountRebasingEnabled.topic], - range: { from }, - }), - traceFilter: rebaseOptTraceUntil - ? traceFilter({ - callTo: [address], - type: ['call'], - callSighash: [otoken.functions.rebaseOptIn.selector], - range: { from, to: rebaseOptTraceUntil }, - }) - : undefined, - action: async (ctx, block, params, actions) => { - let account: string | undefined = undefined - if ('log' in params) { - const data = otoken.events.AccountRebasingEnabled.decode(params.log) - account = data.account - } - if ('trace' in params && params.trace.type === 'call') { - account = params.trace.action.from - } - if (account) { - await actions.enableRebasing(account) - } else { - throw new Error('No account found for rebasing opt-in') - } - }, - }, - { - filter: logFilter({ - address: [address], - topic0: [otoken.events.AccountRebasingDisabled.topic], - range: { from }, - }), - traceFilter: rebaseOptTraceUntil - ? traceFilter({ - callTo: [address], - type: ['call'], - callSighash: [otoken.functions.rebaseOptOut.selector], - range: { from, to: rebaseOptTraceUntil }, - }) - : undefined, - action: async (ctx, block, params, actions) => { - let account: string | undefined = undefined - if ('log' in params) { - const data = otoken.events.AccountRebasingDisabled.decode(params.log) - account = data.account - } - if ('trace' in params && params.trace.type === 'call') { - account = params.trace.action.from - } - if (account) { - await actions.disableRebasing(account) - } else { - throw new Error('No account found for rebasing opt-out') - } - }, - }, - ], - } - return data -} diff --git a/src/templates/erc20/erc20.graphql b/src/templates/erc20/erc20.graphql index b496e689..af18b512 100644 --- a/src/templates/erc20/erc20.graphql +++ b/src/templates/erc20/erc20.graphql @@ -13,7 +13,6 @@ type ERC20Holder @entity { address: String! @index account: String! @index balance: BigInt! - rebasingCredits: BigInt # Only used for rebasing tokens } type ERC20State @entity { @@ -24,7 +23,6 @@ type ERC20State @entity { address: String! totalSupply: BigInt! holderCount: Int! - rebasingCreditsPerToken: BigInt # Only used for rebasing tokens } type ERC20Balance @entity { @@ -35,7 +33,6 @@ type ERC20Balance @entity { address: String! @index account: String! @index balance: BigInt! - rebasingCredits: BigInt # Only used for rebasing tokens } type ERC20Transfer @entity { diff --git a/src/templates/erc20/index.ts b/src/templates/erc20/index.ts index 973e606f..296861b8 100644 --- a/src/templates/erc20/index.ts +++ b/src/templates/erc20/index.ts @@ -1,3 +1,2 @@ export * from './erc20-event' export * from './erc20-polling' -export * from './erc20-rebasing' diff --git a/src/templates/otoken/otoken.graphql b/src/templates/otoken/otoken.graphql index b2a0470f..49fbe7cd 100644 --- a/src/templates/otoken/otoken.graphql +++ b/src/templates/otoken/otoken.graphql @@ -7,6 +7,7 @@ type OToken @entity { totalSupply: BigInt! rebasingSupply: BigInt! nonRebasingSupply: BigInt! + holderCount: Int! } type OTokenAsset @entity { @@ -28,6 +29,7 @@ type OTokenAddress @entity { earned: BigInt! credits: BigInt! delegatedTo: String + blockNumber: Int! lastUpdated: DateTime! history: [OTokenHistory!]! @derivedFrom(field: "address") } diff --git a/src/templates/otoken/otoken.ts b/src/templates/otoken/otoken.ts index 7f3fa4a1..d7f22906 100644 --- a/src/templates/otoken/otoken.ts +++ b/src/templates/otoken/otoken.ts @@ -9,6 +9,11 @@ import * as otokenHarvester from '@abi/otoken-base-harvester' import * as otokenDripper from '@abi/otoken-dripper' import * as otokenVault from '@abi/otoken-vault' import { + ERC20, + ERC20Balance, + ERC20Holder, + ERC20State, + ERC20Transfer, HistoryType, OToken, OTokenAPY, @@ -42,6 +47,8 @@ import { createAddress, createRebaseAPY } from './utils' export type OTokenContractAddress = typeof OUSD_ADDRESS | typeof OETH_ADDRESS | typeof baseAddresses.superOETHb.address export const createOTokenProcessor = (params: { + name: string + symbol: string from: number vaultFrom: number Upgrade_CreditsBalanceOfHighRes?: number @@ -126,6 +133,23 @@ export const createOTokenProcessor = (params: { } } + const initialize = async (ctx: Context) => { + const erc20Id = `${ctx.chain.id}-${params.otokenAddress}` + const erc20 = await ctx.store.get(ERC20, erc20Id) + if (!erc20) { + await ctx.store.insert( + new ERC20({ + id: erc20Id, + chainId: ctx.chain.id, + address: params.otokenAddress, + name: params.name, + symbol: params.symbol, + decimals: 18, + }), + ) + } + } + interface ProcessResult { initialized: boolean initialize: () => Promise @@ -146,9 +170,17 @@ export const createOTokenProcessor = (params: { yield: bigint } | undefined + erc20: { + states: Map + balances: Map + transfers: Map + holders: Map + removedHolders: Set + } } let owners: Map | undefined = undefined + let ownersHistorical: OTokenAddress[] = [] let idMap: Map const getUniqueId = (partialId: string) => { @@ -160,6 +192,8 @@ export const createOTokenProcessor = (params: { const process = async (ctx: Context) => { idMap = new Map() + ownersHistorical = [] + const result: ProcessResult = { initialized: false, // Saves ~5ms init time if we have no filter matches. @@ -205,6 +239,13 @@ export const createOTokenProcessor = (params: { dripperStates: [], harvesterYieldSent: [], lastYieldDistributionEvent: undefined, + erc20: { + states: new Map(), + balances: new Map(), + transfers: new Map(), + holders: new Map(), + removedHolders: new Set(), + }, } for (const block of ctx.blocks) { @@ -369,6 +410,45 @@ export const createOTokenProcessor = (params: { ctx.log.info(`Updated OTokenDailyStat: ${entity.id}`) } + // Create ERC20 entities based on OToken entities + for (const otoken of result.otokens) { + const erc20State = new ERC20State({ + id: `${ctx.chain.id}-${otoken.blockNumber}-${otoken.otoken}`, + chainId: ctx.chain.id, + address: otoken.otoken, + timestamp: otoken.timestamp, + blockNumber: otoken.blockNumber, + totalSupply: otoken.totalSupply, + holderCount: otoken.holderCount, + }) + result.erc20.states.set(erc20State.id, erc20State) + } + for (const owner of owners?.values() ?? []) { + const erc20Holder = new ERC20Holder({ + id: `${ctx.chain.id}-${owner.otoken}-${owner.address}`, + chainId: ctx.chain.id, + address: owner.otoken, + account: owner.address, + balance: owner.balance, + }) + result.erc20.holders.set(erc20Holder.id, erc20Holder) + } + for (const owner of ownersHistorical) { + result.erc20.balances.set( + owner.id, + new ERC20Balance({ + id: `${ctx.chain.id}-${owner.blockNumber}-${owner.otoken}-${owner.address}`, + chainId: ctx.chain.id, + address: owner.otoken, + account: owner.address, + timestamp: owner.lastUpdated, + blockNumber: owner.blockNumber, + balance: owner.balance, + }), + ) + } + + // Save to database if (owners) { await ctx.store.upsert([...owners.values()]) } @@ -384,6 +464,11 @@ export const createOTokenProcessor = (params: { ctx.store.insert(result.dripperStates), ctx.store.insert(result.harvesterYieldSent), ctx.store.upsert([...result.dailyStats.values()].map((ds) => ds.entity)), + // ERC20 + ctx.store.insert([...result.erc20.states.values()]), + ctx.store.upsert([...result.erc20.holders.values()]), + ctx.store.insert([...result.erc20.balances.values()]), + ctx.store.insert([...result.erc20.transfers.values()]), ]) } @@ -414,8 +499,9 @@ export const createOTokenProcessor = (params: { const ensureAddress = async (address: string) => { let entity = owners!.get(address) if (!entity) { - entity = await createAddress(ctx, params.otokenAddress, address) + entity = await createAddress(ctx, params.otokenAddress, address, block) owners!.set(entity.address, entity) + ownersHistorical.push(entity) } entity.lastUpdated = new Date(block.header.timestamp) return entity @@ -519,6 +605,24 @@ export const createOTokenProcessor = (params: { // Update rebasing supply in all cases otokenObject.rebasingSupply = otokenObject.totalSupply - otokenObject.nonRebasingSupply + + const erc20Id = `${ctx.chain.id}-${log.id}` + result.erc20.transfers.set( + erc20Id, + new ERC20Transfer({ + id: erc20Id, + chainId: ctx.chain.id, + txHash: log.transactionHash, + blockNumber: block.header.height, + timestamp: new Date(block.header.timestamp), + address: params.otokenAddress, + from: data.from, + fromBalance: addressSub.balance, + to: data.to, + toBalance: addressAdd.balance, + value: data.value, + }), + ) } } @@ -681,8 +785,9 @@ export const createOTokenProcessor = (params: { const otokenObject = await getLatestOTokenObject(ctx, result, block) let owner = owners!.get(address) if (!owner) { - owner = await createAddress(ctx, params.otokenAddress, address, timestamp) + owner = await createAddress(ctx, params.otokenAddress, address, block) owners!.set(address, owner) + ownersHistorical.push(owner) } const rebaseOption = new OTokenRebaseOption({ id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${hash}-${owner.address}`), @@ -726,8 +831,9 @@ export const createOTokenProcessor = (params: { // Source let sourceOwner = owners!.get(sourceAddress) if (!sourceOwner) { - sourceOwner = await createAddress(ctx, params.otokenAddress, sourceAddress, timestamp) + sourceOwner = await createAddress(ctx, params.otokenAddress, sourceAddress, block) owners!.set(sourceAddress, sourceOwner) + ownersHistorical.push(sourceOwner) } sourceOwner.rebasingOption = RebasingOption.YieldDelegationSource sourceOwner.delegatedTo = targetAddress @@ -747,8 +853,9 @@ export const createOTokenProcessor = (params: { // Target let targetOwner = owners!.get(targetAddress) if (!targetOwner) { - targetOwner = await createAddress(ctx, params.otokenAddress, targetAddress, timestamp) + targetOwner = await createAddress(ctx, params.otokenAddress, targetAddress, block) owners!.set(targetAddress, targetOwner) + ownersHistorical.push(targetOwner) } targetOwner.rebasingOption = RebasingOption.YieldDelegationTarget targetOwner.delegatedTo = null @@ -777,8 +884,9 @@ export const createOTokenProcessor = (params: { // Source let sourceOwner = owners!.get(sourceAddress) if (!sourceOwner) { - sourceOwner = await createAddress(ctx, params.otokenAddress, sourceAddress, timestamp) + sourceOwner = await createAddress(ctx, params.otokenAddress, sourceAddress, block) owners!.set(sourceAddress, sourceOwner) + ownersHistorical.push(sourceOwner) } sourceOwner.rebasingOption = RebasingOption.OptOut sourceOwner.delegatedTo = null @@ -798,8 +906,9 @@ export const createOTokenProcessor = (params: { // Target let targetOwner = owners!.get(targetAddress) if (!targetOwner) { - targetOwner = await createAddress(ctx, params.otokenAddress, targetAddress, timestamp) + targetOwner = await createAddress(ctx, params.otokenAddress, targetAddress, block) owners!.set(targetAddress, targetOwner) + ownersHistorical.push(targetOwner) } targetOwner.rebasingOption = RebasingOption.OptIn targetOwner.delegatedTo = null @@ -860,6 +969,7 @@ export const createOTokenProcessor = (params: { totalSupply: latest?.totalSupply ?? 0n, rebasingSupply: latest?.rebasingSupply ?? 0n, nonRebasingSupply: latest?.nonRebasingSupply ?? 0n, + holderCount: owners!.size ?? 0n, }) result.otokens.push(otokenObject) } @@ -938,6 +1048,7 @@ export const createOTokenProcessor = (params: { name: `otoken-${params.otokenAddress}`, from: params.from, setup, + initialize, process, } } diff --git a/src/templates/otoken/utils.ts b/src/templates/otoken/utils.ts index ac9a3037..8dcef969 100644 --- a/src/templates/otoken/utils.ts +++ b/src/templates/otoken/utils.ts @@ -5,7 +5,7 @@ import { In, LessThan, MoreThanOrEqual, Not } from 'typeorm' import * as otoken from '@abi/otoken' import { OTokenAPY, OTokenAddress, OTokenRebase, RebasingOption } from '@model' -import { Context } from '@processor' +import { Block, Context } from '@processor' import { ensureExchangeRate } from '@shared/post-processors/exchange-rates' import { CurrencyAddress } from '@shared/post-processors/exchange-rates/mainnetCurrencies' import { OUSD_STABLE_OTOKENS } from '@utils/addresses' @@ -16,7 +16,7 @@ dayjs.extend(utc) /** * Create a new Address entity */ -export async function createAddress(ctx: Context, otoken: string, addr: string, lastUpdated?: Date) { +export async function createAddress(ctx: Context, otoken: string, addr: string, block: Block) { let isContract: boolean = false if (addr !== '0x0000000000000000000000000000000000000000') { isContract = (await ctx._chain.client.call('eth_getCode', [addr, 'latest'])) !== '0x' @@ -25,7 +25,6 @@ export async function createAddress(ctx: Context, otoken: string, addr: string, // ctx.log.info(`New address ${rawAddress}`); return new OTokenAddress({ id: `${ctx.chain.id}-${otoken}-${addr}`, // TODO: this change likely affects other behavior - chainId: ctx.chain.id, otoken, address: addr, balance: 0n, @@ -34,7 +33,9 @@ export async function createAddress(ctx: Context, otoken: string, addr: string, isContract, rebasingOption: isContract ? RebasingOption.OptOut : RebasingOption.OptIn, delegatedTo: null, - lastUpdated, + chainId: ctx.chain.id, + blockNumber: block.header.height, + lastUpdated: new Date(block.header.timestamp), }) } diff --git a/src/validation/validate.ts b/src/validation/validate.ts index 2f94dce3..7dd4faf2 100644 --- a/src/validation/validate.ts +++ b/src/validation/validate.ts @@ -17,18 +17,19 @@ export const validateExpectations = async < firstBlock: boolean, expectations?: T[], ) => { - if (!expectations) return - if (firstBlock) { - while (expectations[0]?.blockNumber < block.header.height) { - const entity = expectations.shift()! - await validateExpectation(ctx, block, Class, entity) - } - } - assert(!expectations.length || expectations[0]?.blockNumber >= block.header.height, 'Something is missing') - while (expectations[0]?.blockNumber === block.header.height) { - const entity = expectations.shift()! - await validateExpectation(ctx, block, Class, entity) - } + return // skipping for fresh load of v999 + // if (!expectations) return + // if (firstBlock) { + // while (expectations[0]?.blockNumber < block.header.height) { + // const entity = expectations.shift()! + // await validateExpectation(ctx, block, Class, entity) + // } + // } + // assert(!expectations.length || expectations[0]?.blockNumber >= block.header.height, 'Something is missing') + // while (expectations[0]?.blockNumber === block.header.height) { + // const entity = expectations.shift()! + // await validateExpectation(ctx, block, Class, entity) + // } } const validateExpectation = async < From c4e2f9c19e8b46cf9c0428e99b9c83637f1ceb29 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Sat, 14 Dec 2024 12:01:33 -0800 Subject: [PATCH 03/16] uncomment validate code --- src/validation/validate.ts | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/src/validation/validate.ts b/src/validation/validate.ts index 7dd4faf2..2f94dce3 100644 --- a/src/validation/validate.ts +++ b/src/validation/validate.ts @@ -17,19 +17,18 @@ export const validateExpectations = async < firstBlock: boolean, expectations?: T[], ) => { - return // skipping for fresh load of v999 - // if (!expectations) return - // if (firstBlock) { - // while (expectations[0]?.blockNumber < block.header.height) { - // const entity = expectations.shift()! - // await validateExpectation(ctx, block, Class, entity) - // } - // } - // assert(!expectations.length || expectations[0]?.blockNumber >= block.header.height, 'Something is missing') - // while (expectations[0]?.blockNumber === block.header.height) { - // const entity = expectations.shift()! - // await validateExpectation(ctx, block, Class, entity) - // } + if (!expectations) return + if (firstBlock) { + while (expectations[0]?.blockNumber < block.header.height) { + const entity = expectations.shift()! + await validateExpectation(ctx, block, Class, entity) + } + } + assert(!expectations.length || expectations[0]?.blockNumber >= block.header.height, 'Something is missing') + while (expectations[0]?.blockNumber === block.header.height) { + const entity = expectations.shift()! + await validateExpectation(ctx, block, Class, entity) + } } const validateExpectation = async < From 154ecdd105ee5d9dc5dee8a5a528afbb8c3f0ae6 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Mon, 16 Dec 2024 11:53:29 -0800 Subject: [PATCH 04/16] fix strategy balances on base --- src/base/strategies.ts | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/src/base/strategies.ts b/src/base/strategies.ts index 923f6f9c..aaa268e7 100644 --- a/src/base/strategies.ts +++ b/src/base/strategies.ts @@ -30,11 +30,23 @@ export const strategies: readonly IStrategyData[] = [ }, ] -export const baseStrategies = strategies.map((s) => { - return defineProcessor({ - name: s.name, - from: s.from, - setup: s.kind !== 'Vault' ? createStrategyRewardSetup(s) : createStrategySetup(s), - process: s.kind !== 'Vault' ? createStrategyRewardProcessor(s) : createStrategyProcessor(s), - }) -}) +export const baseStrategies = [ + ...strategies.map((s) => { + return defineProcessor({ + name: s.name, + from: s.from, + setup: createStrategySetup(s), + process: createStrategyProcessor(s), + }) + }), + ...strategies + .filter((s) => s.kind !== 'Vault') + .map((s) => { + return defineProcessor({ + name: s.name, + from: s.from, + setup: createStrategyRewardSetup(s), + process: createStrategyRewardProcessor(s), + }) + }), +] From 17a3cb58447bf4debf02a68e4af5c5570e9653ab Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Mon, 16 Dec 2024 14:14:06 -0800 Subject: [PATCH 05/16] Add start/head timestamps to processing status so we can better measure processing speeds --- ...40116447-Data.js => 1734386993293-Data.js} | 6 ++--- schema.graphql | 2 ++ src/model/generated/processingStatus.model.ts | 6 +++++ .../processor-status/processor-status.graphql | 2 ++ .../processor-status/processor-status.ts | 27 ++++++++++++++----- 5 files changed, 33 insertions(+), 10 deletions(-) rename db/migrations/{1734140116447-Data.js => 1734386993293-Data.js} (99%) diff --git a/db/migrations/1734140116447-Data.js b/db/migrations/1734386993293-Data.js similarity index 99% rename from db/migrations/1734140116447-Data.js rename to db/migrations/1734386993293-Data.js index 6d0d19c5..ce35cc64 100644 --- a/db/migrations/1734140116447-Data.js +++ b/db/migrations/1734386993293-Data.js @@ -1,5 +1,5 @@ -module.exports = class Data1734140116447 { - name = 'Data1734140116447' +module.exports = class Data1734386993293 { + name = 'Data1734386993293' async up(db) { await db.query(`CREATE TABLE "exchange_rate" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "pair" text NOT NULL, "base" text NOT NULL, "quote" text NOT NULL, "rate" numeric NOT NULL, CONSTRAINT "PK_5c5d27d2b900ef6cdeef0398472" PRIMARY KEY ("id"))`) @@ -218,7 +218,7 @@ module.exports = class Data1734140116447 { await db.query(`CREATE INDEX "IDX_6350ddb2def19c1e3a06d8b3ec" ON "erc20_transfer" ("address") `) await db.query(`CREATE INDEX "IDX_eca70565083880d00e9110b000" ON "erc20_transfer" ("from") `) await db.query(`CREATE INDEX "IDX_9fdc9d58b6ae0cb13b9c7f8226" ON "erc20_transfer" ("to") `) - await db.query(`CREATE TABLE "processing_status" ("id" character varying NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, CONSTRAINT "PK_85f5e2467b74fb70fac1a053021" PRIMARY KEY ("id"))`) + await db.query(`CREATE TABLE "processing_status" ("id" character varying NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "block_number" integer NOT NULL, "start_timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "head_timestamp" TIMESTAMP WITH TIME ZONE, CONSTRAINT "PK_85f5e2467b74fb70fac1a053021" PRIMARY KEY ("id"))`) await db.query(`CREATE TABLE "aero_cl_gauge_claim_fees" ("id" character varying NOT NULL, "chain_id" integer NOT NULL, "block_number" integer NOT NULL, "timestamp" TIMESTAMP WITH TIME ZONE NOT NULL, "address" text NOT NULL, "from" text NOT NULL, "claimed0" numeric NOT NULL, "claimed1" numeric NOT NULL, CONSTRAINT "PK_324db7f817fe71a6a8dfc04701a" PRIMARY KEY ("id"))`) await db.query(`CREATE INDEX "IDX_1be41b9f9191217eb3637a5c02" ON "aero_cl_gauge_claim_fees" ("chain_id") `) await db.query(`CREATE INDEX "IDX_059ed2b30e2737ed924c42f2d2" ON "aero_cl_gauge_claim_fees" ("block_number") `) diff --git a/schema.graphql b/schema.graphql index 621f2827..93d679d2 100644 --- a/schema.graphql +++ b/schema.graphql @@ -692,6 +692,8 @@ type ProcessingStatus @entity { id: ID! timestamp: DateTime! blockNumber: Int! + startTimestamp: DateTime! # when we started processing + headTimestamp: DateTime # when we first hit head block } type AeroCLGaugeClaimFees @entity { id: ID! diff --git a/src/model/generated/processingStatus.model.ts b/src/model/generated/processingStatus.model.ts index b860c09b..201e04c1 100644 --- a/src/model/generated/processingStatus.model.ts +++ b/src/model/generated/processingStatus.model.ts @@ -14,4 +14,10 @@ export class ProcessingStatus { @IntColumn_({nullable: false}) blockNumber!: number + + @DateTimeColumn_({nullable: false}) + startTimestamp!: Date + + @DateTimeColumn_({nullable: true}) + headTimestamp!: Date | undefined | null } diff --git a/src/templates/processor-status/processor-status.graphql b/src/templates/processor-status/processor-status.graphql index 9af51524..17ebf541 100644 --- a/src/templates/processor-status/processor-status.graphql +++ b/src/templates/processor-status/processor-status.graphql @@ -2,4 +2,6 @@ type ProcessingStatus @entity { id: ID! timestamp: DateTime! blockNumber: Int! + startTimestamp: DateTime! # when we started processing + headTimestamp: DateTime # when we first hit head block } diff --git a/src/templates/processor-status/processor-status.ts b/src/templates/processor-status/processor-status.ts index 9470d161..5bf1cbe5 100644 --- a/src/templates/processor-status/processor-status.ts +++ b/src/templates/processor-status/processor-status.ts @@ -10,18 +10,31 @@ export const processStatus = (id: string) => { processorIds.add(id) } + let status: ProcessingStatus | undefined = undefined + return { name: `processor-status-${id}`, async process(ctx: Context) { + if (!status) { + status = await ctx.store.get(ProcessingStatus, id) + if (!status) { + status = new ProcessingStatus({ + blockNumber: 0, + timestamp: new Date(0), + id, + startTimestamp: new Date(), + headTimestamp: null, + }) + } + } const header = ctx.blocks[ctx.blocks.length - 1].header if (header) { - await ctx.store.upsert([ - new ProcessingStatus({ - id, - blockNumber: header.height, - timestamp: new Date(header.timestamp), - }), - ]) + status.blockNumber = header.height + status.timestamp = new Date(header.timestamp) + if (!status.headTimestamp && ctx.isHead) { + status.headTimestamp = new Date() + } + await ctx.store.upsert(status) } }, } From 9006fbf95e5c4c4e70027f17dbde0ad965151bf8 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Mon, 16 Dec 2024 18:19:07 -0800 Subject: [PATCH 06/16] process arbitrum woeth using the event tracker --- src/arbitrum/erc20.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arbitrum/erc20.ts b/src/arbitrum/erc20.ts index f1bd6324..59519646 100644 --- a/src/arbitrum/erc20.ts +++ b/src/arbitrum/erc20.ts @@ -1,7 +1,7 @@ -import { createERC20PollingTracker } from '@templates/erc20' +import { createERC20EventTracker } from '@templates/erc20' import { WOETH_ARBITRUM_ADDRESS } from '@utils/addresses' -export const arbitrumERC20s = createERC20PollingTracker({ +export const arbitrumERC20s = createERC20EventTracker({ from: 178662968, address: WOETH_ARBITRUM_ADDRESS, }) From 6b0e0e22704fafa6634ad56632050f42149e2836 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Wed, 18 Dec 2024 13:41:25 -0800 Subject: [PATCH 07/16] better organization/perf for validation logic --- src/base/validate.ts | 44 ++++++-------- src/mainnet/validators/validate-mainnet.ts | 27 ++++----- .../validators/validate-oeth/validate-oeth.ts | 42 ++++++-------- .../validators/validate-ousd/validate-ousd.ts | 46 +++++++-------- src/validation/validate.ts | 58 +++++++++++++++---- 5 files changed, 115 insertions(+), 102 deletions(-) diff --git a/src/base/validate.ts b/src/base/validate.ts index f3524f09..5de1ba99 100644 --- a/src/base/validate.ts +++ b/src/base/validate.ts @@ -1,5 +1,3 @@ -import assert from 'assert' - import { ERC20Balance, OToken, @@ -11,33 +9,29 @@ import { StrategyDailyYield, } from '@model' import { Context } from '@processor' -import { env } from '@utils/env' import { entities } from '@validation/entities' -import { validateExpectations } from '@validation/validate' +import { validateBlocks } from '@validation/validate' export const name = 'validate-base' -let firstBlock = true +const strategyBalances = Object.keys(entities) + .filter((k) => k.startsWith('strategyBalances_superoethb_')) + .map((k) => entities[k as keyof typeof entities]) +const strategyDailyYields = Object.keys(entities) + .filter((k) => k.startsWith('strategyDailyYields_superoethb_')) + .map((k) => entities[k as keyof typeof entities]) + +const expectationSets = [ + { entity: OToken, expectations: entities.superoethb_oTokens }, + { entity: OTokenAPY, expectations: entities.superoethb_oTokenApies }, + { entity: OTokenHistory, expectations: entities.superoethb_oTokenHistories }, + { entity: OTokenRebase, expectations: entities.superoethb_oTokenRebases }, + { entity: OTokenDailyStat, expectations: entities.superoethb_oTokenDailyStats }, + { entity: ERC20Balance, expectations: entities.superoethb_erc20Balances }, + ...strategyBalances.map((entities) => ({ entity: StrategyBalance, expectations: entities })), + ...strategyDailyYields.map((entities) => ({ entity: StrategyDailyYield, expectations: entities })), +] export const process = async (ctx: Context) => { - if (env.BLOCK_FROM || env.PROCESSOR) return - for (const block of ctx.blocks) { - await validateExpectations(ctx, block, OToken, firstBlock, entities.superoethb_oTokens) - await validateExpectations(ctx, block, OTokenAPY, firstBlock, entities.superoethb_oTokenApies) - await validateExpectations(ctx, block, OTokenHistory, firstBlock, entities.superoethb_oTokenHistories) - await validateExpectations(ctx, block, OTokenRebase, firstBlock, entities.superoethb_oTokenRebases) - await validateExpectations(ctx, block, OTokenDailyStat, firstBlock, entities.superoethb_oTokenDailyStats) - await validateExpectations(ctx, block, ERC20Balance, firstBlock, entities.superoethb_erc20Balances) - const strategyBalances = Object.keys(entities).filter((k) => k.startsWith('strategyBalances_superoethb_')) - assert(strategyBalances.length > 0, 'No strategyBalances found') - for (const key of strategyBalances) { - await validateExpectations(ctx, block, StrategyBalance, firstBlock, entities[key as keyof typeof entities]) - } - const strategyDailyYields = Object.keys(entities).filter((k) => k.startsWith('strategyDailyYields_superoethb_')) - assert(strategyDailyYields.length > 0, 'No strategyDailyYields found') - for (const key of strategyDailyYields) { - await validateExpectations(ctx, block, StrategyDailyYield, firstBlock, entities[key as keyof typeof entities]) - } - firstBlock = false - } + await validateBlocks(ctx, expectationSets) } diff --git a/src/mainnet/validators/validate-mainnet.ts b/src/mainnet/validators/validate-mainnet.ts index cad22a04..0c6cb912 100644 --- a/src/mainnet/validators/validate-mainnet.ts +++ b/src/mainnet/validators/validate-mainnet.ts @@ -8,25 +8,22 @@ import { TransactionDetails, } from '@model' import { Context } from '@processor' -import { env } from '@utils/env' import { entities } from '@validation/entities' -import { validateExpectations } from '@validation/validate' +import { validateBlocks } from '@validation/validate' export const name = 'validate-mainnet' -let firstBlock = true +const expectationSets = [ + { entity: ERC20Balance, expectations: entities.ogn_erc20Balances }, + { entity: ERC20Balance, expectations: entities.oeth_erc20Balances }, + { entity: ArmDailyStat, expectations: entities.lidoarm_armDailyStats }, + { entity: ArmState, expectations: entities.lidoarm_armStates }, + { entity: ArmWithdrawalRequest, expectations: entities.lidoarm_armWithdrawalRequests }, + { entity: TransactionDetails, expectations: entities.lidoarm_transactionDetails }, + { entity: OGNDailyStat, expectations: entities.ognDailyStats }, + { entity: BeaconDepositEvent, expectations: entities.beaconDepositEvents }, +] export const process = async (ctx: Context) => { - if (env.BLOCK_FROM || env.PROCESSOR) return - for (const block of ctx.blocks) { - await validateExpectations(ctx, block, ERC20Balance, firstBlock, entities.ogn_erc20Balances) - await validateExpectations(ctx, block, ERC20Balance, firstBlock, entities.oeth_erc20Balances) - await validateExpectations(ctx, block, ArmDailyStat, firstBlock, entities.lidoarm_armDailyStats) - await validateExpectations(ctx, block, ArmState, firstBlock, entities.lidoarm_armStates) - await validateExpectations(ctx, block, ArmWithdrawalRequest, firstBlock, entities.lidoarm_armWithdrawalRequests) - await validateExpectations(ctx, block, TransactionDetails, firstBlock, entities.lidoarm_transactionDetails) - await validateExpectations(ctx, block, OGNDailyStat, firstBlock, entities.ognDailyStats) - await validateExpectations(ctx, block, BeaconDepositEvent, firstBlock, entities.beaconDepositEvents) - firstBlock = false - } + await validateBlocks(ctx, expectationSets) } diff --git a/src/oeth/validators/validate-oeth/validate-oeth.ts b/src/oeth/validators/validate-oeth/validate-oeth.ts index 8d753aaf..19e863b4 100644 --- a/src/oeth/validators/validate-oeth/validate-oeth.ts +++ b/src/oeth/validators/validate-oeth/validate-oeth.ts @@ -1,5 +1,3 @@ -import assert from 'assert' - import { OToken, OTokenAPY, @@ -10,32 +8,28 @@ import { StrategyDailyYield, } from '@model' import { Context } from '@processor' -import { env } from '@utils/env' import { entities } from '@validation/entities' -import { validateExpectations } from '@validation/validate' +import { validateBlocks } from '@validation/validate' export const name = 'validate-oeth' -let firstBlock = true +const strategyBalances = Object.keys(entities) + .filter((k) => k.startsWith('strategyBalances_oeth_')) + .map((k) => entities[k as keyof typeof entities]) +const strategyDailyYields = Object.keys(entities) + .filter((k) => k.startsWith('strategyDailyYields_oeth_')) + .map((k) => entities[k as keyof typeof entities]) + +const expectationSets = [ + { entity: OToken, expectations: entities.oeth_oTokens }, + { entity: OTokenAPY, expectations: entities.oeth_oTokenApies }, + { entity: OTokenHistory, expectations: entities.oeth_oTokenHistories }, + { entity: OTokenRebase, expectations: entities.oeth_oTokenRebases }, + { entity: OTokenDailyStat, expectations: entities.oeth_oTokenDailyStats }, + ...strategyBalances.map((entities) => ({ entity: StrategyBalance, expectations: entities })), + ...strategyDailyYields.map((entities) => ({ entity: StrategyDailyYield, expectations: entities })), +] export const process = async (ctx: Context) => { - if (env.BLOCK_FROM || env.PROCESSOR) return - for (const block of ctx.blocks) { - await validateExpectations(ctx, block, OToken, firstBlock, entities.oeth_oTokens) - await validateExpectations(ctx, block, OTokenAPY, firstBlock, entities.oeth_oTokenApies) - await validateExpectations(ctx, block, OTokenHistory, firstBlock, entities.oeth_oTokenHistories) - await validateExpectations(ctx, block, OTokenRebase, firstBlock, entities.oeth_oTokenRebases) - await validateExpectations(ctx, block, OTokenDailyStat, firstBlock, entities.oeth_oTokenDailyStats) - const strategyBalances = Object.keys(entities).filter((k) => k.startsWith('strategyBalances_oeth_')) - assert(strategyBalances.length > 0, 'No strategyBalances found') - for (const key of strategyBalances) { - await validateExpectations(ctx, block, StrategyBalance, firstBlock, entities[key as keyof typeof entities]) - } - const strategyDailyYields = Object.keys(entities).filter((k) => k.startsWith('strategyDailyYields_oeth_')) - assert(strategyDailyYields.length > 0, 'No strategyDailyYields found') - for (const key of strategyDailyYields) { - await validateExpectations(ctx, block, StrategyDailyYield, firstBlock, entities[key as keyof typeof entities]) - } - firstBlock = false - } + await validateBlocks(ctx, expectationSets) } diff --git a/src/ousd/validators/validate-ousd/validate-ousd.ts b/src/ousd/validators/validate-ousd/validate-ousd.ts index 290b05e0..9d57bf12 100644 --- a/src/ousd/validators/validate-ousd/validate-ousd.ts +++ b/src/ousd/validators/validate-ousd/validate-ousd.ts @@ -1,5 +1,3 @@ -import assert from 'assert' - import { ERC20Balance, OToken, @@ -11,34 +9,30 @@ import { StrategyDailyYield, } from '@model' import { Context } from '@processor' -import { env } from '@utils/env' import { entities, manualEntities } from '@validation/entities' -import { validateExpectations } from '@validation/validate' +import { validateBlocks } from '@validation/validate' export const name = 'validate-ousd' -let firstBlock = true +const strategyBalances = Object.keys(entities) + .filter((k) => k.startsWith('strategyBalances_ousd_')) + .map((k) => entities[k as keyof typeof entities]) +const strategyDailyYields = Object.keys(entities) + .filter((k) => k.startsWith('strategyDailyYields_ousd_')) + .map((k) => entities[k as keyof typeof entities]) + +const expectationSets = [ + { entity: OToken, expectations: entities.ousd_oTokens }, + { entity: OTokenAPY, expectations: entities.ousd_oTokenApies }, + { entity: OTokenHistory, expectations: entities.ousd_oTokenHistories }, + { entity: OTokenRebase, expectations: entities.ousd_oTokenRebases }, + { entity: OTokenDailyStat, expectations: entities.ousd_oTokenDailyStats }, + { entity: ERC20Balance, expectations: entities.ousd_erc20Balances }, + { entity: ERC20Balance, expectations: manualEntities.erc20_discrepancy_testing }, + ...strategyBalances.map((entities) => ({ entity: StrategyBalance, expectations: entities })), + ...strategyDailyYields.map((entities) => ({ entity: StrategyDailyYield, expectations: entities })), +] export const process = async (ctx: Context) => { - if (env.BLOCK_FROM || env.PROCESSOR) return - for (const block of ctx.blocks) { - await validateExpectations(ctx, block, OToken, firstBlock, entities.ousd_oTokens) - await validateExpectations(ctx, block, OTokenAPY, firstBlock, entities.ousd_oTokenApies) - await validateExpectations(ctx, block, OTokenHistory, firstBlock, entities.ousd_oTokenHistories) - await validateExpectations(ctx, block, OTokenRebase, firstBlock, entities.ousd_oTokenRebases) - await validateExpectations(ctx, block, OTokenDailyStat, firstBlock, entities.ousd_oTokenDailyStats) - await validateExpectations(ctx, block, ERC20Balance, firstBlock, entities.ousd_erc20Balances) - await validateExpectations(ctx, block, ERC20Balance, firstBlock, manualEntities.erc20_discrepancy_testing) - const strategyBalances = Object.keys(entities).filter((k) => k.startsWith('strategyBalances_ousd_')) - assert(strategyBalances.length > 0, 'No strategyBalances found') - for (const key of strategyBalances) { - await validateExpectations(ctx, block, StrategyBalance, firstBlock, entities[key as keyof typeof entities]) - } - const strategyDailyYields = Object.keys(entities).filter((k) => k.startsWith('strategyDailyYields_ousd_')) - assert(strategyDailyYields.length > 0, 'No strategyDailyYields found') - for (const key of strategyDailyYields) { - await validateExpectations(ctx, block, StrategyDailyYield, firstBlock, entities[key as keyof typeof entities]) - } - firstBlock = false - } + await validateBlocks(ctx, expectationSets) } diff --git a/src/validation/validate.ts b/src/validation/validate.ts index 2f94dce3..9277f6f1 100644 --- a/src/validation/validate.ts +++ b/src/validation/validate.ts @@ -1,11 +1,38 @@ import assert from 'assert' +import { compact } from 'lodash' import { Block, Context } from '@processor' import { Entity, EntityClass } from '@subsquid/typeorm-store/lib/store' +import { env } from '@utils/env' import { compare } from './compare' -export const validateExpectations = async < +export const validateBlocks = async ( + ctx: Context, + expectationSets: { + entity: EntityClass + expectations: (Entity & { + timestamp: string + blockNumber: number + })[] + }[], +) => { + let firstBlock = true + if (env.BLOCK_FROM || env.PROCESSOR) return + let promises: Promise[] = [] + for (const block of ctx.blocks) { + const validations = [] + for (const { entity, expectations } of expectationSets) { + validations.push(validateExpectations(ctx, block, entity, firstBlock, expectations)) + firstBlock = false + } + promises.push(...compact(validations)) + } + await Promise.all(promises) +} + +// If there is nothing to validate, we don't return a promise. (for performance) +export const validateExpectations = < T extends Entity & { timestamp: string blockNumber: number @@ -16,19 +43,26 @@ export const validateExpectations = async < Class: EntityClass, firstBlock: boolean, expectations?: T[], -) => { +): Promise | undefined => { if (!expectations) return - if (firstBlock) { - while (expectations[0]?.blockNumber < block.header.height) { - const entity = expectations.shift()! - await validateExpectation(ctx, block, Class, entity) + return new Promise(async (resolve, reject) => { + try { + if (firstBlock) { + while (expectations[0]?.blockNumber < block.header.height) { + const entity = expectations.shift()! + await validateExpectation(ctx, block, Class, entity) + } + } + assert(!expectations.length || expectations[0]?.blockNumber >= block.header.height, 'Something is missing') + while (expectations[0]?.blockNumber === block.header.height) { + const entity = expectations.shift()! + await validateExpectation(ctx, block, Class, entity) + } + resolve() + } catch (e) { + reject(e) } - } - assert(!expectations.length || expectations[0]?.blockNumber >= block.header.height, 'Something is missing') - while (expectations[0]?.blockNumber === block.header.height) { - const entity = expectations.shift()! - await validateExpectation(ctx, block, Class, entity) - } + }) } const validateExpectation = async < From 8d7786bdee31181411da8be145d9ad18388de991 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Wed, 18 Dec 2024 13:55:02 -0800 Subject: [PATCH 08/16] perf work - extend context with `blocksWithContent` and `frequencyBlocks` to reduce overall iterations - print extra stats & debug info - modify blockFrequencyUpdater to allow for parallel execution - fix ousd wotoken `from` - attack performance in several places --- src/base/bridged-woeth-strategy.ts | 3 +- src/base/exchange-rates.ts | 9 +- src/mainnet/processors/legacy-staking.ts | 2 +- src/mainnet/processors/native-staking.ts | 6 +- src/oeth/processors/exchange-rates.ts | 2 +- src/ogv/post-processors/governance.ts | 9 +- src/ogv/processors/ogv-supply.ts | 16 +- src/ogv/processors/ogv.ts | 69 ++------- src/ousd/processors/morpho-market-states.ts | 9 +- src/ousd/processors/ousd/ousd.ts | 2 +- src/polyfills/rpc-issues.ts | 3 + src/processor.ts | 56 ++++--- src/templates/aerodrome/cl-gauge.ts | 2 +- src/templates/aerodrome/cl-pool.ts | 36 +++-- src/templates/aerodrome/gauge.ts | 2 +- src/templates/aerodrome/lp.ts | 5 +- src/templates/aerodrome/pool.ts | 40 +++-- src/templates/aerodrome/voter-escrow.ts | 4 +- src/templates/aerodrome/voter.ts | 2 +- src/templates/erc20/erc20-event.ts | 2 +- src/templates/erc20/erc20-polling.ts | 142 +++++++++--------- src/templates/events/createEventProcessor.ts | 5 +- .../exponential-staking.ts | 2 +- .../fixed-rate-rewards-source.ts | 2 +- src/templates/governance/governance.ts | 1 - .../strategy-rewards/strategy-rewards.ts | 9 +- src/templates/transactions.ts | 2 +- src/templates/withdrawals.ts | 2 +- src/utils/blockFrequencyUpdater.ts | 18 ++- src/utils/parallel.ts | 14 ++ src/utils/processing-stats.ts | 20 +++ src/utils/waitForEvents.ts | 2 +- 32 files changed, 251 insertions(+), 247 deletions(-) create mode 100644 src/utils/parallel.ts create mode 100644 src/utils/processing-stats.ts diff --git a/src/base/bridged-woeth-strategy.ts b/src/base/bridged-woeth-strategy.ts index ee820dc1..5e576aa8 100644 --- a/src/base/bridged-woeth-strategy.ts +++ b/src/base/bridged-woeth-strategy.ts @@ -10,13 +10,14 @@ const filter = logFilter({ topic0: [bridgedWOETHStrategyABI.events.WOETHPriceUpdated.topic], }) export const bridgedWoethStrategy = { + name: 'bridged-woeth-strategy', from: 18689567, setup: (processor: EvmBatchProcessor) => { processor.addLog(filter.value) }, process: async (ctx: Context) => { const result: EventWOETHPriceUpdated[] = [] - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { if (block.header.height < bridgedWoethStrategy.from) continue for (const log of block.logs) { if (filter.matches(log)) { diff --git a/src/base/exchange-rates.ts b/src/base/exchange-rates.ts index 9409c551..9f63000a 100644 --- a/src/base/exchange-rates.ts +++ b/src/base/exchange-rates.ts @@ -1,7 +1,8 @@ import { Context } from '@processor' import { ensureExchangeRates } from '@shared/post-processors/exchange-rates' import { EvmBatchProcessor } from '@subsquid/evm-processor' -import { blockFrequencyUpdater } from '@utils/blockFrequencyUpdater' + +export const name = 'exchange-rates-base' export const from = 16586878 @@ -10,8 +11,8 @@ export const setup = (processor: EvmBatchProcessor) => { } export const process = async (ctx: Context) => { - const blockFrequencyUpdate = blockFrequencyUpdater({ from }) - await blockFrequencyUpdate(ctx, async (ctx, block) => { + for (const block of ctx.frequencyBlocks) { + if (block.header.height < from) continue await ensureExchangeRates(ctx, block, [ ['AERO', 'USD'], ['OGN', 'USD'], @@ -19,5 +20,5 @@ export const process = async (ctx: Context) => { ['ETH', 'USD'], ['superOETHb', 'USD'], ]) - }) + } } diff --git a/src/mainnet/processors/legacy-staking.ts b/src/mainnet/processors/legacy-staking.ts index 0613a099..144922b1 100644 --- a/src/mainnet/processors/legacy-staking.ts +++ b/src/mainnet/processors/legacy-staking.ts @@ -29,7 +29,7 @@ export const process = async (ctx: Context) => { legacyStakers: new Map(), } - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { const firstTopic = log.topics[0] diff --git a/src/mainnet/processors/native-staking.ts b/src/mainnet/processors/native-staking.ts index b3928430..98c1990f 100644 --- a/src/mainnet/processors/native-staking.ts +++ b/src/mainnet/processors/native-staking.ts @@ -54,12 +54,14 @@ interface Result { } export const process = async (ctx: Context) => { - if (ctx.blocks[ctx.blocks.length - 1].header.height < from) return + if (!ctx.blocksWithContent.length || ctx.blocksWithContent[ctx.blocksWithContent.length - 1].header.height < from) { + return + } const result: Result = { pubkeys: new Map(), deposits: new Map(), } - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { if (block.header.height < from) continue for (const log of block.logs) { if (beaconDepositFilter.matches(log)) { diff --git a/src/oeth/processors/exchange-rates.ts b/src/oeth/processors/exchange-rates.ts index 39a22dd3..2641024c 100644 --- a/src/oeth/processors/exchange-rates.ts +++ b/src/oeth/processors/exchange-rates.ts @@ -10,7 +10,7 @@ export const setup = (processor: EvmBatchProcessor) => { } export const process = async (ctx: Context) => { - const blockFrequencyUpdate = blockFrequencyUpdater({ from }) + const blockFrequencyUpdate = blockFrequencyUpdater({ from, parallelProcessing: true }) await blockFrequencyUpdate(ctx, async (ctx, block) => { await ensureExchangeRates(ctx, block, [ ['ETH', 'USD'], diff --git a/src/ogv/post-processors/governance.ts b/src/ogv/post-processors/governance.ts index 27003c8a..17ec5bce 100644 --- a/src/ogv/post-processors/governance.ts +++ b/src/ogv/post-processors/governance.ts @@ -1,5 +1,3 @@ -import { formatEther } from 'viem' - import * as governanceAbi from '@abi/governance' import { OGVAddress, @@ -58,8 +56,9 @@ export const initialize = async (ctx: Context) => { } export const process = async (ctx: Context) => { - if (ctx.blocks[ctx.blocks.length - 1]?.header.height < from) return - + if (!ctx.blocksWithContent.length || ctx.blocksWithContent[ctx.blocksWithContent.length - 1].header.height < from) { + return + } const result: IProcessResult = { addresses: new Map(), proposals: new Map(), @@ -68,7 +67,7 @@ export const process = async (ctx: Context) => { } _updateStatusBlocks() - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { if (log.address !== OGV_GOVERNANCE_ADDRESS) continue diff --git a/src/ogv/processors/ogv-supply.ts b/src/ogv/processors/ogv-supply.ts index 3a6fc182..8f0294f7 100644 --- a/src/ogv/processors/ogv-supply.ts +++ b/src/ogv/processors/ogv-supply.ts @@ -3,7 +3,6 @@ import { OGV } from '@model' import { Context } from '@processor' import { EvmBatchProcessor } from '@subsquid/evm-processor' import { OGV_ADDRESS, VEOGV_ADDRESS } from '@utils/addresses' -import { blockFrequencyUpdater } from '@utils/blockFrequencyUpdater' export const from = 14439231 // https://etherscan.io/tx/0x9295cac246169f06a3d4ec33fdbd87fced7a9e19ea61177cae75034e45ae66f4 @@ -13,19 +12,13 @@ export const setup = (processor: EvmBatchProcessor) => { }) } -const update = blockFrequencyUpdater({ from }) export const process = async (ctx: Context) => { const supplyData: OGV[] = [] - - await update(ctx, async (ctx, block) => { + for (const block of ctx.frequencyBlocks) { + if (block.header.height < from) continue const ogvToken = new erc20Abi.Contract(ctx, block.header, OGV_ADDRESS) - - const [staked, total] = await Promise.all([ - ogvToken.balanceOf(VEOGV_ADDRESS), - ogvToken.totalSupply(), - ]) + const [staked, total] = await Promise.all([ogvToken.balanceOf(VEOGV_ADDRESS), ogvToken.totalSupply()]) const circulating = total - staked - const supplyAtBlock = new OGV({ id: `${block.header.height}`, timestamp: new Date(block.header.timestamp), @@ -34,9 +27,8 @@ export const process = async (ctx: Context) => { staked, total, }) - supplyData.push(supplyAtBlock) - }) + } await ctx.store.insert(supplyData) } diff --git a/src/ogv/processors/ogv.ts b/src/ogv/processors/ogv.ts index 2f71bcae..de980856 100644 --- a/src/ogv/processors/ogv.ts +++ b/src/ogv/processors/ogv.ts @@ -1,11 +1,6 @@ import * as erc20Abi from '@abi/erc20' import * as veogvAbi from '@abi/veogv' -import { - OGVAddress, - OGVLockup, - OGVLockupEventType, - OGVLockupTxLog, -} from '@model' +import { OGVAddress, OGVLockup, OGVLockupEventType, OGVLockupTxLog } from '@model' import { Block, Context, Log } from '@processor' import { EvmBatchProcessor } from '@subsquid/evm-processor' import { ADDRESS_ZERO, OGV_ADDRESS, VEOGV_ADDRESS } from '@utils/addresses' @@ -45,7 +40,7 @@ export const process = async (ctx: Context) => { lockupEvents: [], } - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { const firstTopic = log.topics[0] @@ -67,21 +62,12 @@ export const process = async (ctx: Context) => { } } - await ctx.store.upsert( - Array.from(result.addresses.values()).sort((a, b) => - a.delegatee?.id ? 1 : -1, - ), - ) + await ctx.store.upsert(Array.from(result.addresses.values()).sort((a, b) => (a.delegatee?.id ? 1 : -1))) await ctx.store.upsert(Array.from(result.lockups.values())) await ctx.store.upsert(result.lockupEvents) } -const _processTransfer = async ( - ctx: Context, - result: IProcessResult, - block: Block, - log: Log, -) => { +const _processTransfer = async (ctx: Context, result: IProcessResult, block: Block, log: Log) => { const { addresses } = result let { from, to, value } = erc20Abi.events.Transfer.decode(log) @@ -116,12 +102,7 @@ const _processTransfer = async ( } } -const _processDelegateChanged = async ( - ctx: Context, - result: IProcessResult, - block: Block, - log: Log, -) => { +const _processDelegateChanged = async (ctx: Context, result: IProcessResult, block: Block, log: Log) => { const { addresses } = result let { delegator, toDelegate } = veogvAbi.events.DelegateChanged.decode(log) delegator = delegator.toLowerCase() @@ -136,15 +117,9 @@ const _processDelegateChanged = async ( addresses.set(delegator, address) } -const _processDelegateVotesChanged = async ( - ctx: Context, - result: IProcessResult, - block: Block, - log: Log, -) => { +const _processDelegateVotesChanged = async (ctx: Context, result: IProcessResult, block: Block, log: Log) => { const { addresses } = result - let { delegate, newBalance } = - veogvAbi.events.DelegateVotesChanged.decode(log) + let { delegate, newBalance } = veogvAbi.events.DelegateVotesChanged.decode(log) delegate = delegate.toLowerCase() const address = await _getAddress(ctx, delegate, result) @@ -155,16 +130,10 @@ const _processDelegateVotesChanged = async ( addresses.set(delegate, address) } -const _processStake = async ( - ctx: Context, - result: IProcessResult, - block: Block, - log: Log, -) => { +const _processStake = async (ctx: Context, result: IProcessResult, block: Block, log: Log) => { const { lockups } = result - const { lockupId, amount, user, points, end } = - veogvAbi.events.Stake.decode(log) + const { lockupId, amount, user, points, end } = veogvAbi.events.Stake.decode(log) const address = await _getAddress(ctx, user, result) const lockup = await _getLockup(ctx, lockupId.toString(), address, result) @@ -206,12 +175,7 @@ const _processStake = async ( await _updateVotingPowers(ctx, result, block, address) } -const _processUnstake = async ( - ctx: Context, - result: IProcessResult, - block: Block, - log: Log, -) => { +const _processUnstake = async (ctx: Context, result: IProcessResult, block: Block, log: Log) => { const { lockupId, user, amount } = veogvAbi.events.Unstake.decode(log) const address = await _getAddress(ctx, user, result) const lockup = await _getLockup(ctx, lockupId.toString(), address, result) @@ -234,12 +198,7 @@ const _processUnstake = async ( await _updateVotingPowers(ctx, result, block, address) } -const _updateVotingPowers = async ( - ctx: Context, - result: IProcessResult, - block: Block, - address: OGVAddress, -) => { +const _updateVotingPowers = async (ctx: Context, result: IProcessResult, block: Block, address: OGVAddress) => { const { addresses } = result const veogv = new veogvAbi.Contract(ctx, block.header, VEOGV_ADDRESS) @@ -256,11 +215,7 @@ const _updateVotingPowers = async ( } } -const _getAddress = async ( - ctx: Context, - id: string, - result: IProcessResult, -): Promise => { +const _getAddress = async (ctx: Context, id: string, result: IProcessResult): Promise => { id = id.toLowerCase() const { addresses } = result diff --git a/src/ousd/processors/morpho-market-states.ts b/src/ousd/processors/morpho-market-states.ts index 05e87fe6..6fc9869f 100644 --- a/src/ousd/processors/morpho-market-states.ts +++ b/src/ousd/processors/morpho-market-states.ts @@ -4,7 +4,6 @@ import { MorphoMarketState } from '@model' import { Context } from '@processor' import { EvmBatchProcessor } from '@subsquid/evm-processor' import { META_MORPHO_ADDRESS, MORPHO_ADDRESS } from '@utils/addresses' -import { blockFrequencyUpdater } from '@utils/blockFrequencyUpdater' import { multicall } from '@utils/multicall' import { range } from '@utils/range' @@ -14,12 +13,10 @@ const setup = (processor: EvmBatchProcessor) => { processor.includeAllBlocks({ from }) } -const tracker = blockFrequencyUpdater({ from }) - const process = async (ctx: Context) => { const states: MorphoMarketState[] = [] - - await tracker(ctx, async (ctx, block) => { + for (const block of ctx.frequencyBlocks) { + if (block.header.height < from) continue const metaMorphoContract = new metaMorpho.Contract(ctx, block.header, META_MORPHO_ADDRESS) const supplyLength = await metaMorphoContract.supplyQueueLength() const marketIds = await multicall( @@ -56,7 +53,7 @@ const process = async (ctx: Context) => { }) }), ) - }) + } await ctx.store.insert(states) } diff --git a/src/ousd/processors/ousd/ousd.ts b/src/ousd/processors/ousd/ousd.ts index eab6e04b..67c04e6f 100644 --- a/src/ousd/processors/ousd/ousd.ts +++ b/src/ousd/processors/ousd/ousd.ts @@ -24,7 +24,7 @@ export const { name, from, setup, process } = createOTokenProcessor({ otokenAddress: OUSD_ADDRESS, wotoken: { address: WOUSD_ADDRESS, - from: 14566204, // https://etherscan.io/tx/0x5b16078d43861bf0e7a08aa3f061dbfce1c76bc5fc7cedaa96e2156d15651df1 + from: 14566215, // https://etherscan.io/tx/0x5b16078d43861bf0e7a08aa3f061dbfce1c76bc5fc7cedaa96e2156d15651df1 }, dripper: { address: OUSD_DRIPPER_ADDRESS, diff --git a/src/polyfills/rpc-issues.ts b/src/polyfills/rpc-issues.ts index 4ca7aa96..4e72d113 100644 --- a/src/polyfills/rpc-issues.ts +++ b/src/polyfills/rpc-issues.ts @@ -2,6 +2,7 @@ // import * as fs from 'node:fs' import { CallOptions, RpcClient } from '@subsquid/rpc-client' import { RpcCall } from '@subsquid/rpc-client/src/interfaces' +import { processingStats } from '@utils/processing-stats' ;(RpcClient.prototype as any)._call = RpcClient.prototype.call ;(RpcClient.prototype as any)._batchCall = RpcClient.prototype.batchCall @@ -12,6 +13,7 @@ RpcClient.prototype.call = async function ( params?: any[], options?: CallOptions, ): Promise { + processingStats.rpcCalls++ const response = await (this as any)._call(method, params, options) if (method === 'debug_traceBlockByHash') { fixSelfDestructs(response) @@ -21,6 +23,7 @@ RpcClient.prototype.call = async function ( return response } RpcClient.prototype.batchCall = async function (batch: RpcCall[], options?: CallOptions): Promise { + processingStats.rpcCalls += batch.length const response = await (this as any)._batchCall(batch, options) for (let i = 0; i < batch.length; i++) { if (batch[i].method === 'debug_traceBlockByHash') { diff --git a/src/processor.ts b/src/processor.ts index a3885b5e..5c6e814a 100644 --- a/src/processor.ts +++ b/src/processor.ts @@ -9,7 +9,9 @@ import { arbitrum, base, mainnet } from 'viem/chains' import { KnownArchivesEVM, lookupArchive } from '@subsquid/archive-registry' import { DataHandlerContext, EvmBatchProcessor, EvmBatchProcessorFields } from '@subsquid/evm-processor' import { Store, TypeormDatabase } from '@subsquid/typeorm-store' +import { blockFrequencyTracker } from '@utils/blockFrequencyUpdater' import { calculateBlockRate } from '@utils/calculateBlockRate' +import { printStats } from '@utils/processing-stats' import './polyfills/rpc-issues' @@ -23,6 +25,7 @@ export const createEvmBatchProcessor = (config: ChainConfig) => { .setRpcEndpoint({ url, maxBatchCallSize: url.includes('alchemy.com') ? 1 : 100, + // rateLimit: url.includes('sqd_rpc') ? 100 : undefined, }) .setRpcDataIngestionSettings({ disabled: process.env.ARCHIVE_ONLY === 'true', @@ -137,17 +140,20 @@ export const run = ({ chainId = 1, stateSchema, processors, postProcessors, vali // console.log('config', JSON.stringify(config, null, 2)) const evmBatchProcessor = createEvmBatchProcessor(config) + const from = process.env.BLOCK_FROM + ? Number(process.env.BLOCK_FROM) + : Math.min( + ...(processors.map((p) => p.from).filter((x) => x) as number[]), + ...((postProcessors ?? []).map((p) => p.from).filter((x) => x) as number[]), + ) + const to = process.env.BLOCK_TO ? Number(process.env.BLOCK_TO) : undefined evmBatchProcessor.setBlockRange({ - from: process.env.BLOCK_FROM - ? Number(process.env.BLOCK_FROM) - : Math.min( - ...(processors.map((p) => p.from).filter((x) => x) as number[]), - ...((postProcessors ?? []).map((p) => p.from).filter((x) => x) as number[]), - ), - to: process.env.BLOCK_TO ? Number(process.env.BLOCK_TO) : undefined, + from, + to, }) processors.forEach((p) => p.setup?.(evmBatchProcessor, config.chain)) postProcessors?.forEach((p) => p.setup?.(evmBatchProcessor, config.chain)) + const frequencyTracker = blockFrequencyTracker({ from }) evmBatchProcessor.run( new TypeormDatabase({ stateSchema, @@ -155,14 +161,18 @@ export const run = ({ chainId = 1, stateSchema, processors, postProcessors, vali isolationLevel: 'READ COMMITTED', }), async (_ctx) => { + const contextTime = Date.now() const ctx = _ctx as Context try { ctx.chain = config.chain ctx.__state = new Map() if (ctx.blocks.length >= 1) { ctx.blockRate = await calculateBlockRate(ctx) - // ctx.log.info({ bps: ctx.bps, length: ctx.blocks.length }) } + ctx.blocksWithContent = ctx.blocks.filter( + (b) => b.logs.length > 0 || b.traces.length > 0 || b.transactions.length > 0, + ) + ctx.frequencyBlocks = ctx.blocks.filter((b) => frequencyTracker(ctx, b)) let start: number const time = (name: string) => () => { @@ -178,10 +188,16 @@ export const run = ({ chainId = 1, stateSchema, processors, postProcessors, vali const times = await Promise.all([ ...processors .filter((p) => p.initialize) - .map((p, index) => p.initialize!(ctx).then(time(p.name ?? `initializing processor-${index}`))), + .map((p, index) => + p.initialize!(ctx).then(time(p.name ? `initializing ${p.name}` : `initializing processor-${index}`)), + ), ...(postProcessors ?? []) .filter((p) => p.initialize) - .map((p, index) => p.initialize!(ctx).then(time(p.name ?? `initializing postProcessors-${index}`))), + .map((p, index) => + p.initialize!(ctx).then( + time(p.name ? `initializing ${p.name}` : `initializing postProcessors-${index}`), + ), + ), ]) times.forEach((t) => t()) } @@ -192,6 +208,7 @@ export const run = ({ chainId = 1, stateSchema, processors, postProcessors, vali processors.map((p, index) => p.process(ctx).then(time(p.name ?? `processor-${index}`))), ) if (process.env.DEBUG_PERF === 'true') { + ctx.log.info('===== Processor Times =====') times.forEach((t) => t()) } @@ -202,6 +219,7 @@ export const run = ({ chainId = 1, stateSchema, processors, postProcessors, vali postProcessors.map((p, index) => p.process(ctx).then(time(p.name ?? `postProcessor-${index}`))), ) if (process.env.DEBUG_PERF === 'true') { + ctx.log.info('===== Post Processor Times =====') postTimes.forEach((t) => t()) } } @@ -213,21 +231,13 @@ export const run = ({ chainId = 1, stateSchema, processors, postProcessors, vali validators.map((p, index) => p.process(ctx).then(time(p.name ?? `validator-${index}`))), ) if (process.env.DEBUG_PERF === 'true') { + ctx.log.info('===== Validator Times =====') validatorTimes.forEach((t) => t()) } } - } catch (err) { - ctx.log.info({ - blocks: ctx.blocks.length, - logs: ctx.blocks.reduce((sum, block) => sum + block.logs.length, 0), - traces: ctx.blocks.reduce((sum, block) => sum + block.traces.length, 0), - transactions: ctx.blocks.reduce((sum, block) => sum + block.transactions.length, 0), - // logArray: ctx.blocks.reduce( - // (logs, block) => [...logs, ...block.logs], - // [] as Log[], - // ), - }) - throw err + } finally { + printStats(ctx) + ctx.log.info(`===== End of Context ===== (${Date.now() - contextTime}ms, ${ctx.blocks.at(-1)?.header.height})`) } }, ) @@ -237,6 +247,8 @@ export type Fields = EvmBatchProcessorFields & { chain: Chain blockRate: number + blocksWithContent: Block[] + frequencyBlocks: Block[] __state: Map } export type Block = Context['blocks']['0'] diff --git a/src/templates/aerodrome/cl-gauge.ts b/src/templates/aerodrome/cl-gauge.ts index 26521707..b142d2c9 100644 --- a/src/templates/aerodrome/cl-gauge.ts +++ b/src/templates/aerodrome/cl-gauge.ts @@ -44,7 +44,7 @@ export const aerodromeCLGauge = (params: NonNullable): }, process: async (ctx) => { const entities = new Map>[]>() - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { for (const { name, process } of eventProcessors) { const entity = process(ctx, block, log) diff --git a/src/templates/aerodrome/cl-pool.ts b/src/templates/aerodrome/cl-pool.ts index e8019e13..ac106b37 100644 --- a/src/templates/aerodrome/cl-pool.ts +++ b/src/templates/aerodrome/cl-pool.ts @@ -42,10 +42,10 @@ export const aerodromeCLPool = (params: PoolDefinition): Processor => { }, } }) - const frequencyUpdater = blockFrequencyUpdater({ from: params.from }) + const frequencyUpdater = blockFrequencyUpdater({ from: params.from, parallelProcessing: true }) return { from: params.from, - name: `Aerodrome Pool ${params.address}`, + name: `Aerodrome CL Pool ${params.address}`, setup: (processor) => { processor.includeAllBlocks({ from: params.from }) for (const { filter } of eventProcessors) { @@ -55,7 +55,7 @@ export const aerodromeCLPool = (params: PoolDefinition): Processor => { process: async (ctx) => { const eventProcessing = async () => { const entities = new Map>[]>() - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { for (const { name, process } of eventProcessors) { const entity = process(ctx, block, log) @@ -78,21 +78,21 @@ export const aerodromeCLPool = (params: PoolDefinition): Processor => { const epochs: AeroPoolEpochState[] = [] const updateState = async (ctx: Context, block: Block) => { const poolContract = new aerodromeCLPoolAbi.Contract(ctx, block.header, params.address) - const totalVoteWeight = await getVoterTotalWeight(ctx, block) const voterContract = new aerodromeVoterAbi.Contract(ctx, block.header, baseAddresses.aerodrome.voter) - const voteWeight = await voterContract.weights(params.address) - const votePercentage = (voteWeight * 10n ** 18n) / totalVoteWeight - const token0Contract = new erc20Abi.Contract(ctx, block.header, params.assets[0].address) const token1Contract = new erc20Abi.Contract(ctx, block.header, params.assets[1].address) - const [liquidity, stakedLiquidity, reserve0, reserve1, slot0] = await Promise.all([ - poolContract.liquidity(), - poolContract.stakedLiquidity(), - token0Contract.balanceOf(params.address), - token1Contract.balanceOf(params.address), - poolContract.slot0(), - ]) + const [totalVoteWeight, voteWeight, liquidity, stakedLiquidity, reserve0, reserve1, slot0] = + await Promise.all([ + getVoterTotalWeight(ctx, block), + voterContract.weights(params.address), + poolContract.liquidity(), + poolContract.stakedLiquidity(), + token0Contract.balanceOf(params.address), + token1Contract.balanceOf(params.address), + poolContract.slot0(), + ]) + const votePercentage = (voteWeight * 10n ** 18n) / totalVoteWeight const tick = await poolContract.ticks(slot0.tick) const tickPrice = getPriceFromSqrtPriceX96(slot0.sqrtPriceX96) @@ -116,9 +116,10 @@ export const aerodromeCLPool = (params: PoolDefinition): Processor => { secondsOutside: tick.secondsOutside, }) - const [reserve0Usd, reserve1Usd] = await Promise.all([ + const [reserve0Usd, reserve1Usd, epochState] = await Promise.all([ convertRate(ctx, block, params.assets[0].address, baseAddresses.tokens.USDC, reserve0), convertRate(ctx, block, params.assets[1].address, baseAddresses.tokens.USDC, reserve1), + createAeroPoolEpoch(ctx, block, params.address), ]) const state = new AeroCLPoolState({ @@ -139,7 +140,6 @@ export const aerodromeCLPool = (params: PoolDefinition): Processor => { sqrtPriceX96: slot0.sqrtPriceX96, }) - const epochState = await createAeroPoolEpoch(ctx, block, params.address) if (epochState) { epochs.push(epochState) } @@ -148,9 +148,7 @@ export const aerodromeCLPool = (params: PoolDefinition): Processor => { ticks.push(currentTick) } await frequencyUpdater(ctx, updateState) - await ctx.store.insert(ticks) - await ctx.store.insert(states) - await ctx.store.insert(epochs) + await Promise.all([ctx.store.insert(ticks), ctx.store.insert(states), ctx.store.insert(epochs)]) } await Promise.all([eventProcessing(), aeroPoolStateProcessing()]) }, diff --git a/src/templates/aerodrome/gauge.ts b/src/templates/aerodrome/gauge.ts index ff5437f0..d620c9eb 100644 --- a/src/templates/aerodrome/gauge.ts +++ b/src/templates/aerodrome/gauge.ts @@ -44,7 +44,7 @@ export const aerodromeGauge = (gauge: NonNullable): Pro }, process: async (ctx) => { const entities = new Map>[]>() - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { for (const { name, process } of eventProcessors) { const entity = process(ctx, block, log) diff --git a/src/templates/aerodrome/lp.ts b/src/templates/aerodrome/lp.ts index c4001c4a..6230c34a 100644 --- a/src/templates/aerodrome/lp.ts +++ b/src/templates/aerodrome/lp.ts @@ -58,7 +58,7 @@ export const getPositions = async ( export const aerodromeLP = (pool: PoolDefinition): Processor[] => { const from = Math.max(16962730, pool.from) // Sugar deploy date or from. - const frequencyUpdater = blockFrequencyUpdater({ from }) + const frequencyUpdater = blockFrequencyUpdater({ from, parallelProcessing: true }) return pool.lps.map((lp) => { const processor: Processor = { from, @@ -135,8 +135,7 @@ export const aerodromeLP = (pool: PoolDefinition): Processor[] => { lpStates.push(lpState) } }) - await ctx.store.insert(lpStates) - await ctx.store.insert(lpPositionStates) + await Promise.all([ctx.store.insert(lpStates), ctx.store.insert(lpPositionStates)]) }, } return processor diff --git a/src/templates/aerodrome/pool.ts b/src/templates/aerodrome/pool.ts index fd54b270..b1710913 100644 --- a/src/templates/aerodrome/pool.ts +++ b/src/templates/aerodrome/pool.ts @@ -40,7 +40,7 @@ export const aerodromePool = (params: PoolDefinition): Processor => { }, } }) - const frequencyUpdater = blockFrequencyUpdater({ from: params.from }) + const frequencyUpdater = blockFrequencyUpdater({ from: params.from, parallelProcessing: true }) return { from: params.from, name: `Aerodrome Pool ${params.address}`, @@ -75,26 +75,22 @@ export const aerodromePool = (params: PoolDefinition): Processor => { const epochs: AeroPoolEpochState[] = [] await frequencyUpdater(ctx, async (ctx, block) => { const poolContract = new aerodromePoolAbi.Contract(ctx, block.header, params.address) - const liquidity = await poolContract.totalSupply() - const stakedLiquidity = params.gauge ? await poolContract.balanceOf(params.gauge.address) : 0n - const reserves = await poolContract.getReserves() - const reserve0Usd = await convertRate( - ctx, - block, - params.assets[0].address, - baseAddresses.tokens.USDC, - reserves._reserve0, - ) - const reserve1Usd = await convertRate( - ctx, - block, - params.assets[1].address, - baseAddresses.tokens.USDC, - reserves._reserve1, - ) - const totalVoteWeight = await getVoterTotalWeight(ctx, block) const voterContract = new aerodromeVoterAbi.Contract(ctx, block.header, baseAddresses.aerodrome.voter) - const voteWeight = await voterContract.weights(params.address) + + const [liquidity, stakedLiquidity, reserves, totalVoteWeight, voteWeight, epochState] = await Promise.all([ + poolContract.totalSupply(), + params.gauge ? poolContract.balanceOf(params.gauge.address) : Promise.resolve(0n), + poolContract.getReserves(), + getVoterTotalWeight(ctx, block), + voterContract.weights(params.address), + createAeroPoolEpoch(ctx, block, params.address), + ]) + + const [reserve0Usd, reserve1Usd] = await Promise.all([ + convertRate(ctx, block, params.assets[0].address, baseAddresses.tokens.USDC, reserves._reserve0), + convertRate(ctx, block, params.assets[1].address, baseAddresses.tokens.USDC, reserves._reserve1), + ]) + const votePercentage = (voteWeight * 10n ** 18n) / totalVoteWeight const state = new AeroPoolState({ id: `${ctx.chain.id}-${params.address}-${block.header.height}`, @@ -112,13 +108,11 @@ export const aerodromePool = (params: PoolDefinition): Processor => { }) states.push(state) - const epochState = await createAeroPoolEpoch(ctx, block, params.address) if (epochState) { epochs.push(epochState) } }) - await ctx.store.insert(states) - await ctx.store.insert(epochs) + await Promise.all([ctx.store.insert(states), ctx.store.insert(epochs)]) } await Promise.all([eventProcessing(), aeroPoolStateProcessing()]) diff --git a/src/templates/aerodrome/voter-escrow.ts b/src/templates/aerodrome/voter-escrow.ts index 0b7ec21f..56625891 100644 --- a/src/templates/aerodrome/voter-escrow.ts +++ b/src/templates/aerodrome/voter-escrow.ts @@ -1,5 +1,3 @@ -import { pick } from 'lodash' - import * as aerodromeVoterEscrowAbi from '@abi/aerodrome-voter-escrow' import * as models from '@model' import { Block, Context, Log, Processor } from '@processor' @@ -50,7 +48,7 @@ export const aerodromeVoterEscrow = (params: { address: string; from: number }): }, process: async (ctx) => { const entities = new Map>[]>() - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { for (const { name, process } of eventProcessors) { const entity = process(ctx, block, log) diff --git a/src/templates/aerodrome/voter.ts b/src/templates/aerodrome/voter.ts index 9366ed01..94c41176 100644 --- a/src/templates/aerodrome/voter.ts +++ b/src/templates/aerodrome/voter.ts @@ -51,7 +51,7 @@ export const aerodromeVoter = (params: { address: string; pools: string[]; from: }, process: async (ctx) => { const entities = new Map>[]>() - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { for (const { name, process } of eventProcessors) { const entity = process(ctx, block, log) diff --git a/src/templates/erc20/erc20-event.ts b/src/templates/erc20/erc20-event.ts index a525b288..924abb37 100644 --- a/src/templates/erc20/erc20-event.ts +++ b/src/templates/erc20/erc20-event.ts @@ -129,7 +129,7 @@ export const createERC20EventTracker = ({ from, address }: { from: number; addre return holder } - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { if (block.header.height < from) continue for (const log of block.logs) { diff --git a/src/templates/erc20/erc20-polling.ts b/src/templates/erc20/erc20-polling.ts index 5f0a3e27..c5c73920 100644 --- a/src/templates/erc20/erc20-polling.ts +++ b/src/templates/erc20/erc20-polling.ts @@ -1,10 +1,10 @@ import * as abi from '@abi/erc20' import { ERC20, ERC20Balance, ERC20Holder, ERC20State, ERC20Transfer } from '@model' -import { Context } from '@processor' +import { Block, Context } from '@processor' import { publishERC20State } from '@shared/erc20' import { EvmBatchProcessor } from '@subsquid/evm-processor' import { ADDRESS_ZERO } from '@utils/addresses' -import { blockFrequencyTracker } from '@utils/blockFrequencyUpdater' +import { blockFrequencyUpdater } from '@utils/blockFrequencyUpdater' import { logFilter } from '@utils/logFilter' import { multicall } from '@utils/multicall' import { TokenAddress } from '@utils/symbols' @@ -32,7 +32,7 @@ export const createERC20PollingTracker = ({ duplicateTracker.add(address) const accountFilterSet = accountFilter ? new Set(accountFilter.map((account) => account.toLowerCase())) : undefined - const intervalTracker = intervalTracking ? blockFrequencyTracker({ from }) : undefined + const frequencyUpdater = intervalTracking ? blockFrequencyUpdater({ from, parallelProcessing: true }) : undefined let erc20: ERC20 | undefined // Keep an in-memory record of what our current holders are. @@ -79,7 +79,7 @@ export const createERC20PollingTracker = ({ return { from, setup(processor: EvmBatchProcessor) { - if (intervalTracker) { + if (frequencyUpdater) { processor.includeAllBlocks({ from }) } else { transferLogFilters.forEach((filter) => processor.addLog(filter.value)) @@ -101,80 +101,84 @@ export const createERC20PollingTracker = ({ holders: new Map(), removedHolders: new Set(), } - for (const block of ctx.blocks) { - if (block.header.height < from) continue + + const updateState = async (ctx: Context, block: Block) => { const contract = new abi.Contract(ctx, block.header, address) - const updateState = async () => { - const id = `${ctx.chain.id}-${block.header.height}-${address}` - const totalSupply = await contract.totalSupply() - const state = new ERC20State({ - id, - chainId: ctx.chain.id, - address, - timestamp: new Date(block.header.timestamp), - blockNumber: block.header.height, - totalSupply, - holderCount: holders.size, - }) - result.states.set(id, state) + const id = `${ctx.chain.id}-${block.header.height}-${address}` + const totalSupply = await contract.totalSupply() + const state = new ERC20State({ + id, + chainId: ctx.chain.id, + address, + timestamp: new Date(block.header.timestamp), + blockNumber: block.header.height, + totalSupply, + holderCount: holders.size, + }) + result.states.set(id, state) + } + const updateBalances = async (ctx: Context, block: Block, accounts: string[], doStateUpdate = false) => { + if (accountFilterSet) { + accounts = accounts.filter((a) => accountFilterSet.has(a)) } - const updateBalances = async (accounts: string[], doStateUpdate = false) => { - if (accountFilterSet) { - accounts = accounts.filter((a) => accountFilterSet.has(a)) - } - if (accounts.length > 0) { - const balances = await multicall( - ctx, - block.header, - abi.functions.balanceOf, + if (accounts.length > 0) { + const balances = await multicall( + ctx, + block.header, + abi.functions.balanceOf, + address, + accounts.map((account) => ({ _owner: account })), + ) + accounts.forEach((account, i) => { + if (account === ADDRESS_ZERO) return + account = account.toLowerCase() + const id = `${ctx.chain.id}-${block.header.height}-${address}-${account}` + const balance = new ERC20Balance({ + id, + chainId: ctx.chain.id, + timestamp: new Date(block.header.timestamp), + blockNumber: block.header.height, address, - accounts.map((account) => ({ _owner: account })), - ) - accounts.forEach((account, i) => { - if (account === ADDRESS_ZERO) return - account = account.toLowerCase() - const id = `${ctx.chain.id}-${block.header.height}-${address}-${account}` - const balance = new ERC20Balance({ - id, + account, + balance: balances[i], + }) + result.balances.set(id, balance) + if (balance.balance === 0n) { + doStateUpdate = true + holders.delete(account) + result.holders.delete(account) + result.removedHolders.add(account) + } else { + const holder = new ERC20Holder({ + id: `${ctx.chain.id}-${address}-${account}`, chainId: ctx.chain.id, - timestamp: new Date(block.header.timestamp), - blockNumber: block.header.height, address, account, - balance: balances[i], + balance: balance.balance, }) - result.balances.set(id, balance) - if (balance.balance === 0n) { + if (!holders.has(account)) { doStateUpdate = true - holders.delete(account) - result.holders.delete(account) - result.removedHolders.add(account) - } else { - const holder = new ERC20Holder({ - id: `${ctx.chain.id}-${address}-${account}`, - chainId: ctx.chain.id, - address, - account, - balance: balance.balance, - }) - if (!holders.has(account)) { - doStateUpdate = true - holders.add(account) - } - result.holders.set(holder.account, holder) - result.removedHolders.delete(holder.account) + holders.add(account) } - }) - } - if (doStateUpdate) { - await updateState() - } + result.holders.set(holder.account, holder) + result.removedHolders.delete(holder.account) + } + }) } - const accounts = new Set() - let haveRebase = false - if (intervalTracker && intervalTracker(ctx, block) && accountFilter) { - await updateBalances(accountFilter) + if (doStateUpdate) { + await updateState(ctx, block) } + } + + if (frequencyUpdater && accountFilter) { + await frequencyUpdater(ctx, async (ctx, block) => { + await updateBalances(ctx, block, accountFilter!) + }) + } + + for (const block of ctx.blocksWithContent) { + if (block.header.height < from) continue + const accounts = new Set() for (const log of block.logs) { const isTransferLog = transferLogFilters.find((l) => l.matches(log)) @@ -182,7 +186,7 @@ export const createERC20PollingTracker = ({ const data = abi.events.Transfer.decode(log) accounts.add(data.from.toLowerCase()) accounts.add(data.to.toLowerCase()) - await updateBalances([data.from.toLowerCase(), data.to.toLowerCase()]) + await updateBalances(ctx, block, [data.from.toLowerCase(), data.to.toLowerCase()]) const fromHolder = result.holders.get(data.from.toLowerCase()) const toHolder = result.holders.get(data.to.toLowerCase()) const transfer = new ERC20Transfer({ @@ -201,7 +205,7 @@ export const createERC20PollingTracker = ({ result.transfers.set(transfer.id, transfer) } } - await updateBalances([...accounts]) + await updateBalances(ctx, block, [...accounts]) } await Promise.all([ ctx.store.upsert([...result.holders.values()]), diff --git a/src/templates/events/createEventProcessor.ts b/src/templates/events/createEventProcessor.ts index 7cf71323..148ff457 100644 --- a/src/templates/events/createEventProcessor.ts +++ b/src/templates/events/createEventProcessor.ts @@ -7,6 +7,7 @@ import { Entity } from '@subsquid/typeorm-store/lib/store' import { logFilter } from '@utils/logFilter' export const createEventProcessor = (params: { + name?: string event: ReturnType> address?: string from: number @@ -28,7 +29,7 @@ export const createEventProcessor = { const entities: EventEntity[] = [] - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { if (filter.matches(log)) { const decoded = params.event.decode(log) @@ -40,5 +41,5 @@ export const createEventProcessor = (), strategistUpdated: new Map(), } - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { for (const subProcessor of subProcessors) { if (subProcessor.filter.matches(log)) { diff --git a/src/templates/governance/governance.ts b/src/templates/governance/governance.ts index 13389db8..ea133006 100644 --- a/src/templates/governance/governance.ts +++ b/src/templates/governance/governance.ts @@ -1,4 +1,3 @@ -import { add } from 'lodash' import { Hex } from 'viem' import * as governanceAbi from '@abi/governance' diff --git a/src/templates/strategy-rewards/strategy-rewards.ts b/src/templates/strategy-rewards/strategy-rewards.ts index dfa16220..7e25ab38 100644 --- a/src/templates/strategy-rewards/strategy-rewards.ts +++ b/src/templates/strategy-rewards/strategy-rewards.ts @@ -17,8 +17,13 @@ export const createStrategyRewardSetup = ({ address, from }: { address: string; export const createStrategyRewardProcessor = (params: { oTokenAddress: string; address: string; from: number }) => { return async (ctx: Context) => { const events: OTokenRewardTokenCollected[] = [] - if (ctx.blocks[ctx.blocks.length - 1].header.height < params.from) return - for (const block of ctx.blocks) { + if ( + !ctx.blocksWithContent.length || + ctx.blocksWithContent[ctx.blocksWithContent.length - 1].header.height < params.from + ) { + return + } + for (const block of ctx.blocksWithContent) { if (block.header.height < params.from) continue for (const log of block.logs) { if (log.address === params.address && log.topics[0] === iat.events.RewardTokenCollected.topic) { diff --git a/src/templates/transactions.ts b/src/templates/transactions.ts index 97cdd630..8a68dbb2 100644 --- a/src/templates/transactions.ts +++ b/src/templates/transactions.ts @@ -17,7 +17,7 @@ export const createTransactionProcessor = (params: { from: number; address: stri }, process: async (ctx) => { const results: TransactionDetails[] = [] - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const transaction of block.transactions) { if (addressSet.has(transaction.from)) { results.push( diff --git a/src/templates/withdrawals.ts b/src/templates/withdrawals.ts index 12a31b9c..3867d3a7 100644 --- a/src/templates/withdrawals.ts +++ b/src/templates/withdrawals.ts @@ -40,7 +40,7 @@ export const createOTokenWithdrawalsProcessor = ({ withdrawalRequests: new Map(), } - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { for (const log of block.logs) { if (withdrawalRequestedFilter.matches(log)) { await processWithdrawalRequested(ctx, result, block, log) diff --git a/src/utils/blockFrequencyUpdater.ts b/src/utils/blockFrequencyUpdater.ts index bc2b3b46..cf6b0a4a 100644 --- a/src/utils/blockFrequencyUpdater.ts +++ b/src/utils/blockFrequencyUpdater.ts @@ -54,7 +54,8 @@ export const blockFrequencyTracker = (params: { from: number }) => { } } -export const blockFrequencyUpdater = (params: { from: number }) => { +export const blockFrequencyUpdater = (params: { from: number; parallelProcessing?: boolean }) => { + const parallelLimit = 10 const tracker = blockFrequencyTracker(params) return async (ctx: Context, fn: (ctx: Context, block: Block) => Promise) => { if (!ctx.blocks.length) return @@ -62,9 +63,18 @@ export const blockFrequencyUpdater = (params: { from: number }) => { // No applicable blocks in current context. return } - for (let i = 0; i < ctx.blocks.length; i++) { - if (tracker(ctx, ctx.blocks[i])) { - await fn(ctx, ctx.blocks[i]) + + const blocksToProcess = ctx.blocks.filter((block) => tracker(ctx, block)) + if (params.parallelProcessing) { + // Process blocks in parallel with a limit + for (let i = 0; i < blocksToProcess.length; i += parallelLimit) { + const chunk = blocksToProcess.slice(i, i + parallelLimit) + await Promise.all(chunk.map((block) => fn(ctx, block))) + } + } else { + // Process blocks sequentially + for (const block of blocksToProcess) { + await fn(ctx, block) } } } diff --git a/src/utils/parallel.ts b/src/utils/parallel.ts new file mode 100644 index 00000000..b0b6e1c4 --- /dev/null +++ b/src/utils/parallel.ts @@ -0,0 +1,14 @@ +export const parallel = async (fns: (() => Promise)[], concurrency: number) => { + const results: T[] = [] + let promises: Promise[] = [] + for (const fn of fns) { + promises.push(fn()) + if (promises.length >= concurrency) { + const result = await Promise.race(promises) + results.push(result) + promises = promises.filter((p) => p !== result) + } + } + results.push(...(await Promise.all(promises))) + return results +} diff --git a/src/utils/processing-stats.ts b/src/utils/processing-stats.ts new file mode 100644 index 00000000..d821fcf9 --- /dev/null +++ b/src/utils/processing-stats.ts @@ -0,0 +1,20 @@ +import { Context } from '@processor' + +export const processingStats = { + rpcCalls: 0, +} + +export const printStats = (ctx: Context) => { + if (process.env.DEBUG_PERF === 'true') { + ctx.log.info({ + ...processingStats, + blockCount: ctx.blocks.length, + blockCountWithContent: ctx.blocksWithContent.length, + frequencyBlockCount: ctx.frequencyBlocks.length, + logCount: ctx.blocks.reduce((sum, block) => sum + block.logs.length, 0), + traceCount: ctx.blocks.reduce((sum, block) => sum + block.traces.length, 0), + transactionCount: ctx.blocks.reduce((sum, block) => sum + block.transactions.length, 0), + }) + } + processingStats.rpcCalls = 0 +} diff --git a/src/utils/waitForEvents.ts b/src/utils/waitForEvents.ts index 3d99b7ce..9e892342 100644 --- a/src/utils/waitForEvents.ts +++ b/src/utils/waitForEvents.ts @@ -35,7 +35,7 @@ export const waitForEvents = ({ if (requirementsMet >= logFilters.length) { return processor.process(ctx) } else { - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { if (requirementsMet >= logFilters.length) { return processor.process(ctx) } else { From 7b253bf8980ae53e81df31bdb5e4929a484ba832 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Wed, 18 Dec 2024 13:58:20 -0800 Subject: [PATCH 09/16] moderate changes to otoken processing for performance - some shuffling of function positions - not quite as much changed as the line count suggests - risks to mention are the parallel processing of things and how we no longer `getLatestOTokenObject` but instead `getOTokenObject(block)` - seems more intelligent - if it works right --- .../activity-processor/activity-processor.ts | 5 +- src/templates/otoken/otoken.ts | 1265 +++++++++-------- src/utils/utils.ts | 33 +- 3 files changed, 655 insertions(+), 648 deletions(-) diff --git a/src/templates/otoken/activity-processor/activity-processor.ts b/src/templates/otoken/activity-processor/activity-processor.ts index 34e7ef78..4bf8b15a 100644 --- a/src/templates/otoken/activity-processor/activity-processor.ts +++ b/src/templates/otoken/activity-processor/activity-processor.ts @@ -1,6 +1,6 @@ import { compact, groupBy } from 'lodash' -import { OTokenActivity, OTokenActivityType } from '@model' +import { OTokenActivity } from '@model' import { Context } from '@processor' import { EvmBatchProcessor } from '@subsquid/evm-processor' import { approvalActivityProcessor } from '@templates/otoken/activity-processor/sub/approval' @@ -14,7 +14,6 @@ import { vaultActivityProcessor } from '@templates/otoken/activity-processor/sub import { wrappedActivityProcessor } from '@templates/otoken/activity-processor/sub/wrapped' import { zapperActivityProcessor } from '@templates/otoken/activity-processor/sub/zapper' import { ActivityProcessor } from '@templates/otoken/activity-processor/types' -import { Activity } from '@templates/otoken/activity-types' export const createOTokenActivityProcessor = (params: { from: number @@ -102,7 +101,7 @@ export const createOTokenActivityProcessor = (params: { const process = async (ctx: Context) => { const activities: OTokenActivity[] = [] // Loop through each block - for (const block of ctx.blocks) { + for (const block of ctx.blocksWithContent) { // Group logs by transaction const transactions = groupBy(block.logs, (l) => l.transactionHash) // Loop through each transaction's set of logs. diff --git a/src/templates/otoken/otoken.ts b/src/templates/otoken/otoken.ts index d7f22906..9f4e8590 100644 --- a/src/templates/otoken/otoken.ts +++ b/src/templates/otoken/otoken.ts @@ -39,8 +39,8 @@ import { blockFrequencyUpdater } from '@utils/blockFrequencyUpdater' import { DECIMALS_18 } from '@utils/constants' import { logFilter } from '@utils/logFilter' import { multicall } from '@utils/multicall' +import { parallel } from '@utils/parallel' import { tokensByChain } from '@utils/tokensByChain' -import { getLatestEntity } from '@utils/utils' import { createAddress, createRebaseAPY } from './utils' @@ -93,6 +93,11 @@ export const createOTokenProcessor = (params: { range: { from: params.from }, }) + const rebaseEventTopics = { + [otoken.events.AccountRebasingEnabled.topic]: otoken.events.AccountRebasingEnabled, + [otoken.events.AccountRebasingDisabled.topic]: otoken.events.AccountRebasingDisabled, + } + const setup = (processor: EvmBatchProcessor) => { if (params.upgrades?.rebaseOptEvents !== false) { processor.addTrace({ @@ -191,9 +196,22 @@ export const createOTokenProcessor = (params: { const frequencyUpdate = blockFrequencyUpdater({ from: params.vaultFrom }) const process = async (ctx: Context) => { + let start: number = Date.now() + const time = (name: string) => { + if (global.process.env.DEBUG_PERF !== 'true') return + const message = `otoken:${name} ${Date.now() - start}ms` + ctx.log.info(message) + start = Date.now() + } idMap = new Map() ownersHistorical = [] + const transferFilter = logFilter({ + address: [params.otokenAddress], + topic0: [otoken.events.Transfer.topic], + range: { from: params.from }, + }) + const result: ProcessResult = { initialized: false, // Saves ~5ms init time if we have no filter matches. @@ -201,13 +219,15 @@ export const createOTokenProcessor = (params: { if (result.initialized) return result.initialized = true - // get all addresses from the database. - // we need this because we increase their balance based on rebase events - owners = await ctx.store - .find(OTokenAddress, { - where: { chainId: ctx.chain.id, otoken: params.otokenAddress }, - }) - .then((q) => new Map(q.map((i) => [i.address, i]))) + if (!owners) { + // get all addresses from the database. + // we need this because we increase their balance based on rebase events + owners = await ctx.store + .find(OTokenAddress, { + where: { chainId: ctx.chain.id, otoken: params.otokenAddress }, + }) + .then((q) => new Map(q.map((i) => [i.address, i]))) + } const assetsCount = await ctx.store.count(OTokenAsset, { where: { chainId: ctx.chain.id, otoken: params.otokenAddress }, @@ -226,6 +246,7 @@ export const createOTokenProcessor = (params: { ), ) } + time('initialize') }, dailyStats: new Map(), otokens: [], @@ -248,239 +269,7 @@ export const createOTokenProcessor = (params: { }, } - for (const block of ctx.blocks) { - await getOTokenDailyStat(ctx, result, block) - for (const trace of block.traces) { - await processRebaseOptTrace(ctx, result, block, trace) - } - for (const log of block.logs) { - await processTransfer(ctx, result, block, log) - await processYieldDistribution(ctx, result, block, log) - await processTotalSupplyUpdatedHighres(ctx, result, block, log) - await processRebaseOptEvent(ctx, result, block, log) - await processHarvesterYieldSent(ctx, result, block, log) - await processYieldDelegated(ctx, result, block, log) - await processYieldUndelegated(ctx, result, block, log) - } - } - - await frequencyUpdate(ctx, async (ctx, block) => { - const vaultContract = new otokenVault.Contract(ctx, block.header, params.otokenVaultAddress) - const [vaultBuffer, totalValue] = await Promise.all([vaultContract.vaultBuffer(), vaultContract.totalValue()]) - result.vaults.push( - new OTokenVault({ - id: `${ctx.chain.id}-${params.otokenAddress}-${block.header.height}-${params.otokenVaultAddress}`, - chainId: ctx.chain.id, - otoken: params.otokenAddress, - blockNumber: block.header.height, - timestamp: new Date(block.header.timestamp), - address: params.otokenVaultAddress, - vaultBuffer, - totalValue, - }), - ) - - if (params.dripper && params.dripper.from <= block.header.height) { - const dripperContract = new otokenDripper.Contract(ctx, block.header, params.dripper.address) - const [dripDuration, { lastCollect, perSecond }, availableFunds, wethBalance] = await Promise.all([ - dripperContract.dripDuration(), - dripperContract.drip(), - dripperContract.availableFunds(), - new erc20.Contract(ctx, block.header, tokensByChain[ctx.chain.id].WETH).balanceOf(params.dripper.address), - ]) - result.dripperStates.push( - new OTokenDripperState({ - id: `${ctx.chain.id}-${params.otokenAddress}-${block.header.height}-${params.otokenVaultAddress}`, - chainId: ctx.chain.id, - blockNumber: block.header.height, - timestamp: new Date(block.header.timestamp), - otoken: params.otokenAddress, - dripDuration, - lastCollect, - perSecond, - availableFunds, - wethBalance, - }), - ) - } - }) - - // Daily Stats - // Whatever days we've just crossed over, let's update their respective daily stat entry using the last block seen at that time. - for (const { block, entity } of result.dailyStats.values()) { - if (block.header.height < params.from) continue - const blockDate = new Date(block.header.timestamp) - // Get the latest otokenObject for the blockDate in question. We cannot use `getLatestOTokenObject`. - let otokenObject = findLast(result.otokens, (o) => o.timestamp <= blockDate) - if (!otokenObject) { - otokenObject = await ctx.store.findOne(OToken, { - where: { - chainId: ctx.chain.id, - otoken: params.otokenAddress, - timestamp: LessThanOrEqual(blockDate), - }, - order: { timestamp: 'desc' }, - }) - } - if (!otokenObject) { - continue - // throw new Error('otokenObject not found for daily stat processing') - } - entity.totalSupply = otokenObject.totalSupply ?? 0n - entity.nonRebasingSupply = otokenObject.nonRebasingSupply ?? 0n - entity.rebasingSupply = otokenObject.rebasingSupply ?? 0n - - let apy = findLast(result.apies, (apy) => apy.timestamp <= blockDate) - if (!apy) { - apy = await ctx.store.findOne(OTokenAPY, { - order: { timestamp: 'desc' }, - where: { chainId: ctx.chain.id, otoken: params.otokenAddress, timestamp: LessThanOrEqual(blockDate) }, - }) - } - if (apy) { - entity.apr = apy.apr - entity.apy = apy.apy - entity.apy7 = apy.apy7DayAvg - entity.apy14 = apy.apy14DayAvg - entity.apy30 = apy.apy30DayAvg - } - const startOfDay = dayjs.utc(blockDate).startOf('day').toDate() - // These should remain unique since any result rebases have not been stored in the database yet. - let rebases = result.rebases.filter((rebase) => rebase.timestamp >= startOfDay && rebase.timestamp <= blockDate) - rebases.push( - ...(await ctx.store.find(OTokenRebase, { - order: { timestamp: 'desc' }, - where: { - chainId: ctx.chain.id, - otoken: params.otokenAddress, - timestamp: Between(startOfDay, blockDate), - }, - })), - ) - entity.yield = rebases.reduce((sum, current) => sum + current.yield - current.fee, 0n) - // let yieldSentEvents: OTokenHarvesterYieldSent[] = [] - // if (params.harvester?.yieldSent) { - // yieldSentEvents = result.harvesterYieldSent.filter( - // (event) => event.timestamp >= startOfDay && event.timestamp <= blockDate, - // ) - // yieldSentEvents.push( - // ...(await ctx.store.find(OTokenHarvesterYieldSent, { - // order: { timestamp: 'desc' }, - // where: { - // chainId: ctx.chain.id, - // otoken: params.otokenAddress, - // timestamp: Between(startOfDay, blockDate), - // }, - // })), - // ) - // } - entity.fees = rebases.reduce((sum, current) => sum + current.fee, 0n) - - const lastDayString = dayjs(block.header.timestamp).subtract(1, 'day').toISOString().substring(0, 10) - const lastId = `${ctx.chain.id}-${params.otokenAddress}-${lastDayString}` - const last = result.dailyStats.get(lastId)?.entity ?? (await ctx.store.get(OTokenDailyStat, lastId)) - entity.cumulativeYield = (last?.cumulativeYield ?? 0n) + entity.yield - entity.cumulativeFees = (last?.cumulativeFees ?? 0n) + entity.fees - - const getDripperAvailableFunds = async () => { - if (!params.dripper || params.dripper.from > block.header.height) return 0n - const dripperContract = new otokenDripper.Contract(ctx, block.header, params.dripper.address) - return dripperContract.availableFunds() - } - const [rateETH, rateUSD, dripperWETH, amoSupply] = await Promise.all([ - ensureExchangeRate(ctx, block, params.otokenAddress, 'ETH').then((e) => e?.rate ?? 0n), - ensureExchangeRate(ctx, block, params.otokenAddress, 'USD').then((e) => e?.rate ?? 0n), - getDripperAvailableFunds(), - params.getAmoSupply(ctx, block.header.height), - ]) - - entity.rateETH = rateETH - entity.rateUSD = rateUSD - entity.amoSupply = amoSupply - - entity.dripperWETH = dripperWETH - entity.marketCapUSD = +formatUnits(entity.totalSupply * entity.rateUSD, 18) - entity.wrappedSupply = - params.wotoken && block.header.height >= params.wotoken.from - ? await new erc20.Contract(ctx, block.header, params.wotoken.address).totalSupply() - : 0n - entity.accountsOverThreshold = Array.from(owners?.values() ?? []).filter( - (a) => a.balance >= params.accountsOverThresholdMinimum, - ).length - ctx.log.info(`Updated OTokenDailyStat: ${entity.id}`) - } - - // Create ERC20 entities based on OToken entities - for (const otoken of result.otokens) { - const erc20State = new ERC20State({ - id: `${ctx.chain.id}-${otoken.blockNumber}-${otoken.otoken}`, - chainId: ctx.chain.id, - address: otoken.otoken, - timestamp: otoken.timestamp, - blockNumber: otoken.blockNumber, - totalSupply: otoken.totalSupply, - holderCount: otoken.holderCount, - }) - result.erc20.states.set(erc20State.id, erc20State) - } - for (const owner of owners?.values() ?? []) { - const erc20Holder = new ERC20Holder({ - id: `${ctx.chain.id}-${owner.otoken}-${owner.address}`, - chainId: ctx.chain.id, - address: owner.otoken, - account: owner.address, - balance: owner.balance, - }) - result.erc20.holders.set(erc20Holder.id, erc20Holder) - } - for (const owner of ownersHistorical) { - result.erc20.balances.set( - owner.id, - new ERC20Balance({ - id: `${ctx.chain.id}-${owner.blockNumber}-${owner.otoken}-${owner.address}`, - chainId: ctx.chain.id, - address: owner.otoken, - account: owner.address, - timestamp: owner.lastUpdated, - blockNumber: owner.blockNumber, - balance: owner.balance, - }), - ) - } - - // Save to database - if (owners) { - await ctx.store.upsert([...owners.values()]) - } - await ctx.store.upsert(result.apies) - await Promise.all([ - ctx.store.insert(result.otokens), - ctx.store.insert(result.assets), - ctx.store.insert(result.history), - ctx.store.insert(result.rebases), - ctx.store.insert(result.rebaseOptions), - ctx.store.insert(result.activity), - ctx.store.insert(result.vaults), - ctx.store.insert(result.dripperStates), - ctx.store.insert(result.harvesterYieldSent), - ctx.store.upsert([...result.dailyStats.values()].map((ds) => ds.entity)), - // ERC20 - ctx.store.insert([...result.erc20.states.values()]), - ctx.store.upsert([...result.erc20.holders.values()]), - ctx.store.insert([...result.erc20.balances.values()]), - ctx.store.insert([...result.erc20.transfers.values()]), - ]) - } - - const processTransfer = async ( - ctx: Context, - result: ProcessResult, - block: Context['blocks']['0'], - log: Context['blocks']['0']['logs']['0'], - ) => { - if (log.address !== params.otokenAddress) return - if (log.topics[0] === otoken.events.Transfer.topic) { - await result.initialize() + const processTransfer = async (block: Context['blocks']['0'], log: Context['blocks']['0']['logs']['0']) => { const dataRaw = otoken.events.Transfer.decode(log) const data = { from: dataRaw.from.toLowerCase(), @@ -489,13 +278,6 @@ export const createOTokenProcessor = (params: { } if (data.value === 0n) return - const otokenObject = await getLatestOTokenObject(ctx, result, block) - if (data.from === ADDRESS_ZERO) { - otokenObject.totalSupply += data.value - } else if (data.to === ADDRESS_ZERO) { - otokenObject.totalSupply -= data.value - } - const ensureAddress = async (address: string) => { let entity = owners!.get(address) if (!entity) { @@ -508,7 +290,8 @@ export const createOTokenProcessor = (params: { } const afterHighResUpgrade = block.header.height >= (params.Upgrade_CreditsBalanceOfHighRes ?? 0) - const [addressSub, addressAdd, [fromCreditsBalanceOf, toCreditsBalanceOf]] = await Promise.all([ + const [otokenObject, addressSub, addressAdd, [fromCreditsBalanceOf, toCreditsBalanceOf]] = await Promise.all([ + getOTokenObject(block), ensureAddress(data.from), ensureAddress(data.to), multicall( @@ -579,6 +362,12 @@ export const createOTokenProcessor = (params: { }), ]) + if (data.from === ADDRESS_ZERO) { + otokenObject.totalSupply += data.value + } else if (data.to === ADDRESS_ZERO) { + otokenObject.totalSupply -= data.value + } + if (addressAdd.rebasingOption === RebasingOption.OptOut && data.from === ADDRESS_ZERO) { // If it's a mint and minter has opted out of rebasing, // add to non-rebasing supply @@ -624,102 +413,78 @@ export const createOTokenProcessor = (params: { }), ) } - } - const processTotalSupplyUpdatedHighres = async ( - ctx: Context, - result: ProcessResult, - block: Context['blocks']['0'], - log: Context['blocks']['0']['logs']['0'], - ) => { - if (log.address !== params.otokenAddress) return - if (log.topics[0] !== otoken.events.TotalSupplyUpdatedHighres.topic) return + const processTotalSupplyUpdatedHighres = async ( + block: Context['blocks']['0'], + log: Context['blocks']['0']['logs']['0'], + ) => { + const data = otoken.events.TotalSupplyUpdatedHighres.decode(log) - await result.initialize() - const data = otoken.events.TotalSupplyUpdatedHighres.decode(log) - - // OToken Object - const otokenObject = await getLatestOTokenObject(ctx, result, block) + // OToken Object + const otokenObject = await getOTokenObject(block) - otokenObject.totalSupply = data.totalSupply - otokenObject.rebasingSupply = otokenObject.totalSupply - otokenObject.nonRebasingSupply - - // Rebase events - const rebase = createRebaseAPY( - ctx, - params.otokenAddress, - result.apies, - result.rebases, - block, - log, - data, - result.lastYieldDistributionEvent, - ) - const yieldDelegationBalances = await getYieldDelegationBalances(ctx, block) + otokenObject.totalSupply = data.totalSupply + otokenObject.rebasingSupply = otokenObject.totalSupply - otokenObject.nonRebasingSupply - for (const address of sortBy([...owners!.values()], 'address')) { - if (!address.credits || address.rebasingOption === RebasingOption.OptOut) { - continue - } - const involvedInYieldDelegation = - address.rebasingOption === RebasingOption.YieldDelegationSource || - address.rebasingOption === RebasingOption.YieldDelegationTarget - const newBalance = involvedInYieldDelegation - ? yieldDelegationBalances.get(address.address)! // It should exist. - : (address.credits * DECIMALS_18) / data.rebasingCreditsPerToken - const earned = newBalance - address.balance - - if (earned === 0n) continue - result.history.push( - new OTokenHistory({ - id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.id}`), - chainId: ctx.chain.id, - otoken: params.otokenAddress, - address: address, - value: earned, - balance: newBalance, - timestamp: new Date(block.header.timestamp), - blockNumber: block.header.height, - txHash: log.transactionHash, - type: HistoryType.Yield, - }), + // Rebase events + const rebase = createRebaseAPY( + ctx, + params.otokenAddress, + result.apies, + result.rebases, + block, + log, + data, + result.lastYieldDistributionEvent, ) + const yieldDelegationBalances = await getYieldDelegationBalances(ctx, block) - address.balance = newBalance - address.earned += earned - } - const entity = await rebase - result.rebases.push(entity) - } - - const processYieldDistribution = async ( - ctx: Context, - result: ProcessResult, - block: Context['blocks']['0'], - log: Context['blocks']['0']['logs']['0'], - ) => { - if (log.address !== params.otokenVaultAddress) return - if (log.topics[0] !== otokenVault.events.YieldDistribution.topic) return - - await result.initialize() - const { _yield, _fee } = otokenVault.events.YieldDistribution.decode(log) - result.lastYieldDistributionEvent = { yield: _yield, fee: _fee } - } + for (const address of sortBy([...owners!.values()], 'address')) { + if (!address.credits || address.rebasingOption === RebasingOption.OptOut) { + continue + } + const involvedInYieldDelegation = + address.rebasingOption === RebasingOption.YieldDelegationSource || + address.rebasingOption === RebasingOption.YieldDelegationTarget + const newBalance = involvedInYieldDelegation + ? yieldDelegationBalances.get(address.address)! // It should exist. + : (address.credits * DECIMALS_18) / data.rebasingCreditsPerToken + const earned = newBalance - address.balance + + if (earned === 0n) continue + result.history.push( + new OTokenHistory({ + id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.id}`), + chainId: ctx.chain.id, + otoken: params.otokenAddress, + address: address, + value: earned, + balance: newBalance, + timestamp: new Date(block.header.timestamp), + blockNumber: block.header.height, + txHash: log.transactionHash, + type: HistoryType.Yield, + }), + ) + + address.balance = newBalance + address.earned += earned + } + const entity = await rebase + result.rebases.push(entity) + time('processTotalSupplyUpdatedHighres') + } - const processRebaseOptTrace = async ( - ctx: Context, - result: ProcessResult, - block: Context['blocks']['0'], - trace: Context['blocks']['0']['traces']['0'], - ) => { - if ( - trace.type === 'call' && - params.otokenAddress === trace.action.to && - (trace.action.sighash === otoken.functions.governanceRebaseOptIn.selector || - trace.action.sighash === otoken.functions.rebaseOptIn.selector || - trace.action.sighash === otoken.functions.rebaseOptOut.selector) - ) { - await result.initialize() + const processYieldDistribution = (block: Context['blocks']['0'], log: Context['blocks']['0']['logs']['0']) => { + const { _yield, _fee } = otokenVault.events.YieldDistribution.decode(log) + result.lastYieldDistributionEvent = { yield: _yield, fee: _fee } + time('processYieldDistribution') + } + + const processRebaseOptTrace = async ( + block: Context['blocks']['0'], + trace: Context['blocks']['0']['traces']['0'] & { type: 'call' }, + ) => { const timestamp = new Date(block.header.timestamp) const address = trace.action.sighash === otoken.functions.governanceRebaseOptIn.selector @@ -728,320 +493,590 @@ export const createOTokenProcessor = (params: { const option = trace.action.sighash === otoken.functions.rebaseOptIn.selector ? RebasingOption.OptIn : RebasingOption.OptOut await processRebaseOpt({ - ctx, - result, block, address, hash: trace.transaction?.hash ?? timestamp.toString(), option, }) + time('processRebaseOptTrace') } - } - const processRebaseOptEvent = async ( - ctx: Context, - result: ProcessResult, - block: Context['blocks']['0'], - log: Context['blocks']['0']['logs']['0'], - ) => { - if (log.address !== params.otokenAddress) return - const rebaseEventTopics = { - [otoken.events.AccountRebasingEnabled.topic]: otoken.events.AccountRebasingEnabled, - [otoken.events.AccountRebasingDisabled.topic]: otoken.events.AccountRebasingDisabled, + const processRebaseOptEvent = async (block: Context['blocks']['0'], log: Context['blocks']['0']['logs']['0']) => { + if (log.address === params.otokenAddress) { + const rebaseEventTopics = { + [otoken.events.AccountRebasingEnabled.topic]: otoken.events.AccountRebasingEnabled, + [otoken.events.AccountRebasingDisabled.topic]: otoken.events.AccountRebasingDisabled, + } + if (rebaseEventTopics[log.topics[0]]) { + const data = rebaseEventTopics[log.topics[0]].decode(log) + + const address = data.account.toLowerCase() + const option = + log.topics[0] === otoken.events.AccountRebasingEnabled.topic ? RebasingOption.OptIn : RebasingOption.OptOut + await processRebaseOpt({ block, address, hash: log.transactionHash, option }) + time('processRebaseOptEvent') + } + } } - if (rebaseEventTopics[log.topics[0]]) { - await result.initialize() - const data = rebaseEventTopics[log.topics[0]].decode(log) - const address = data.account.toLowerCase() - const option = - log.topics[0] === otoken.events.AccountRebasingEnabled.topic ? RebasingOption.OptIn : RebasingOption.OptOut - await processRebaseOpt({ ctx, result, block, address, hash: log.transactionHash, option }) + const rebaseOptsHandled = new Set() + const processRebaseOpt = async ({ + block, + address, + hash, + option, + delegate, + }: { + block: Context['blocks']['0'] + address: string + hash: string + option: RebasingOption + delegate?: string + }) => { + if (rebaseOptsHandled.has(`${hash}-${address}-${option}`)) return + rebaseOptsHandled.add(`${hash}-${address}-${option}`) + const timestamp = new Date(block.header.timestamp) + const blockNumber = block.header.height + const otokenObject = await getOTokenObject(block) + let owner = owners!.get(address) + if (!owner) { + owner = await createAddress(ctx, params.otokenAddress, address, block) + owners!.set(address, owner) + ownersHistorical.push(owner) + } + const rebaseOption = new OTokenRebaseOption({ + id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${hash}-${owner.address}`), + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp, + blockNumber, + txHash: hash, + address: owner, + status: owner.rebasingOption, + delegatedTo: null, + }) + result.rebaseOptions.push(rebaseOption) + + owner.delegatedTo = null + if (option === RebasingOption.OptIn) { + const afterHighResUpgrade = block.header.height >= (params.Upgrade_CreditsBalanceOfHighRes ?? 0) + const otokenContract = new otoken.Contract(ctx, block.header, params.otokenAddress) + owner.credits = afterHighResUpgrade + ? await otokenContract.creditsBalanceOfHighres(owner.address).then((c) => c._0) + : await otokenContract.creditsBalanceOf(owner.address).then((c) => c._0 * 1000000000n) + rebaseOption.status = RebasingOption.OptIn + owner.rebasingOption = RebasingOption.OptIn + otokenObject.nonRebasingSupply -= owner.balance + otokenObject.rebasingSupply = otokenObject.totalSupply - otokenObject.nonRebasingSupply + } else { + rebaseOption.status = RebasingOption.OptOut + owner.rebasingOption = RebasingOption.OptOut + otokenObject.nonRebasingSupply += owner.balance + otokenObject.rebasingSupply = otokenObject.totalSupply - otokenObject.nonRebasingSupply + } } - } - const rebaseOptsHandled = new Set() - const processRebaseOpt = async ({ - ctx, - result, - block, - address, - hash, - option, - delegate, - }: { - ctx: Context - result: ProcessResult - block: Context['blocks']['0'] - address: string - hash: string - option: RebasingOption - delegate?: string - }) => { - if (rebaseOptsHandled.has(`${hash}-${address}-${option}`)) return - rebaseOptsHandled.add(`${hash}-${address}-${option}`) - const timestamp = new Date(block.header.timestamp) - const blockNumber = block.header.height - const otokenObject = await getLatestOTokenObject(ctx, result, block) - let owner = owners!.get(address) - if (!owner) { - owner = await createAddress(ctx, params.otokenAddress, address, block) - owners!.set(address, owner) - ownersHistorical.push(owner) + const processYieldDelegated = async (block: Block, log: Log) => { + const timestamp = new Date(block.header.timestamp) + const blockNumber = block.header.height + const data = otoken.events.YieldDelegated.decode(log) + const sourceAddress = data.source.toLowerCase() + const targetAddress = data.target.toLowerCase() + // Source + let sourceOwner = owners!.get(sourceAddress) + if (!sourceOwner) { + sourceOwner = await createAddress(ctx, params.otokenAddress, sourceAddress, block) + owners!.set(sourceAddress, sourceOwner) + ownersHistorical.push(sourceOwner) + } + sourceOwner.rebasingOption = RebasingOption.YieldDelegationSource + sourceOwner.delegatedTo = targetAddress + result.rebaseOptions.push( + new OTokenRebaseOption({ + id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.transactionHash}-${sourceAddress}`), + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp, + blockNumber, + txHash: log.transactionHash, + address: sourceOwner, + status: RebasingOption.YieldDelegationSource, + delegatedTo: targetAddress, + }), + ) + // Target + let targetOwner = owners!.get(targetAddress) + if (!targetOwner) { + targetOwner = await createAddress(ctx, params.otokenAddress, targetAddress, block) + owners!.set(targetAddress, targetOwner) + ownersHistorical.push(targetOwner) + } + targetOwner.rebasingOption = RebasingOption.YieldDelegationTarget + targetOwner.delegatedTo = null + result.rebaseOptions.push( + new OTokenRebaseOption({ + id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.transactionHash}-${targetAddress}`), + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp, + blockNumber, + txHash: log.transactionHash, + address: targetOwner, + status: RebasingOption.YieldDelegationTarget, + delegatedTo: null, + }), + ) + time('processYieldDelegated') } - const rebaseOption = new OTokenRebaseOption({ - id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${hash}-${owner.address}`), - chainId: ctx.chain.id, - otoken: params.otokenAddress, - timestamp, - blockNumber, - txHash: hash, - address: owner, - status: owner.rebasingOption, - delegatedTo: null, - }) - result.rebaseOptions.push(rebaseOption) - owner.delegatedTo = null - if (option === RebasingOption.OptIn) { - const afterHighResUpgrade = block.header.height >= (params.Upgrade_CreditsBalanceOfHighRes ?? 0) - const otokenContract = new otoken.Contract(ctx, block.header, params.otokenAddress) - owner.credits = afterHighResUpgrade - ? await otokenContract.creditsBalanceOfHighres(owner.address).then((c) => c._0) - : await otokenContract.creditsBalanceOf(owner.address).then((c) => c._0 * 1000000000n) - rebaseOption.status = RebasingOption.OptIn - owner.rebasingOption = RebasingOption.OptIn - otokenObject.nonRebasingSupply -= owner.balance - otokenObject.rebasingSupply = otokenObject.totalSupply - otokenObject.nonRebasingSupply - } else { - rebaseOption.status = RebasingOption.OptOut - owner.rebasingOption = RebasingOption.OptOut - otokenObject.nonRebasingSupply += owner.balance - otokenObject.rebasingSupply = otokenObject.totalSupply - otokenObject.nonRebasingSupply + const processYieldUndelegated = async (block: Block, log: Log) => { + const timestamp = new Date(block.header.timestamp) + const blockNumber = block.header.height + const data = otoken.events.YieldUndelegated.decode(log) + const sourceAddress = data.source.toLowerCase() + const targetAddress = data.target.toLowerCase() + // Source + let sourceOwner = owners!.get(sourceAddress) + if (!sourceOwner) { + sourceOwner = await createAddress(ctx, params.otokenAddress, sourceAddress, block) + owners!.set(sourceAddress, sourceOwner) + ownersHistorical.push(sourceOwner) + } + sourceOwner.rebasingOption = RebasingOption.OptOut + sourceOwner.delegatedTo = null + result.rebaseOptions.push( + new OTokenRebaseOption({ + id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.transactionHash}-${sourceAddress}`), + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp, + blockNumber, + txHash: log.transactionHash, + address: sourceOwner, + status: RebasingOption.OptOut, + delegatedTo: null, + }), + ) + // Target + let targetOwner = owners!.get(targetAddress) + if (!targetOwner) { + targetOwner = await createAddress(ctx, params.otokenAddress, targetAddress, block) + owners!.set(targetAddress, targetOwner) + ownersHistorical.push(targetOwner) + } + targetOwner.rebasingOption = RebasingOption.OptIn + targetOwner.delegatedTo = null + result.rebaseOptions.push( + new OTokenRebaseOption({ + id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.transactionHash}-${targetAddress}`), + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp, + blockNumber, + txHash: log.transactionHash, + address: targetOwner, + status: RebasingOption.OptIn, + delegatedTo: null, + }), + ) + time('processYieldUndelegated') } - } - const processYieldDelegated = async (ctx: Context, result: ProcessResult, block: Block, log: Log) => { - if (!yieldDelegatedFilter.matches(log)) return - const timestamp = new Date(block.header.timestamp) - const blockNumber = block.header.height - const data = otoken.events.YieldDelegated.decode(log) - const sourceAddress = data.source.toLowerCase() - const targetAddress = data.target.toLowerCase() - // Source - let sourceOwner = owners!.get(sourceAddress) - if (!sourceOwner) { - sourceOwner = await createAddress(ctx, params.otokenAddress, sourceAddress, block) - owners!.set(sourceAddress, sourceOwner) - ownersHistorical.push(sourceOwner) + const processHarvesterYieldSent = async ( + block: Context['blocks']['0'], + log: Context['blocks']['0']['logs']['0'], + ) => { + const data = otokenHarvester.events.YieldSent.decode(log) + result.harvesterYieldSent.push( + new OTokenHarvesterYieldSent({ + id: log.id, + chainId: ctx.chain.id, + blockNumber: block.header.height, + timestamp: new Date(block.header.timestamp), + otoken: params.otokenAddress, + txHash: log.transactionHash, + yield: data.yield, + fee: data.fee, + }), + ) + time('processHarvesterYieldSent') } - sourceOwner.rebasingOption = RebasingOption.YieldDelegationSource - sourceOwner.delegatedTo = targetAddress - result.rebaseOptions.push( - new OTokenRebaseOption({ - id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.transactionHash}-${sourceAddress}`), - chainId: ctx.chain.id, - otoken: params.otokenAddress, - timestamp, - blockNumber, - txHash: log.transactionHash, - address: sourceOwner, - status: RebasingOption.YieldDelegationSource, - delegatedTo: targetAddress, - }), - ) - // Target - let targetOwner = owners!.get(targetAddress) - if (!targetOwner) { - targetOwner = await createAddress(ctx, params.otokenAddress, targetAddress, block) - owners!.set(targetAddress, targetOwner) - ownersHistorical.push(targetOwner) + + const getOTokenObject = async (block: Block) => { + const timestamp = new Date(block.header.timestamp) + const otokenId = `${ctx.chain.id}-${params.otokenAddress}-${timestamp.toISOString()}` + const latest = + result.otokens.find((o) => o.id <= otokenId) ?? + (await ctx.store.findOne(OToken, { + where: { + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp: LessThanOrEqual(timestamp), + }, + order: { timestamp: 'desc' }, + })) + const current = result.otokens.find((o) => o.id === otokenId) + + let otokenObject = current + if (!otokenObject) { + otokenObject = new OToken({ + id: otokenId, + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp: new Date(block.header.timestamp), + blockNumber: block.header.height, + totalSupply: latest?.totalSupply ?? 0n, + rebasingSupply: latest?.rebasingSupply ?? 0n, + nonRebasingSupply: latest?.nonRebasingSupply ?? 0n, + holderCount: owners!.size ?? 0n, + }) + result.otokens.push(otokenObject) + } + + return otokenObject } - targetOwner.rebasingOption = RebasingOption.YieldDelegationTarget - targetOwner.delegatedTo = null - result.rebaseOptions.push( - new OTokenRebaseOption({ - id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.transactionHash}-${targetAddress}`), - chainId: ctx.chain.id, - otoken: params.otokenAddress, - timestamp, - blockNumber, - txHash: log.transactionHash, - address: targetOwner, - status: RebasingOption.YieldDelegationTarget, - delegatedTo: null, - }), - ) - } - const processYieldUndelegated = async (ctx: Context, result: ProcessResult, block: Block, log: Log) => { - if (!yieldUndelegatedFilter.matches(log)) return - const timestamp = new Date(block.header.timestamp) - const blockNumber = block.header.height - const data = otoken.events.YieldUndelegated.decode(log) - const sourceAddress = data.source.toLowerCase() - const targetAddress = data.target.toLowerCase() - // Source - let sourceOwner = owners!.get(sourceAddress) - if (!sourceOwner) { - sourceOwner = await createAddress(ctx, params.otokenAddress, sourceAddress, block) - owners!.set(sourceAddress, sourceOwner) - ownersHistorical.push(sourceOwner) + const getOTokenDailyStat = (block: Block) => { + const dayString = new Date(block.header.timestamp).toISOString().substring(0, 10) + const id = `${ctx.chain.id}-${params.otokenAddress}-${dayString}` + let entity = result.dailyStats.get(id)?.entity + if (entity) { + return entity + } + + return new Promise(async (resolve, reject) => { + let entity = await ctx.store.get(OTokenDailyStat, id).catch(reject) + if (!entity) { + entity = new OTokenDailyStat({ + id, + chainId: ctx.chain.id, + timestamp: new Date(block.header.timestamp), + date: dayString, + blockNumber: block.header.height, + otoken: params.otokenAddress, + + apr: 0, + apy: 0, + apy7: 0, + apy14: 0, + apy30: 0, + + rateUSD: 0n, + rateETH: 0n, + + totalSupply: 0n, + rebasingSupply: 0n, + nonRebasingSupply: 0n, + wrappedSupply: 0n, + + amoSupply: 0n, + dripperWETH: 0n, + + yield: 0n, + fees: 0n, + cumulativeYield: 0n, + cumulativeFees: 0n, + + marketCapUSD: 0, + accountsOverThreshold: 0, + }) + result.dailyStats.set(entity.id, { block, entity }) + } else { + result.dailyStats.set(entity.id, { block, entity }) + entity.timestamp = new Date(block.header.timestamp) + entity.blockNumber = block.header.height + } + + resolve(entity) + }) } - sourceOwner.rebasingOption = RebasingOption.OptOut - sourceOwner.delegatedTo = null - result.rebaseOptions.push( - new OTokenRebaseOption({ - id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.transactionHash}-${sourceAddress}`), - chainId: ctx.chain.id, - otoken: params.otokenAddress, - timestamp, - blockNumber, - txHash: log.transactionHash, - address: sourceOwner, - status: RebasingOption.OptOut, - delegatedTo: null, - }), - ) - // Target - let targetOwner = owners!.get(targetAddress) - if (!targetOwner) { - targetOwner = await createAddress(ctx, params.otokenAddress, targetAddress, block) - owners!.set(targetAddress, targetOwner) - ownersHistorical.push(targetOwner) + + const getYieldDelegationBalances = async (ctx: Context, block: Block) => { + const delegatedAddresses = Array.from(owners!.values()) + .filter( + (owner) => + owner.rebasingOption === RebasingOption.YieldDelegationSource || + owner.rebasingOption === RebasingOption.YieldDelegationTarget, + ) + .map((owner) => owner.address) + const delegateBalances = await multicall( + ctx, + block.header, + otoken.functions.balanceOf, + params.otokenAddress, + delegatedAddresses.map((_account) => ({ _account })), + ) + return new Map(delegatedAddresses.map((address, index) => [address, delegateBalances[index]])) } - targetOwner.rebasingOption = RebasingOption.OptIn - targetOwner.delegatedTo = null - result.rebaseOptions.push( - new OTokenRebaseOption({ - id: getUniqueId(`${ctx.chain.id}-${params.otokenAddress}-${log.transactionHash}-${targetAddress}`), - chainId: ctx.chain.id, - otoken: params.otokenAddress, - timestamp, - blockNumber, - txHash: log.transactionHash, - address: targetOwner, - status: RebasingOption.OptIn, - delegatedTo: null, - }), - ) - } - const processHarvesterYieldSent = async ( - ctx: Context, - result: ProcessResult, - block: Context['blocks']['0'], - log: Context['blocks']['0']['logs']['0'], - ) => { - if (!harvesterYieldSentFilter?.matches(log)) return await result.initialize() - const data = otokenHarvester.events.YieldSent.decode(log) - result.harvesterYieldSent.push( - new OTokenHarvesterYieldSent({ - id: log.id, - chainId: ctx.chain.id, - blockNumber: block.header.height, - timestamp: new Date(block.header.timestamp), - otoken: params.otokenAddress, - txHash: log.transactionHash, - yield: data.yield, - fee: data.fee, - }), - ) - } + for (const block of ctx.blocksWithContent) { + const possiblePromise = getOTokenDailyStat(block) + if (possiblePromise instanceof Promise) { + await possiblePromise + } + for (const trace of block.traces) { + if ( + trace.type === 'call' && + params.otokenAddress === trace.action.to && + (trace.action.sighash === otoken.functions.governanceRebaseOptIn.selector || + trace.action.sighash === otoken.functions.rebaseOptIn.selector || + trace.action.sighash === otoken.functions.rebaseOptOut.selector) + ) { + await processRebaseOptTrace(block, trace) + } + } - const getLatestOTokenObject = async (ctx: Context, result: ProcessResult, block: Block) => { - const timestamp = new Date(block.header.timestamp).toISOString() - const otokenId = `${ctx.chain.id}-${params.otokenAddress}-${timestamp}` - const { latest, current } = await getLatestEntity(ctx, OToken, result.otokens, otokenId, { - chainId: ctx.chain.id, - otoken: params.otokenAddress, - }) + for (const log of block.logs) { + if (log.address === params.otokenVaultAddress && log.topics[0] === otokenVault.events.YieldDistribution.topic) { + processYieldDistribution(block, log) + } + if (log.address === params.otokenAddress) { + if (log.topics[0] === otoken.events.TotalSupplyUpdatedHighres.topic) { + await processTotalSupplyUpdatedHighres(block, log) + } + if (rebaseEventTopics[log.topics[0]]) { + await processRebaseOptEvent(block, log) + } + } + if (harvesterYieldSentFilter?.matches(log)) { + await processHarvesterYieldSent(block, log) + } - let otokenObject = current - if (!otokenObject) { - otokenObject = new OToken({ - id: otokenId, - chainId: ctx.chain.id, - otoken: params.otokenAddress, - timestamp: new Date(block.header.timestamp), - blockNumber: block.header.height, - totalSupply: latest?.totalSupply ?? 0n, - rebasingSupply: latest?.rebasingSupply ?? 0n, - nonRebasingSupply: latest?.nonRebasingSupply ?? 0n, - holderCount: owners!.size ?? 0n, - }) - result.otokens.push(otokenObject) + if (yieldDelegatedFilter.matches(log)) { + await processYieldDelegated(block, log) + } + if (yieldUndelegatedFilter.matches(log)) { + await processYieldUndelegated(block, log) + } + } } - return otokenObject - } + // Process Transfers + const transferLogs = ctx.blocksWithContent.flatMap((block) => + block.logs.filter((log) => transferFilter.matches(log)).map((log) => ({ block, log })), + ) + await parallel( + transferLogs.map( + ({ block, log }) => + () => + processTransfer(block, log), + ), + 10, + ) + time('processTransfers') - const getOTokenDailyStat = async (ctx: Context, result: ProcessResult, block: Block) => { - const dayString = new Date(block.header.timestamp).toISOString().substring(0, 10) - const id = `${ctx.chain.id}-${params.otokenAddress}-${dayString}` - let entity = result.dailyStats.get(id)?.entity ?? (await ctx.store.get(OTokenDailyStat, id)) + await frequencyUpdate(ctx, async (ctx, block) => { + const vaultContract = new otokenVault.Contract(ctx, block.header, params.otokenVaultAddress) + const [vaultBuffer, totalValue] = await Promise.all([vaultContract.vaultBuffer(), vaultContract.totalValue()]) + result.vaults.push( + new OTokenVault({ + id: `${ctx.chain.id}-${params.otokenAddress}-${block.header.height}-${params.otokenVaultAddress}`, + chainId: ctx.chain.id, + otoken: params.otokenAddress, + blockNumber: block.header.height, + timestamp: new Date(block.header.timestamp), + address: params.otokenVaultAddress, + vaultBuffer, + totalValue, + }), + ) - if (!entity) { - entity = new OTokenDailyStat({ - id, - chainId: ctx.chain.id, - timestamp: new Date(block.header.timestamp), - date: dayString, - blockNumber: block.header.height, - otoken: params.otokenAddress, + if (params.dripper && params.dripper.from <= block.header.height) { + const dripperContract = new otokenDripper.Contract(ctx, block.header, params.dripper.address) + const [dripDuration, { lastCollect, perSecond }, availableFunds, wethBalance] = await Promise.all([ + dripperContract.dripDuration(), + dripperContract.drip(), + dripperContract.availableFunds(), + new erc20.Contract(ctx, block.header, tokensByChain[ctx.chain.id].WETH).balanceOf(params.dripper.address), + ]) + result.dripperStates.push( + new OTokenDripperState({ + id: `${ctx.chain.id}-${params.otokenAddress}-${block.header.height}-${params.otokenVaultAddress}`, + chainId: ctx.chain.id, + blockNumber: block.header.height, + timestamp: new Date(block.header.timestamp), + otoken: params.otokenAddress, + dripDuration, + lastCollect, + perSecond, + availableFunds, + wethBalance, + }), + ) + } + }) + time('frequencyUpdate') - apr: 0, - apy: 0, - apy7: 0, - apy14: 0, - apy30: 0, + // Daily Stats + // Whatever days we've just crossed over, let's update their respective daily stat entry using the last block seen at that time. + for (const { block, entity } of result.dailyStats.values()) { + if (block.header.height < params.from) continue + const blockDate = new Date(block.header.timestamp) + // Get the latest otokenObject for the blockDate in question. We cannot use `getLatestOTokenObject`. + let otokenObject = findLast(result.otokens, (o) => o.timestamp <= blockDate) + if (!otokenObject) { + otokenObject = await ctx.store.findOne(OToken, { + where: { + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp: LessThanOrEqual(blockDate), + }, + order: { timestamp: 'desc' }, + }) + } + if (!otokenObject) { + continue + // throw new Error('otokenObject not found for daily stat processing') + } + entity.totalSupply = otokenObject.totalSupply ?? 0n + entity.nonRebasingSupply = otokenObject.nonRebasingSupply ?? 0n + entity.rebasingSupply = otokenObject.rebasingSupply ?? 0n + + let apy = findLast(result.apies, (apy) => apy.timestamp <= blockDate) + if (!apy) { + apy = await ctx.store.findOne(OTokenAPY, { + order: { timestamp: 'desc' }, + where: { chainId: ctx.chain.id, otoken: params.otokenAddress, timestamp: LessThanOrEqual(blockDate) }, + }) + } + if (apy) { + entity.apr = apy.apr + entity.apy = apy.apy + entity.apy7 = apy.apy7DayAvg + entity.apy14 = apy.apy14DayAvg + entity.apy30 = apy.apy30DayAvg + } + const startOfDay = dayjs.utc(blockDate).startOf('day').toDate() + // These should remain unique since any result rebases have not been stored in the database yet. + let rebases = result.rebases.filter((rebase) => rebase.timestamp >= startOfDay && rebase.timestamp <= blockDate) + rebases.push( + ...(await ctx.store.find(OTokenRebase, { + order: { timestamp: 'desc' }, + where: { + chainId: ctx.chain.id, + otoken: params.otokenAddress, + timestamp: Between(startOfDay, blockDate), + }, + })), + ) + entity.yield = rebases.reduce((sum, current) => sum + current.yield - current.fee, 0n) + // There was a time when this was considered to be used, but I think we will *not* do that now. + // Leaving it here for now... + // let yieldSentEvents: OTokenHarvesterYieldSent[] = [] + // if (params.harvester?.yieldSent) { + // yieldSentEvents = result.harvesterYieldSent.filter( + // (event) => event.timestamp >= startOfDay && event.timestamp <= blockDate, + // ) + // yieldSentEvents.push( + // ...(await ctx.store.find(OTokenHarvesterYieldSent, { + // order: { timestamp: 'desc' }, + // where: { + // chainId: ctx.chain.id, + // otoken: params.otokenAddress, + // timestamp: Between(startOfDay, blockDate), + // }, + // })), + // ) + // } + entity.fees = rebases.reduce((sum, current) => sum + current.fee, 0n) - rateUSD: 0n, - rateETH: 0n, + const lastDayString = dayjs(block.header.timestamp).subtract(1, 'day').toISOString().substring(0, 10) + const lastId = `${ctx.chain.id}-${params.otokenAddress}-${lastDayString}` + const last = result.dailyStats.get(lastId)?.entity ?? (await ctx.store.get(OTokenDailyStat, lastId)) + entity.cumulativeYield = (last?.cumulativeYield ?? 0n) + entity.yield + entity.cumulativeFees = (last?.cumulativeFees ?? 0n) + entity.fees - totalSupply: 0n, - rebasingSupply: 0n, - nonRebasingSupply: 0n, - wrappedSupply: 0n, + const getDripperAvailableFunds = async () => { + if (!params.dripper || params.dripper.from > block.header.height) return 0n + const dripperContract = new otokenDripper.Contract(ctx, block.header, params.dripper.address) + return dripperContract.availableFunds() + } + const [rateETH, rateUSD, dripperWETH, amoSupply] = await Promise.all([ + ensureExchangeRate(ctx, block, params.otokenAddress, 'ETH').then((e) => e?.rate ?? 0n), + ensureExchangeRate(ctx, block, params.otokenAddress, 'USD').then((e) => e?.rate ?? 0n), + getDripperAvailableFunds(), + params.getAmoSupply(ctx, block.header.height), + ]) - amoSupply: 0n, - dripperWETH: 0n, + entity.rateETH = rateETH + entity.rateUSD = rateUSD + entity.amoSupply = amoSupply - yield: 0n, - fees: 0n, - cumulativeYield: 0n, - cumulativeFees: 0n, + entity.dripperWETH = dripperWETH + entity.marketCapUSD = +formatUnits(entity.totalSupply * entity.rateUSD, 18) + entity.wrappedSupply = + params.wotoken && block.header.height >= params.wotoken.from + ? await new erc20.Contract(ctx, block.header, params.wotoken.address).totalSupply() + : 0n + entity.accountsOverThreshold = Array.from(owners?.values() ?? []).filter( + (a) => a.balance >= params.accountsOverThresholdMinimum, + ).length + ctx.log.info(`Updated OTokenDailyStat: ${entity.id}`) + } + time('dailyStats') - marketCapUSD: 0, - accountsOverThreshold: 0, + // Create ERC20 entities based on OToken entities + for (const otoken of result.otokens) { + const erc20State = new ERC20State({ + id: `${ctx.chain.id}-${otoken.blockNumber}-${otoken.otoken}`, + chainId: ctx.chain.id, + address: otoken.otoken, + timestamp: otoken.timestamp, + blockNumber: otoken.blockNumber, + totalSupply: otoken.totalSupply, + holderCount: otoken.holderCount, }) - result.dailyStats.set(entity.id, { block, entity }) - } else { - result.dailyStats.set(entity.id, { block, entity }) - entity.timestamp = new Date(block.header.timestamp) - entity.blockNumber = block.header.height + result.erc20.states.set(erc20State.id, erc20State) } - - return entity - } - - const getYieldDelegationBalances = async (ctx: Context, block: Block) => { - const delegatedAddresses = Array.from(owners!.values()) - .filter( - (owner) => - owner.rebasingOption === RebasingOption.YieldDelegationSource || - owner.rebasingOption === RebasingOption.YieldDelegationTarget, + for (const owner of owners?.values() ?? []) { + const erc20Holder = new ERC20Holder({ + id: `${ctx.chain.id}-${owner.otoken}-${owner.address}`, + chainId: ctx.chain.id, + address: owner.otoken, + account: owner.address, + balance: owner.balance, + }) + result.erc20.holders.set(erc20Holder.id, erc20Holder) + } + for (const owner of ownersHistorical) { + result.erc20.balances.set( + owner.id, + new ERC20Balance({ + id: `${ctx.chain.id}-${owner.blockNumber}-${owner.otoken}-${owner.address}`, + chainId: ctx.chain.id, + address: owner.otoken, + account: owner.address, + timestamp: owner.lastUpdated, + blockNumber: owner.blockNumber, + balance: owner.balance, + }), ) - .map((owner) => owner.address) - const delegateBalances = await multicall( - ctx, - block.header, - otoken.functions.balanceOf, - params.otokenAddress, - delegatedAddresses.map((_account) => ({ _account })), - ) - return new Map(delegatedAddresses.map((address, index) => [address, delegateBalances[index]])) + } + time('erc20 instances') + + // Save to database + if (owners) { + await ctx.store.upsert([...owners.values()]) + } + await ctx.store.upsert(result.apies) + await Promise.all([ + ctx.store.insert(result.otokens), + ctx.store.insert(result.assets), + ctx.store.insert(result.history), + ctx.store.insert(result.rebases), + ctx.store.insert(result.rebaseOptions), + ctx.store.insert(result.activity), + ctx.store.insert(result.vaults), + ctx.store.insert(result.dripperStates), + ctx.store.insert(result.harvesterYieldSent), + ctx.store.upsert([...result.dailyStats.values()].map((ds) => ds.entity)), + // ERC20 + ctx.store.insert([...result.erc20.states.values()]), + ctx.store.upsert([...result.erc20.holders.values()]), + ctx.store.insert([...result.erc20.balances.values()]), + ctx.store.insert([...result.erc20.transfers.values()]), + ]) } return { diff --git a/src/utils/utils.ts b/src/utils/utils.ts index 2a9f497a..4bfc57d8 100644 --- a/src/utils/utils.ts +++ b/src/utils/utils.ts @@ -1,10 +1,7 @@ -import { FindOptionsWhere, LessThanOrEqual } from 'typeorm' import { pad } from 'viem' import * as erc20 from '@abi/erc20' import { Context } from '@processor' -import { EntityClass } from '@subsquid/typeorm-store' -import { Entity } from '@subsquid/typeorm-store/lib/store' export const max = (values: bigint[], start = 0n) => { return values.reduce((max, v) => (max > v ? max : v), start) @@ -17,12 +14,7 @@ export const lastExcept = < >( arr: T[] | undefined, id: string, -) => - arr - ? arr[arr.length - 1]?.id === id - ? arr[arr.length - 2] - : arr[arr.length - 1] - : undefined +) => (arr ? (arr[arr.length - 1]?.id === id ? arr[arr.length - 2] : arr[arr.length - 1]) : undefined) export const trackAddressBalances = async ({ log, @@ -43,36 +35,17 @@ export const trackAddressBalances = async ({ }) => { const paddedAddress = pad(address as `0x${string}`) if ( - (log.topics[1]?.toLowerCase() === paddedAddress || - log.topics[2]?.toLowerCase() === paddedAddress) && + (log.topics[1]?.toLowerCase() === paddedAddress || log.topics[2]?.toLowerCase() === paddedAddress) && tokens.includes(log.address.toLowerCase()) ) { const data = erc20.events.Transfer.decode(log) if (data.value > 0n) { - const change = - data.from.toLowerCase() === address ? -data.value : data.value + const change = data.from.toLowerCase() === address ? -data.value : data.value await fn({ address, token: log.address, change, log, data }) } } } -export const getLatestEntity = async ( - ctx: Context, - entity: EntityClass, - memory: T[], - id: string, - where?: FindOptionsWhere, -) => { - const current = memory.slice(memory.length - 1).find((v) => v.id === id) - const latest = - memory[memory.length - 1] ?? - (await ctx.store.findOne(entity as EntityClass, { - where: { id: LessThanOrEqual(id), ...where }, - order: { id: 'desc' }, - })) - return { current, latest } -} - export const convertDecimals = (from: number, to: number, value: bigint) => { const fromFactor = 10n ** BigInt(from) const toFactor = 10n ** BigInt(to) From c7c97e4029f9731f8252f9adb96383906b426b64 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Wed, 18 Dec 2024 15:56:57 -0800 Subject: [PATCH 10/16] - transactionally it doesn't make sense to process these async - Instead, let's get all the RPC data needed ahead of time --- src/templates/otoken/otoken.ts | 99 ++++++++++++++++++++-------------- 1 file changed, 58 insertions(+), 41 deletions(-) diff --git a/src/templates/otoken/otoken.ts b/src/templates/otoken/otoken.ts index 9f4e8590..5e9da9f3 100644 --- a/src/templates/otoken/otoken.ts +++ b/src/templates/otoken/otoken.ts @@ -39,7 +39,6 @@ import { blockFrequencyUpdater } from '@utils/blockFrequencyUpdater' import { DECIMALS_18 } from '@utils/constants' import { logFilter } from '@utils/logFilter' import { multicall } from '@utils/multicall' -import { parallel } from '@utils/parallel' import { tokensByChain } from '@utils/tokensByChain' import { createAddress, createRebaseAPY } from './utils' @@ -269,6 +268,48 @@ export const createOTokenProcessor = (params: { }, } + await result.initialize() + + // Prepare data for transfer processing + const transferLogs = ctx.blocks.map((block) => { + const logs = block.logs.filter((l) => transferFilter.matches(l)).map((log) => ({ block, log })) + const addresses = logs.flatMap(({ log }) => { + const transfer = otoken.events.Transfer.decode(log) + return [transfer.from.toLowerCase(), transfer.to.toLowerCase()] + }) + return { + block, + addresses, + } + }) + + const transferLogsCredits = new Map( + await Promise.all( + transferLogs.map(({ block, addresses }) => { + const afterHighResUpgrade = block.header.height >= (params.Upgrade_CreditsBalanceOfHighRes ?? 0) + return multicall( + ctx, + block.header, + afterHighResUpgrade + ? otoken.functions.creditsBalanceOfHighres + : (otoken.functions.creditsBalanceOf as unknown as typeof otoken.functions.creditsBalanceOfHighres), + params.otokenAddress, + addresses.map((_account) => ({ _account })), + ).then((results) => { + const mod = afterHighResUpgrade ? 1n : 1000000000n + return [ + block.header.height, + results.map((result, index) => ({ + address: addresses[index], + credits: [result._0 * mod, result._1 * mod], + })), + ] as [number, { address: string; credits: [bigint, bigint] }[]] + }) + }), + ), + ) + time('processTransfer preparation') + const processTransfer = async (block: Context['blocks']['0'], log: Context['blocks']['0']['logs']['0']) => { const dataRaw = otoken.events.Transfer.decode(log) const data = { @@ -278,6 +319,13 @@ export const createOTokenProcessor = (params: { } if (data.value === 0n) return + const fromCreditsBalanceOf = transferLogsCredits + .get(block.header.height)! + .find(({ address }) => address === data.from)!.credits + const toCreditsBalanceOf = transferLogsCredits + .get(block.header.height)! + .find(({ address }) => address === data.to)!.credits + const ensureAddress = async (address: string) => { let entity = owners!.get(address) if (!entity) { @@ -289,26 +337,10 @@ export const createOTokenProcessor = (params: { return entity } - const afterHighResUpgrade = block.header.height >= (params.Upgrade_CreditsBalanceOfHighRes ?? 0) - const [otokenObject, addressSub, addressAdd, [fromCreditsBalanceOf, toCreditsBalanceOf]] = await Promise.all([ + const [otokenObject, addressSub, addressAdd] = await Promise.all([ getOTokenObject(block), ensureAddress(data.from), ensureAddress(data.to), - multicall( - ctx, - block.header, - afterHighResUpgrade - ? otoken.functions.creditsBalanceOfHighres - : (otoken.functions.creditsBalanceOf as unknown as typeof otoken.functions.creditsBalanceOfHighres), - params.otokenAddress, - [{ _account: data.from }, { _account: data.to }], - ).then((results) => { - if (afterHighResUpgrade) { - return results.map((r) => [r._0, r._1]) - } else { - return results.map((r) => [r._0 * 1000000000n, r._1 * 1000000000n]) - } - }) as Promise<[bigint, bigint][]>, ]) /** @@ -809,7 +841,6 @@ export const createOTokenProcessor = (params: { return new Map(delegatedAddresses.map((address, index) => [address, delegateBalances[index]])) } - await result.initialize() for (const block of ctx.blocksWithContent) { const possiblePromise = getOTokenDailyStat(block) if (possiblePromise instanceof Promise) { @@ -831,18 +862,18 @@ export const createOTokenProcessor = (params: { if (log.address === params.otokenVaultAddress && log.topics[0] === otokenVault.events.YieldDistribution.topic) { processYieldDistribution(block, log) } - if (log.address === params.otokenAddress) { - if (log.topics[0] === otoken.events.TotalSupplyUpdatedHighres.topic) { - await processTotalSupplyUpdatedHighres(block, log) - } - if (rebaseEventTopics[log.topics[0]]) { - await processRebaseOptEvent(block, log) - } + if (log.address === params.otokenAddress && rebaseEventTopics[log.topics[0]]) { + await processRebaseOptEvent(block, log) + } + if (log.address === params.otokenAddress && log.topics[0] === otoken.events.TotalSupplyUpdatedHighres.topic) { + await processTotalSupplyUpdatedHighres(block, log) } if (harvesterYieldSentFilter?.matches(log)) { await processHarvesterYieldSent(block, log) } - + if (transferFilter.matches(log)) { + await processTransfer(block, log) + } if (yieldDelegatedFilter.matches(log)) { await processYieldDelegated(block, log) } @@ -852,20 +883,6 @@ export const createOTokenProcessor = (params: { } } - // Process Transfers - const transferLogs = ctx.blocksWithContent.flatMap((block) => - block.logs.filter((log) => transferFilter.matches(log)).map((log) => ({ block, log })), - ) - await parallel( - transferLogs.map( - ({ block, log }) => - () => - processTransfer(block, log), - ), - 10, - ) - time('processTransfers') - await frequencyUpdate(ctx, async (ctx, block) => { const vaultContract = new otokenVault.Contract(ctx, block.header, params.otokenVaultAddress) const [vaultBuffer, totalValue] = await Promise.all([vaultContract.vaultBuffer(), vaultContract.totalValue()]) From 6ed840feee1d64e1cdbcdd95c73e189817bc6d29 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Wed, 18 Dec 2024 16:10:20 -0800 Subject: [PATCH 11/16] ensure exchange rates async ahead of time in otoken processor get status for arb --- src/main-arbitrum.ts | 3 ++- src/templates/otoken/otoken.ts | 18 +++++++++++++++++- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/src/main-arbitrum.ts b/src/main-arbitrum.ts index e080d464..b03f4822 100644 --- a/src/main-arbitrum.ts +++ b/src/main-arbitrum.ts @@ -2,6 +2,7 @@ import 'tsconfig-paths/register' import { arbitrum } from 'viem/chains' import { defineSquidProcessor, run } from '@processor' +import { processStatus } from '@templates/processor-status/processor-status' import { arbitrumERC20s } from './arbitrum' import { ccip } from './oeth/processors/ccip' @@ -10,7 +11,7 @@ export const processor = defineSquidProcessor({ chainId: arbitrum.id, stateSchema: 'arbitrum-processor', processors: [arbitrumERC20s, ccip({ chainId: arbitrum.id })], - postProcessors: [], + postProcessors: [processStatus('arbitrum')], validators: [], }) export default processor diff --git a/src/templates/otoken/otoken.ts b/src/templates/otoken/otoken.ts index 5e9da9f3..f9ba35e0 100644 --- a/src/templates/otoken/otoken.ts +++ b/src/templates/otoken/otoken.ts @@ -33,7 +33,7 @@ import { Block, Context, Log } from '@processor' import { ensureExchangeRate } from '@shared/post-processors/exchange-rates' import { CurrencyAddress, CurrencySymbol } from '@shared/post-processors/exchange-rates/mainnetCurrencies' import { EvmBatchProcessor } from '@subsquid/evm-processor' -import { ADDRESS_ZERO, OETH_ADDRESS, OUSD_ADDRESS } from '@utils/addresses' +import { ADDRESS_ZERO, OETH_ADDRESS, OUSD_ADDRESS, OUSD_STABLE_OTOKENS } from '@utils/addresses' import { baseAddresses } from '@utils/addresses-base' import { blockFrequencyUpdater } from '@utils/blockFrequencyUpdater' import { DECIMALS_18 } from '@utils/constants' @@ -841,6 +841,22 @@ export const createOTokenProcessor = (params: { return new Map(delegatedAddresses.map((address, index) => [address, delegateBalances[index]])) } + // Trigger ensureExchangeRate asynchronously ahead of time. + // We know we need it for TotalSupplyUpdatedHighres events. + for (const block of ctx.blocksWithContent) { + const log = block.logs.some( + (l) => l.address === params.otokenAddress && l.topics[0] === otoken.events.TotalSupplyUpdatedHighres.topic, + ) + if (log) { + ensureExchangeRate( + ctx, + block, + params.otokenAddress, + OUSD_STABLE_OTOKENS.includes(params.otokenAddress) ? 'ETH' : 'USD', + ) + } + } + for (const block of ctx.blocksWithContent) { const possiblePromise = getOTokenDailyStat(block) if (possiblePromise instanceof Promise) { From cf64f1eb411bada41824b05eaf0c0a0d234271c3 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Wed, 18 Dec 2024 20:52:47 -0800 Subject: [PATCH 12/16] add script to log processing times --- package.json | 3 +- processing-times.log | 11 ++++++ scripts/check-processing-times.ts | 61 +++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 processing-times.log create mode 100644 scripts/check-processing-times.ts diff --git a/package.json b/package.json index 03d87063..a5a4a717 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,8 @@ "process:ogv": "sqd process:ogv", "process:mainnet": "sqd process:mainnet", "process:test": "sqd process:test", - "process": "sqd process" + "process": "sqd process", + "log:processing-times": "ts-node --require tsconfig-paths/register scripts/check-processing-times.ts" }, "dependencies": { "@subsquid/archive-registry": "^3.3.2", diff --git a/processing-times.log b/processing-times.log new file mode 100644 index 00000000..6a089525 --- /dev/null +++ b/processing-times.log @@ -0,0 +1,11 @@ +Processing Times +============================== +Version: v999 +Date: 2024-12-19T04:40:15.053Z +============================== +arbitrum: 52.96 minutes +mainnet: 42.99 minutes +ogv: 27.67 minutes +oeth: 51.76 minutes +base: 74.62 minutes +ousd: 69.88 minutes diff --git a/scripts/check-processing-times.ts b/scripts/check-processing-times.ts new file mode 100644 index 00000000..9b06d53a --- /dev/null +++ b/scripts/check-processing-times.ts @@ -0,0 +1,61 @@ +import fs from 'fs' + +const LIMIT = 1000 + +const gql = (query: string) => query + +const executeQuery = async (query: string): Promise => { + const response = await fetch(`https://origin.squids.live/origin-squid@${process.argv[2]}/api/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ query }), + }) + const text = await response.text() + try { + return JSON.parse(text) + } catch (err) { + console.log(text) + throw err + } +} + +const main = async () => { + const result = await executeQuery<{ + data: { + processingStatuses: { + id: string + startTimestamp: string + headTimestamp: string + blockNumber: string + timestamp: string + }[] + } + }>( + gql(` + query MyQuery { + processingStatuses(limit: 10) { + id + startTimestamp + headTimestamp + blockNumber + timestamp + } + } + `), + ) + + let output = `Processing Times\n` + output += '==============================\n' + output += `Version: ${process.argv[2]}\nDate: ${new Date().toISOString()}\n` + output += '==============================\n' + for (const status of result.data.processingStatuses) { + const minutes = (Date.parse(status.headTimestamp) - Date.parse(status.startTimestamp)) / (1000 * 60) + output += `${status.id}: ${minutes.toFixed(2)} minutes\n` + } + console.log(output) + fs.writeFileSync(`processing-times.log`, output) +} + +main() From 0a91063cfa568845d7abbeb2079ea0a7d319fc95 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Thu, 19 Dec 2024 10:38:26 -0800 Subject: [PATCH 13/16] fix `getOTokenObject` --- src/templates/otoken/otoken.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/otoken/otoken.ts b/src/templates/otoken/otoken.ts index f9ba35e0..6bd3d0fd 100644 --- a/src/templates/otoken/otoken.ts +++ b/src/templates/otoken/otoken.ts @@ -738,7 +738,7 @@ export const createOTokenProcessor = (params: { const timestamp = new Date(block.header.timestamp) const otokenId = `${ctx.chain.id}-${params.otokenAddress}-${timestamp.toISOString()}` const latest = - result.otokens.find((o) => o.id <= otokenId) ?? + findLast(result.otokens, (o) => o.id <= otokenId) ?? (await ctx.store.findOne(OToken, { where: { chainId: ctx.chain.id, From cb65c1724085cb975259b347fdff44e6cc99638a Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Thu, 19 Dec 2024 10:38:53 -0800 Subject: [PATCH 14/16] clean up logging --- src/processor.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/processor.ts b/src/processor.ts index 5c6e814a..a5747778 100644 --- a/src/processor.ts +++ b/src/processor.ts @@ -237,7 +237,11 @@ export const run = ({ chainId = 1, stateSchema, processors, postProcessors, vali } } finally { printStats(ctx) - ctx.log.info(`===== End of Context ===== (${Date.now() - contextTime}ms, ${ctx.blocks.at(-1)?.header.height})`) + if (process.env.DEBUG_PERF === 'true') { + ctx.log.info( + `===== End of Context ===== (${Date.now() - contextTime}ms, ${ctx.blocks.at(-1)?.header.height})`, + ) + } } }, ) From 3eaa0a417f3f1c4c7d569ad92207f6131ad52a9a Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Thu, 19 Dec 2024 12:21:26 -0800 Subject: [PATCH 15/16] update processing times --- processing-times.log | 14 +++++++------- scripts/check-processing-times.ts | 5 ++++- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/processing-times.log b/processing-times.log index 6a089525..5127a749 100644 --- a/processing-times.log +++ b/processing-times.log @@ -1,11 +1,11 @@ Processing Times ============================== Version: v999 -Date: 2024-12-19T04:40:15.053Z +Date: 2024-12-19T20:21:01.586Z ============================== -arbitrum: 52.96 minutes -mainnet: 42.99 minutes -ogv: 27.67 minutes -oeth: 51.76 minutes -base: 74.62 minutes -ousd: 69.88 minutes +arbitrum: 53.74 minutes +base: 96.13 minutes +mainnet: 43.33 minutes +oeth: 52.01 minutes +ogv: 27.98 minutes +ousd: 72.90 minutes diff --git a/scripts/check-processing-times.ts b/scripts/check-processing-times.ts index 9b06d53a..2c369930 100644 --- a/scripts/check-processing-times.ts +++ b/scripts/check-processing-times.ts @@ -13,6 +13,9 @@ const executeQuery = async (query: string): Promise => { body: JSON.stringify({ query }), }) const text = await response.text() + if (response.status !== 200) { + throw new Error(`Failed to execute query: ${text}`) + } try { return JSON.parse(text) } catch (err) { @@ -35,7 +38,7 @@ const main = async () => { }>( gql(` query MyQuery { - processingStatuses(limit: 10) { + processingStatuses(limit: 10, orderBy: id_ASC) { id startTimestamp headTimestamp From 48a8eb9e9df80f82270076c4b6c04a4e0d875833 Mon Sep 17 00:00:00 2001 From: Chris Jacobs Date: Thu, 19 Dec 2024 12:28:11 -0800 Subject: [PATCH 16/16] update entities.json --- src/validation/entities.json | 12666 ++++++++++++++++----------------- 1 file changed, 6318 insertions(+), 6348 deletions(-) diff --git a/src/validation/entities.json b/src/validation/entities.json index 272524c4..7a7b1c8f 100644 --- a/src/validation/entities.json +++ b/src/validation/entities.json @@ -1,441 +1,441 @@ { "strategyBalances_oeth_0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63": [ { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:17292398", - "blockNumber": 17292398, - "timestamp": "2023-05-19T08:37:59.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:17279808", + "blockNumber": 17279808, + "timestamp": "2023-05-17T14:01:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "673558254689294108151", - "balanceETH": "673122564185548714151", + "balance": "11819128534650606717", + "balanceETH": "11813032989845145207", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:18497780", - "blockNumber": 18497780, - "timestamp": "2023-11-04T09:28:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:18535608", + "blockNumber": 18535608, + "timestamp": "2023-11-09T16:33:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "7955783859326552048610", - "balanceETH": "7959748956457198164593", + "balance": "8391213055291586076278", + "balanceETH": "8398811110936608106382", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:18886345", - "blockNumber": 18886345, - "timestamp": "2023-12-28T20:01:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:18958992", + "blockNumber": 18958992, + "timestamp": "2024-01-08T01:15:47.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "5623832366009355239719", - "balanceETH": "5622866242996245972472", + "balance": "1716226273417090432899", + "balanceETH": "1716683430423930939602", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19066443", - "blockNumber": 19066443, - "timestamp": "2024-01-23T02:35:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19138392", + "blockNumber": 19138392, + "timestamp": "2024-02-02T04:38:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "4937242392639783706660", - "balanceETH": "4939933078923910292957", + "balance": "7626506475027830938186", + "balanceETH": "7640278466514592525709", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19242900", - "blockNumber": 19242900, - "timestamp": "2024-02-16T20:42:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19317792", + "blockNumber": 19317792, + "timestamp": "2024-02-27T08:47:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "8089655787786344640774", - "balanceETH": "8088466064418498779930", + "balance": "8368435408884982281711", + "balanceETH": "8368759439272691893901", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19426550", - "blockNumber": 19426550, - "timestamp": "2024-03-13T13:48:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19497192", + "blockNumber": 19497192, + "timestamp": "2024-03-23T12:06:47.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "9007946942930659985225", - "balanceETH": "9012424991950181261293", + "balance": "9473841030300590430186", + "balanceETH": "9482176211148846765583", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19600339", - "blockNumber": 19600339, - "timestamp": "2024-04-07T00:45:23.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19676592", + "blockNumber": 19676592, + "timestamp": "2024-04-17T17:09:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "14653605004363515871459", - "balanceETH": "14681096852292177813430", + "balance": "15789183947576303808492", + "balanceETH": "15839969944383523599530", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19782169", - "blockNumber": 19782169, - "timestamp": "2024-05-02T11:34:23.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19855992", + "blockNumber": 19855992, + "timestamp": "2024-05-12T19:21:35.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "15825985222496563267278", - "balanceETH": "15877768535864159377691", + "balance": "6856900867510674348128", + "balanceETH": "6860639707907069067604", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:19960008", - "blockNumber": 19960008, - "timestamp": "2024-05-27T08:26:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20035392", + "blockNumber": 20035392, + "timestamp": "2024-06-06T21:12:47.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "7009763091389588533621", - "balanceETH": "7014723668481805913540", + "balance": "6876683137209645122580", + "balanceETH": "6880573270371355696895", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20135454", - "blockNumber": 20135454, - "timestamp": "2024-06-20T20:55:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20214792", + "blockNumber": 20214792, + "timestamp": "2024-07-01T22:55:35.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "7487244681455245503864", - "balanceETH": "7496912860643238457737", + "balance": "7261393079733030784530", + "balanceETH": "7261024195853259529590", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20312920", - "blockNumber": 20312920, - "timestamp": "2024-07-15T15:51:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20394192", + "blockNumber": 20394192, + "timestamp": "2024-07-27T00:06:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "7244526295159213008711", - "balanceETH": "7244065820591539474684", + "balance": "6840795237097748575797", + "balanceETH": "6838311116668061533974", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20489040", - "blockNumber": 20489040, - "timestamp": "2024-08-09T05:46:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20573592", + "blockNumber": 20573592, + "timestamp": "2024-08-21T01:04:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "9809919715429630447117", - "balanceETH": "9839751122632026658381", + "balance": "3933148128383815285828", + "balanceETH": "3932311213442604127344", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20670920", - "blockNumber": 20670920, - "timestamp": "2024-09-03T15:23:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20752992", + "blockNumber": 20752992, + "timestamp": "2024-09-15T02:21:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "4019377267983647842212", - "balanceETH": "4018984500399112583935", + "balance": "4066243155850886094355", + "balanceETH": "4066427097174938096130", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20851254", - "blockNumber": 20851254, - "timestamp": "2024-09-28T19:34:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:20932392", + "blockNumber": 20932392, + "timestamp": "2024-10-10T03:02:35.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3623570988565012658109", - "balanceETH": "3623590157583606344453", + "balance": "4479901888519373126146", + "balanceETH": "4479300056642247818649", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21027632", - "blockNumber": 21027632, - "timestamp": "2024-10-23T10:16:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21111792", + "blockNumber": 21111792, + "timestamp": "2024-11-04T04:08:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3678342883075097291586", - "balanceETH": "3678446164561569665023", + "balance": "3679809551929521697753", + "balanceETH": "3679920679381430351771", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21157083", - "blockNumber": 21157083, - "timestamp": "2024-11-10T11:51:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21240960", + "blockNumber": 21240960, + "timestamp": "2024-11-22T04:43:35.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3662210767838005830244", - "balanceETH": "3662222410436123842462", + "balance": "3662534302356329287933", + "balanceETH": "3662547520745519862384", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21201858", - "blockNumber": 21201858, - "timestamp": "2024-11-16T17:49:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21285810", + "blockNumber": 21285810, + "timestamp": "2024-11-28T11:09:59.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3661953619800509672987", - "balanceETH": "3661963683275332733334", + "balance": "3672388107182760438174", + "balanceETH": "3672456718367558932231", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21246633", - "blockNumber": 21246633, - "timestamp": "2024-11-22T23:44:23.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21330660", + "blockNumber": 21330660, + "timestamp": "2024-12-04T17:34:59.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3665542044780865281724", - "balanceETH": "3665572123299843725712", + "balance": "3670213515482821945009", + "balanceETH": "3670269838478824270072", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21291408", - "blockNumber": 21291408, - "timestamp": "2024-11-29T05:56:59.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21375510", + "blockNumber": 21375510, + "timestamp": "2024-12-10T23:52:59.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3675112423091464253440", - "balanceETH": "3675196428124810416978", + "balance": "3685493779719527127991", + "balanceETH": "3685636715065772134205", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21306702", - "blockNumber": 21306702, - "timestamp": "2024-12-01T09:15:59.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21390887", + "blockNumber": 21390887, + "timestamp": "2024-12-13T03:25:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3659079027040438788361", - "balanceETH": "3659072903208030125718", + "balance": "3657706053649964395934", + "balanceETH": "3657692216927506707677", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21310427", - "blockNumber": 21310427, - "timestamp": "2024-12-01T21:43:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21394612", + "blockNumber": 21394612, + "timestamp": "2024-12-13T15:53:47.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3659219748320544949244", - "balanceETH": "3659214410129120208474", + "balance": "3657706053649964395934", + "balanceETH": "3657692216927506707677", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21314152", - "blockNumber": 21314152, - "timestamp": "2024-12-02T10:12:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21398337", + "blockNumber": 21398337, + "timestamp": "2024-12-14T04:22:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3659219748320544949244", - "balanceETH": "3659214410129120208474", + "balance": "3659632587683577182813", + "balanceETH": "3659629502374991153840", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21317877", - "blockNumber": 21317877, - "timestamp": "2024-12-02T22:42:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21402062", + "blockNumber": 21402062, + "timestamp": "2024-12-14T16:51:47.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3670122658372348233922", - "balanceETH": "3670178469466971003048", + "balance": "3673039539564590568878", + "balanceETH": "3673111750962528988312", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21321602", - "blockNumber": 21321602, - "timestamp": "2024-12-03T11:12:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21405787", + "blockNumber": 21405787, + "timestamp": "2024-12-15T05:19:35.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3670122658372348233922", - "balanceETH": "3670178469466971003048", + "balance": "3672374364497869318879", + "balanceETH": "3672442978357789026235", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21325327", - "blockNumber": 21325327, - "timestamp": "2024-12-03T23:42:23.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21409512", + "blockNumber": 21409512, + "timestamp": "2024-12-15T17:49:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3670122658372348233922", - "balanceETH": "3670178469466971003048", + "balance": "3691278378113250327280", + "balanceETH": "3691454532756120700626", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21329052", - "blockNumber": 21329052, - "timestamp": "2024-12-04T12:11:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21413237", + "blockNumber": 21413237, + "timestamp": "2024-12-16T06:17:47.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3670213515482821945009", - "balanceETH": "3670269838478824270072", + "balance": "3691278378113250327280", + "balanceETH": "3691454532756120700626", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21332777", - "blockNumber": 21332777, - "timestamp": "2024-12-05T00:40:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21416962", + "blockNumber": 21416962, + "timestamp": "2024-12-16T18:45:59.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3670213515482821945009", - "balanceETH": "3670269838478824270072", + "balance": "3691278378113250327280", + "balanceETH": "3691454532756120700626", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21336502", - "blockNumber": 21336502, - "timestamp": "2024-12-05T13:09:59.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21420687", + "blockNumber": 21420687, + "timestamp": "2024-12-17T07:13:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3670226678922614401751", - "balanceETH": "3670283076086444077712", + "balance": "3691278378113250327280", + "balanceETH": "3691454532756120700626", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21340227", - "blockNumber": 21340227, - "timestamp": "2024-12-06T01:39:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21424412", + "blockNumber": 21424412, + "timestamp": "2024-12-17T19:41:35.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3664692870833978529308", - "balanceETH": "3664718126778974783694", + "balance": "3645556126786803224175", + "balanceETH": "3645474961482399121345", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21343952", - "blockNumber": 21343952, - "timestamp": "2024-12-06T14:08:23.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21428137", + "blockNumber": 21428137, + "timestamp": "2024-12-18T08:10:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3664692870833978529308", - "balanceETH": "3664718126778974783694", + "balance": "3650737774813868270748", + "balanceETH": "3650685278228773291693", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21347372", - "blockNumber": 21347372, - "timestamp": "2024-12-07T01:35:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21431510", + "blockNumber": 21431510, + "timestamp": "2024-12-18T19:30:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21349222", - "blockNumber": 21349222, - "timestamp": "2024-12-07T07:47:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21433360", + "blockNumber": 21433360, + "timestamp": "2024-12-19T01:42:23.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21351075", - "blockNumber": 21351075, - "timestamp": "2024-12-07T14:01:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21435210", + "blockNumber": 21435210, + "timestamp": "2024-12-19T07:55:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21352950", - "blockNumber": 21352950, - "timestamp": "2024-12-07T20:18:59.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21437060", + "blockNumber": 21437060, + "timestamp": "2024-12-19T14:07:35.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21354200", - "blockNumber": 21354200, - "timestamp": "2024-12-08T00:30:35.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21438360", + "blockNumber": 21438360, + "timestamp": "2024-12-19T18:29:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21354304", - "blockNumber": 21354304, - "timestamp": "2024-12-08T00:51:23.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21438460", + "blockNumber": 21438460, + "timestamp": "2024-12-19T18:49:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21354404", - "blockNumber": 21354404, - "timestamp": "2024-12-08T01:11:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21438560", + "blockNumber": 21438560, + "timestamp": "2024-12-19T19:09:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21354504", - "blockNumber": 21354504, - "timestamp": "2024-12-08T01:31:47.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21438660", + "blockNumber": 21438660, + "timestamp": "2024-12-19T19:29:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21354605", - "blockNumber": 21354605, - "timestamp": "2024-12-08T01:51:59.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21438760", + "blockNumber": 21438760, + "timestamp": "2024-12-19T19:49:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" }, { - "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21354730", - "blockNumber": 21354730, - "timestamp": "2024-12-08T02:17:11.000000Z", + "id": "1:0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3:21438860", + "blockNumber": 21438860, + "timestamp": "2024-12-19T20:09:11.000000Z", "asset": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "balance": "3674819709668019141096", - "balanceETH": "3674902002117814470713", + "balance": "3639606410312686304998", + "balanceETH": "3639492469663272127242", "chainId": 1, "symbol": "OETH", "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63" @@ -460,11 +460,11 @@ "timestamp": "2023-06-07T23:59:59.999000Z", "blockNumber": 17431903, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.31124375961569306, - "apy": 0.36494102617263424, + "apr": 0.31300453986974713, + "apy": 0.36734444886536055, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "5270992707261486460330", - "balanceWeight": 0.49547958686972265, + "balance": "5271000588762654431853", + "balanceWeight": 0.4926915721521891, "earnings": "14978667294067786526", "earningsChange": "2225505183784489986" }, @@ -473,11 +473,11 @@ "timestamp": "2023-07-02T23:59:59.999000Z", "blockNumber": 17609749, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.16889719765207784, - "apy": 0.1839521944764646, + "apr": 0.1702895411504991, + "apy": 0.18560104463722138, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "15770154276623434442810", - "balanceWeight": 0.49289869428498767, + "balance": "15770105445519454966156", + "balanceWeight": 0.48887010561195793, "earnings": "78184410973825993309", "earningsChange": "3594395226778274179" }, @@ -486,10 +486,10 @@ "timestamp": "2023-07-27T23:59:59.999000Z", "blockNumber": 17787837, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.09087297873006256, - "apy": 0.09511751391940493, + "apr": 0.09087295607168172, + "apy": 0.09511748911198747, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "38554146334491473716254", + "balance": "38554155947645680539414", "balanceWeight": 0.4999999999979071, "earnings": "190138222697212815892", "earningsChange": "4796071348112420984" @@ -499,12 +499,12 @@ "timestamp": "2023-08-21T23:59:59.999000Z", "blockNumber": 17966537, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.11635205537360899, - "apy": 0.1233704841232246, + "apr": 0.10190908338039112, + "apy": 0.10726705762928868, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "34530796332440131207344", - "balanceWeight": 0.4093292235803341, - "earnings": "296007471192253101129", + "balance": "34530345067131828641415", + "balanceWeight": 0.4673471423751374, + "earnings": "295997858038046277969", "earningsChange": "4502598067344712219" }, { @@ -512,12 +512,12 @@ "timestamp": "2023-09-15T23:59:59.999000Z", "blockNumber": 18145019, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.1370536950559984, - "apy": 0.14686024637475303, + "apr": 0.12716887614981154, + "apy": 0.13558364465490724, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "34531643891614020282175", - "balanceWeight": 0.4207539353271222, - "earnings": "404795231698602749327", + "balance": "34531955357533552162357", + "balanceWeight": 0.45345498966504716, + "earnings": "404785618544395926167", "earningsChange": "5451875937686646719" }, { @@ -525,12 +525,12 @@ "timestamp": "2023-10-10T23:59:59.999000Z", "blockNumber": 18323489, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.0487922127919409, - "apy": 0.04999872943710626, + "apr": 0.04879226134028458, + "apy": 0.04999878040599781, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "20104442784219521599553", + "balance": "20104434306685903882605", "balanceWeight": 0.49627262266164873, - "earnings": "518014516684634889759", + "earnings": "518004903530428066599", "earningsChange": "1781206009215949605" }, { @@ -538,12 +538,12 @@ "timestamp": "2023-11-04T23:59:59.999000Z", "blockNumber": 18502098, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.17264785075996536, - "apy": 0.1883990434148317, + "apr": 0.17508551837025982, + "apy": 0.19129811730527946, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "13599854003807725574359", - "balanceWeight": 0.38343944814299974, - "earnings": "569277068468206517155", + "balance": "13599627515669968267515", + "balanceWeight": 0.3781072228539217, + "earnings": "569267455313999693995", "earningsChange": "2464915233576506520" }, { @@ -551,12 +551,12 @@ "timestamp": "2023-11-29T23:59:59.999000Z", "blockNumber": 18680705, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.2122693719580721, - "apy": 0.23640467748005234, + "apr": 0.2042630182869043, + "apy": 0.22655070291547252, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "13276635096476596316980", - "balanceWeight": 0.32335607667650695, - "earnings": "628440288322300670834", + "balance": "13276523553972429252097", + "balanceWeight": 0.3360332602381306, + "earnings": "628430675168093847674", "earningsChange": "2494974758178946661" }, { @@ -564,12 +564,12 @@ "timestamp": "2023-12-24T23:59:59.999000Z", "blockNumber": 18859050, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.14604856608455552, - "apy": 0.15721860829140089, + "apr": 0.1459142121666478, + "apy": 0.15706320398857865, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "10756578921192497237361", - "balanceWeight": 0.48907053366788095, - "earnings": "687066836153588423744", + "balance": "10756579889983005332289", + "balanceWeight": 0.48952081269241815, + "earnings": "687057222999381600584", "earningsChange": "2103549510455671563" }, { @@ -582,7 +582,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "3039364911428598091898", "balanceWeight": 0.39427049413539195, - "earnings": "714819165841875277773", + "earnings": "714809552687668454613", "earningsChange": "1604506750632021625" }, { @@ -595,7 +595,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "15401117774921389387046", "balanceWeight": 0.48606463958343155, - "earnings": "745415835264772431174", + "earnings": "745406222110565608014", "earningsChange": "664711940332695471" }, { @@ -606,9 +606,9 @@ "apr": 0, "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "15401384603292044477888", - "balanceWeight": 0.430746393999981, - "earnings": "769965843331924126874", + "balance": "15401384621235533610331", + "balanceWeight": 0.43075221820382925, + "earnings": "769956230177717303714", "earningsChange": "0" }, { @@ -616,12 +616,12 @@ "timestamp": "2024-04-02T23:59:59.999000Z", "blockNumber": 19571531, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.03885501648657852, - "apy": 0.03961759658945607, + "apr": 0.038937372603626674, + "apy": 0.03970320986613918, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "21692006861268036396915", - "balanceWeight": 0.32609140466851816, - "earnings": "792264508807390054550", + "balance": "21692003866665129698290", + "balanceWeight": 0.32540173633821423, + "earnings": "792254895653183231390", "earningsChange": "752481726125235041" }, { @@ -629,12 +629,12 @@ "timestamp": "2024-04-27T23:59:59.999000Z", "blockNumber": 19750102, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.06306651147214809, - "apy": 0.06509187958999596, + "apr": 0.06309941628071247, + "apy": 0.06512692075888449, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "21692264720154107640342", - "balanceWeight": 0.270303722640648, - "earnings": "815407889172931320370", + "balance": "21692265332843780631318", + "balanceWeight": 0.27016275820313806, + "earnings": "815398276018724497210", "earningsChange": "1012431167999076239" }, { @@ -647,7 +647,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "11643040315270536537980", "balanceWeight": 0.40618800856577536, - "earnings": "845405870628579115091", + "earnings": "845396257474372291931", "earningsChange": "1168344035002354727" }, { @@ -660,7 +660,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "11643294408593003040461", "balanceWeight": 0.44785818579209125, - "earnings": "876955994514163516667", + "earnings": "876946381359956693507", "earningsChange": "1300513012466444723" }, { @@ -673,7 +673,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "13579967245815368988284", "balanceWeight": 0.4646299190479108, - "earnings": "914906508979347448236", + "earnings": "914896895825140625076", "earningsChange": "1493917897291561776" }, { @@ -686,7 +686,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "13580247250517228836415", "balanceWeight": 0.49576490902837295, - "earnings": "959368081365134221271", + "earnings": "959358468210927398111", "earningsChange": "2264499298892929283" }, { @@ -694,12 +694,12 @@ "timestamp": "2024-08-30T23:59:59.999000Z", "blockNumber": 20644832, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.19182924685699776, - "apy": 0.21140263428520822, + "apr": 0.1917520754513145, + "apy": 0.21130920130741138, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "7581692623431508548596", - "balanceWeight": 0.46985210346031514, - "earnings": "1013218581269296229688", + "balance": "7581692336638520030632", + "balanceWeight": 0.47004121513813313, + "earnings": "1013208968115089406528", "earningsChange": "1870905905670504015" }, { @@ -712,7 +712,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "6708096666815842467691", "balanceWeight": 0.460066038504079, - "earnings": "1046947871162967054977", + "earnings": "1046938258008760231817", "earningsChange": "1317228668179807422" }, { @@ -720,12 +720,12 @@ "timestamp": "2024-10-19T23:59:59.999000Z", "blockNumber": 21003063, "strategy": "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63", - "apr": 0.06401178715088046, - "apy": 0.06609898576399109, + "apr": 0.06062106478851015, + "apy": 0.06249087618829874, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "6781804162858257513928", - "balanceWeight": 0.46004911415604527, - "earnings": "1065907924485253727160", + "balance": "6781769251920100062346", + "balanceWeight": 0.48578357492144025, + "earnings": "1065898311331046904000", "earningsChange": "546788247267985854" }, { @@ -738,7 +738,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "6782138507351973716504", "balanceWeight": 0.4606069727224132, - "earnings": "1084963803667164387402", + "earnings": "1084954190512957564242", "earningsChange": "0" }, { @@ -751,15 +751,15 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "6782193234074369463520", "balanceWeight": 0.4581664687456289, - "earnings": "1105058153083012402048", + "earnings": "1105048539928805578888", "earningsChange": "625353366950571100" } ], "strategyBalances_oeth_0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5": [ { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:17067560", - "blockNumber": 17067560, - "timestamp": "2023-04-17T16:04:59.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:17078880", + "blockNumber": 17078880, + "timestamp": "2023-04-19T06:27:47.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -768,75 +768,75 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:18317202", - "blockNumber": 18317202, - "timestamp": "2023-10-10T02:53:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:18334680", + "blockNumber": 18334680, + "timestamp": "2023-10-12T13:37:11.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", - "balance": "14108375803249447683226", - "balanceETH": "14282542905167227259959", + "balance": "14112018879581700881190", + "balanceETH": "14129103046447908545080", "chainId": 1, "symbol": "frxETH", "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:18857805", - "blockNumber": 18857805, - "timestamp": "2023-12-24T19:49:11.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:18930288", + "blockNumber": 18930288, + "timestamp": "2024-01-04T00:07:11.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", - "balance": "15132806306843623527773", - "balanceETH": "15169830304812021829307", + "balance": "15133770064976810508599", + "balanceETH": "15155047228102921511624", "chainId": 1, "symbol": "frxETH", "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19037975", - "blockNumber": 19037975, - "timestamp": "2024-01-19T02:38:47.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19109688", + "blockNumber": 19109688, + "timestamp": "2024-01-29T04:06:11.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", - "balance": "15158187994578576479487", - "balanceETH": "15178007223173149041073", + "balance": "15162143044409899129088", + "balanceETH": "15207728689222252407275", "chainId": 1, "symbol": "frxETH", "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19214392", - "blockNumber": 19214392, - "timestamp": "2024-02-12T20:41:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19289088", + "blockNumber": 19289088, + "timestamp": "2024-02-23T08:25:47.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", - "balance": "15100981892210068499753", - "balanceETH": "15112125731557142005712", + "balance": "15117317090058987154378", + "balanceETH": "15229012917316240127755", "chainId": 1, "symbol": "frxETH", "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19394250", - "blockNumber": 19394250, - "timestamp": "2024-03-09T01:26:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19468488", + "blockNumber": 19468488, + "timestamp": "2024-03-19T11:26:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", - "balance": "15141807759903274299989", - "balanceETH": "15154618838174070539929", + "balance": "15162519213029828852896", + "balanceETH": "15183318894697594323423", "chainId": 1, "symbol": "frxETH", "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19576752", - "blockNumber": 19576752, - "timestamp": "2024-04-03T17:31:47.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19647888", + "blockNumber": 19647888, + "timestamp": "2024-04-13T16:37:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", - "balance": "4170438664053830171163", - "balanceETH": "4221878340969951328673", + "balance": "0", + "balanceETH": "0", "chainId": 1, "symbol": "frxETH", "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19753613", - "blockNumber": 19753613, - "timestamp": "2024-04-28T11:47:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19827288", + "blockNumber": 19827288, + "timestamp": "2024-05-08T19:01:11.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -845,9 +845,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:19931412", - "blockNumber": 19931412, - "timestamp": "2024-05-23T08:32:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20006688", + "blockNumber": 20006688, + "timestamp": "2024-06-02T21:01:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -856,9 +856,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20106822", - "blockNumber": 20106822, - "timestamp": "2024-06-16T20:44:47.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20186088", + "blockNumber": 20186088, + "timestamp": "2024-06-27T22:44:23.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -867,9 +867,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20285908", - "blockNumber": 20285908, - "timestamp": "2024-07-11T21:18:59.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20365488", + "blockNumber": 20365488, + "timestamp": "2024-07-22T23:55:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -878,9 +878,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20460384", - "blockNumber": 20460384, - "timestamp": "2024-08-05T05:50:11.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20544888", + "blockNumber": 20544888, + "timestamp": "2024-08-17T00:52:47.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -889,9 +889,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20642280", - "blockNumber": 20642280, - "timestamp": "2024-08-30T15:26:47.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20724288", + "blockNumber": 20724288, + "timestamp": "2024-09-11T02:08:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -900,9 +900,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20822622", - "blockNumber": 20822622, - "timestamp": "2024-09-24T19:43:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20903688", + "blockNumber": 20903688, + "timestamp": "2024-10-06T03:01:23.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -911,9 +911,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:20998984", - "blockNumber": 20998984, - "timestamp": "2024-10-19T10:21:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21083088", + "blockNumber": 21083088, + "timestamp": "2024-10-31T03:59:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -922,9 +922,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21149919", - "blockNumber": 21149919, - "timestamp": "2024-11-09T11:52:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21233784", + "blockNumber": 21233784, + "timestamp": "2024-11-21T04:40:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -933,9 +933,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21194694", - "blockNumber": 21194694, - "timestamp": "2024-11-15T17:50:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21278634", + "blockNumber": 21278634, + "timestamp": "2024-11-27T10:56:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -944,9 +944,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21239469", - "blockNumber": 21239469, - "timestamp": "2024-11-21T23:43:59.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21323484", + "blockNumber": 21323484, + "timestamp": "2024-12-03T17:31:23.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -955,9 +955,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21284244", - "blockNumber": 21284244, - "timestamp": "2024-11-28T05:51:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21368334", + "blockNumber": 21368334, + "timestamp": "2024-12-09T23:48:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -966,9 +966,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21306106", - "blockNumber": 21306106, - "timestamp": "2024-12-01T07:16:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21390291", + "blockNumber": 21390291, + "timestamp": "2024-12-13T01:25:11.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -977,9 +977,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21309831", - "blockNumber": 21309831, - "timestamp": "2024-12-01T19:44:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21394016", + "blockNumber": 21394016, + "timestamp": "2024-12-13T13:53:47.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -988,9 +988,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21313556", - "blockNumber": 21313556, - "timestamp": "2024-12-02T08:12:59.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21397741", + "blockNumber": 21397741, + "timestamp": "2024-12-14T02:22:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -999,9 +999,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21317281", - "blockNumber": 21317281, - "timestamp": "2024-12-02T20:42:47.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21401466", + "blockNumber": 21401466, + "timestamp": "2024-12-14T14:51:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1010,9 +1010,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21321006", - "blockNumber": 21321006, - "timestamp": "2024-12-03T09:12:59.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21405191", + "blockNumber": 21405191, + "timestamp": "2024-12-15T03:19:23.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1021,9 +1021,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21324731", - "blockNumber": 21324731, - "timestamp": "2024-12-03T21:42:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21408916", + "blockNumber": 21408916, + "timestamp": "2024-12-15T15:49:11.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1032,9 +1032,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21328456", - "blockNumber": 21328456, - "timestamp": "2024-12-04T10:11:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21412641", + "blockNumber": 21412641, + "timestamp": "2024-12-16T04:18:11.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1043,9 +1043,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21332181", - "blockNumber": 21332181, - "timestamp": "2024-12-04T22:40:11.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21416366", + "blockNumber": 21416366, + "timestamp": "2024-12-16T16:46:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1054,9 +1054,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21335906", - "blockNumber": 21335906, - "timestamp": "2024-12-05T11:09:59.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21420091", + "blockNumber": 21420091, + "timestamp": "2024-12-17T05:13:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1065,9 +1065,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21339631", - "blockNumber": 21339631, - "timestamp": "2024-12-05T23:39:47.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21423816", + "blockNumber": 21423816, + "timestamp": "2024-12-17T17:41:47.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1076,9 +1076,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21343356", - "blockNumber": 21343356, - "timestamp": "2024-12-06T12:08:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21427541", + "blockNumber": 21427541, + "timestamp": "2024-12-18T06:10:35.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1087,9 +1087,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21347081", - "blockNumber": 21347081, - "timestamp": "2024-12-07T00:37:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21431266", + "blockNumber": 21431266, + "timestamp": "2024-12-18T18:40:47.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1098,9 +1098,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21348926", - "blockNumber": 21348926, - "timestamp": "2024-12-07T06:48:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21433064", + "blockNumber": 21433064, + "timestamp": "2024-12-19T00:42:23.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1109,9 +1109,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21350775", - "blockNumber": 21350775, - "timestamp": "2024-12-07T13:00:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21434914", + "blockNumber": 21434914, + "timestamp": "2024-12-19T06:55:23.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1120,9 +1120,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21352650", - "blockNumber": 21352650, - "timestamp": "2024-12-07T19:18:23.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21436764", + "blockNumber": 21436764, + "timestamp": "2024-12-19T13:08:23.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1131,9 +1131,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21354150", - "blockNumber": 21354150, - "timestamp": "2024-12-08T00:20:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21438288", + "blockNumber": 21438288, + "timestamp": "2024-12-19T18:14:47.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1142,9 +1142,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21354288", - "blockNumber": 21354288, - "timestamp": "2024-12-08T00:48:11.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21438444", + "blockNumber": 21438444, + "timestamp": "2024-12-19T18:45:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1153,9 +1153,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21354388", - "blockNumber": 21354388, - "timestamp": "2024-12-08T01:08:11.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21438544", + "blockNumber": 21438544, + "timestamp": "2024-12-19T19:05:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1164,9 +1164,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21354488", - "blockNumber": 21354488, - "timestamp": "2024-12-08T01:28:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21438644", + "blockNumber": 21438644, + "timestamp": "2024-12-19T19:25:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1175,9 +1175,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21354588", - "blockNumber": 21354588, - "timestamp": "2024-12-08T01:48:35.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21438744", + "blockNumber": 21438744, + "timestamp": "2024-12-19T19:45:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1186,9 +1186,9 @@ "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5" }, { - "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21354710", - "blockNumber": 21354710, - "timestamp": "2024-12-08T02:13:11.000000Z", + "id": "1:0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0x5e8422345238f34275888049021821e8e08caa1f:21438844", + "blockNumber": 21438844, + "timestamp": "2024-12-19T20:05:59.000000Z", "asset": "0x5e8422345238f34275888049021821e8e08caa1f", "balance": "0", "balanceETH": "0", @@ -1216,13 +1216,13 @@ "timestamp": "2023-05-12T23:59:59.999000Z", "blockNumber": 17247372, "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5", - "apr": 0.5201622104286815, - "apy": 0.6816781157794802, + "apr": 0, + "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "145164057582210089758", + "balance": "145099850099317467316", "balanceWeight": 1, - "earnings": "357691541271440147", - "earningsChange": "206731983755683927" + "earnings": "293484058378817705", + "earningsChange": "0" }, { "id": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2023-06-06", @@ -1245,9 +1245,9 @@ "apr": 0, "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "2818635491734318687540", + "balance": "2818214764549193379727", "balanceWeight": 1, - "earnings": "11468941427187694132", + "earnings": "11048214242062386319", "earningsChange": "0" }, { @@ -1258,9 +1258,9 @@ "apr": 0, "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "2880231984193797274920", + "balance": "2880071442518728817012", "balanceWeight": 1, - "earnings": "21997468996212551274", + "earnings": "21836927321144093366", "earningsChange": "0" }, { @@ -1281,13 +1281,13 @@ "timestamp": "2023-09-14T23:59:59.999000Z", "blockNumber": 18137928, "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5", - "apr": 0, - "apy": 0, + "apr": 0.1452721871976601, + "apy": 0.15632087474504752, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "4497217144284259882945", + "balance": "4499006550230238358995", "balanceWeight": 1, - "earnings": "45339760998751952054", - "earningsChange": "0" + "earnings": "47129166944730428104", + "earningsChange": "1789405945978476050" }, { "id": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2023-10-09", @@ -1310,9 +1310,9 @@ "apr": 0, "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "15348306795825484565326", + "balance": "15353204228705146192600", "balanceWeight": 1, - "earnings": "99638815017986584158", + "earnings": "104536247897648211432", "earningsChange": "0" }, { @@ -1323,9 +1323,9 @@ "apr": 0, "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "15278898570479418623245", + "balance": "15273549782642148655185", "balanceWeight": 1, - "earnings": "146283519167093987895", + "earnings": "140934731329824019835", "earningsChange": "0" }, { @@ -1333,65 +1333,65 @@ "timestamp": "2023-12-23T23:59:59.999000Z", "blockNumber": 18851935, "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5", - "apr": 0.04258000744096335, - "apy": 0.043496951063274114, + "apr": 0.04285066547155447, + "apy": 0.043779387082651944, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "15131030959142677104200", + "balance": "15131200472398019185929", "balanceWeight": 1, - "earnings": "189968568660785389464", - "earningsChange": "1763940892072955417" + "earnings": "190138081916127471193", + "earningsChange": "1775173195417996966" }, { "id": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-01-17", "timestamp": "2024-01-17T23:59:59.999000Z", "blockNumber": 19030032, "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5", - "apr": 0.04201149696379719, - "apy": 0.04290394936278896, + "apr": 0.04235538719025539, + "apy": 0.04326261408232601, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "15155650973185681352421", + "balance": "15155610523210819634987", "balanceWeight": 1, - "earnings": "230535764873638382688", - "earningsChange": "1743221313744067963" + "earnings": "230495314898776665254", + "earningsChange": "1757485973484488003" }, { "id": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-02-11", "timestamp": "2024-02-11T23:59:59.999000Z", "blockNumber": 19208242, "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5", - "apr": 0.035958850030224365, - "apy": 0.0366113542520754, + "apr": 0.03630885429717995, + "apy": 0.03697420024833176, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "15099500777992530354677", + "balance": "15098605655241669402343", "balanceWeight": 1, - "earnings": "271365464306900911643", - "earningsChange": "1486545336090163896" + "earnings": "270470341556039959309", + "earningsChange": "1500925592955278505" }, { "id": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-03-07", "timestamp": "2024-03-07T23:59:59.999000Z", "blockNumber": 19386733, "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5", - "apr": 0.04001421509055292, - "apy": 0.04082328836537408, + "apr": 0.04372061838850039, + "apy": 0.04468771340296418, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "15137628775879922390257", + "balance": "15138320112180766686962", "balanceWeight": 1, - "earnings": "309493462194292947223", - "earningsChange": "1658371892672628499" + "earnings": "310184798495137243928", + "earningsChange": "1812064932696481757" }, { "id": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-04-01", "timestamp": "2024-04-01T23:59:59.999000Z", "blockNumber": 19564408, "strategy": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5", - "apr": 0.045074757904627116, - "apy": 0.04610315239975282, + "apr": 0.04543824673457891, + "apy": 0.04648342120075677, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "4169394966039637456532", + "balance": "4169342394023461894334", "balanceWeight": 1, - "earnings": "351258955417701686102", - "earningsChange": "514536533068332885" + "earnings": "351206383401526123904", + "earningsChange": "518679283834150331" }, { "id": "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-04-26", @@ -1526,97 +1526,97 @@ ], "strategyBalances_oeth_0xc1fc9e5ec3058921ea5025d703cbe31764756319": [ { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:17390997", - "blockNumber": 17390997, - "timestamp": "2023-06-02T05:30:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:17380272", + "blockNumber": 17380272, + "timestamp": "2023-05-31T17:15:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "57207737070372347154", - "balanceETH": "57207737070372347154", + "balance": "57200633779928195265", + "balanceETH": "57200633779928195265", "chainId": 1, "symbol": "WETH", "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:18608928", - "blockNumber": 18608928, - "timestamp": "2023-11-19T22:48:23.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:18636072", + "blockNumber": 18636072, + "timestamp": "2023-11-23T17:58:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "100181962192594323429", - "balanceETH": "100181962192594323429", + "balance": "40202440844719886689", + "balanceETH": "40202440844719886689", "chainId": 1, "symbol": "WETH", "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:18901788", - "blockNumber": 18901788, - "timestamp": "2023-12-31T00:06:23.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:18973344", + "blockNumber": 18973344, + "timestamp": "2024-01-10T01:42:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "40300477676580543914", - "balanceETH": "40300477676580543914", + "balance": "3840948930831833060052", + "balanceETH": "3840948930831833060052", "chainId": 1, "symbol": "WETH", "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19080677", - "blockNumber": 19080677, - "timestamp": "2024-01-25T02:33:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19152744", + "blockNumber": 19152744, + "timestamp": "2024-02-04T05:01:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3842717321879494106295", - "balanceETH": "3842717321879494106295", + "balance": "885952589814386743500", + "balanceETH": "885952589814386743500", "chainId": 1, "symbol": "WETH", "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19257154", - "blockNumber": 19257154, - "timestamp": "2024-02-18T20:49:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19332144", + "blockNumber": 19332144, + "timestamp": "2024-02-29T09:01:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "886641523244473152925", - "balanceETH": "886641523244473152925", + "balance": "887119823991460242467", + "balanceETH": "887119823991460242467", "chainId": 1, "symbol": "WETH", "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19440850", - "blockNumber": 19440850, - "timestamp": "2024-03-15T14:09:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19511544", + "blockNumber": 19511544, + "timestamp": "2024-03-25T12:38:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "887823410926060978964", - "balanceETH": "887823410926060978964", + "balance": "3559788311544024454522", + "balanceETH": "3559788311544024454522", "chainId": 1, "symbol": "WETH", "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19614537", - "blockNumber": 19614537, - "timestamp": "2024-04-09T00:32:23.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19690944", + "blockNumber": 19690944, + "timestamp": "2024-04-19T17:23:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "578871127831332170", - "balanceETH": "578871127831332170", + "balance": "11011345786073209810419", + "balanceETH": "11011345786073209810419", "chainId": 1, "symbol": "WETH", "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19793968", - "blockNumber": 19793968, - "timestamp": "2024-05-04T03:09:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19870344", + "blockNumber": 19870344, + "timestamp": "2024-05-14T19:35:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "149450456226899927", - "balanceETH": "149450456226899927", + "balance": "0", + "balanceETH": "0", "chainId": 1, "symbol": "WETH", "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:19974306", - "blockNumber": 19974306, - "timestamp": "2024-05-29T08:24:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20049744", + "blockNumber": 20049744, + "timestamp": "2024-06-08T21:17:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1625,9 +1625,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20149770", - "blockNumber": 20149770, - "timestamp": "2024-06-22T20:57:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20229144", + "blockNumber": 20229144, + "timestamp": "2024-07-03T23:03:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1636,9 +1636,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20327240", - "blockNumber": 20327240, - "timestamp": "2024-07-17T15:48:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20408544", + "blockNumber": 20408544, + "timestamp": "2024-07-29T00:09:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1647,9 +1647,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20501926", - "blockNumber": 20501926, - "timestamp": "2024-08-11T00:54:47.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20587944", + "blockNumber": 20587944, + "timestamp": "2024-08-23T01:11:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1658,9 +1658,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20685240", - "blockNumber": 20685240, - "timestamp": "2024-09-05T15:19:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20767344", + "blockNumber": 20767344, + "timestamp": "2024-09-17T02:26:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1669,9 +1669,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20865570", - "blockNumber": 20865570, - "timestamp": "2024-09-30T19:29:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20946744", + "blockNumber": 20946744, + "timestamp": "2024-10-12T03:08:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1680,9 +1680,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21041956", - "blockNumber": 21041956, - "timestamp": "2024-10-25T10:12:47.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21126144", + "blockNumber": 21126144, + "timestamp": "2024-11-06T04:12:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1691,9 +1691,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21160665", - "blockNumber": 21160665, - "timestamp": "2024-11-10T23:50:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21244548", + "blockNumber": 21244548, + "timestamp": "2024-11-22T16:45:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1702,9 +1702,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21205440", - "blockNumber": 21205440, - "timestamp": "2024-11-17T05:48:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21289398", + "blockNumber": 21289398, + "timestamp": "2024-11-28T23:12:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1713,9 +1713,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21250215", - "blockNumber": 21250215, - "timestamp": "2024-11-23T11:42:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21334248", + "blockNumber": 21334248, + "timestamp": "2024-12-05T05:36:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1724,9 +1724,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21294990", - "blockNumber": 21294990, - "timestamp": "2024-11-29T17:59:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21379098", + "blockNumber": 21379098, + "timestamp": "2024-12-11T11:55:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1735,9 +1735,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21307000", - "blockNumber": 21307000, - "timestamp": "2024-12-01T10:15:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21391185", + "blockNumber": 21391185, + "timestamp": "2024-12-13T04:25:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1746,9 +1746,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21310725", - "blockNumber": 21310725, - "timestamp": "2024-12-01T22:43:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21394910", + "blockNumber": 21394910, + "timestamp": "2024-12-13T16:53:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1757,9 +1757,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21314450", - "blockNumber": 21314450, - "timestamp": "2024-12-02T11:12:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21398635", + "blockNumber": 21398635, + "timestamp": "2024-12-14T05:22:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1768,9 +1768,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21318175", - "blockNumber": 21318175, - "timestamp": "2024-12-02T23:43:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21402360", + "blockNumber": 21402360, + "timestamp": "2024-12-14T17:51:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1779,9 +1779,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21321900", - "blockNumber": 21321900, - "timestamp": "2024-12-03T12:12:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21406085", + "blockNumber": 21406085, + "timestamp": "2024-12-15T06:19:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1790,9 +1790,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21325625", - "blockNumber": 21325625, - "timestamp": "2024-12-04T00:42:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21409810", + "blockNumber": 21409810, + "timestamp": "2024-12-15T18:49:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1801,9 +1801,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21329350", - "blockNumber": 21329350, - "timestamp": "2024-12-04T13:11:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21413535", + "blockNumber": 21413535, + "timestamp": "2024-12-16T07:18:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1812,9 +1812,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21333075", - "blockNumber": 21333075, - "timestamp": "2024-12-05T01:40:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21417260", + "blockNumber": 21417260, + "timestamp": "2024-12-16T19:45:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1823,9 +1823,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21336800", - "blockNumber": 21336800, - "timestamp": "2024-12-05T14:09:47.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21420985", + "blockNumber": 21420985, + "timestamp": "2024-12-17T08:12:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1834,9 +1834,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21340525", - "blockNumber": 21340525, - "timestamp": "2024-12-06T02:38:47.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21424710", + "blockNumber": 21424710, + "timestamp": "2024-12-17T20:41:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1845,9 +1845,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21344250", - "blockNumber": 21344250, - "timestamp": "2024-12-06T15:08:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21428435", + "blockNumber": 21428435, + "timestamp": "2024-12-18T09:10:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1856,9 +1856,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21347520", - "blockNumber": 21347520, - "timestamp": "2024-12-07T02:05:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21431658", + "blockNumber": 21431658, + "timestamp": "2024-12-18T19:59:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1867,9 +1867,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21349370", - "blockNumber": 21349370, - "timestamp": "2024-12-07T08:17:35.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21433508", + "blockNumber": 21433508, + "timestamp": "2024-12-19T02:12:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1878,9 +1878,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21351225", - "blockNumber": 21351225, - "timestamp": "2024-12-07T14:31:23.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21435358", + "blockNumber": 21435358, + "timestamp": "2024-12-19T08:24:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1889,9 +1889,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21353100", - "blockNumber": 21353100, - "timestamp": "2024-12-07T20:49:23.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21437208", + "blockNumber": 21437208, + "timestamp": "2024-12-19T14:37:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1900,9 +1900,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354212", - "blockNumber": 21354212, - "timestamp": "2024-12-08T00:32:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438368", + "blockNumber": 21438368, + "timestamp": "2024-12-19T18:30:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1911,9 +1911,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354312", - "blockNumber": 21354312, - "timestamp": "2024-12-08T00:52:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438468", + "blockNumber": 21438468, + "timestamp": "2024-12-19T18:50:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1922,9 +1922,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354412", - "blockNumber": 21354412, - "timestamp": "2024-12-08T01:13:23.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438568", + "blockNumber": 21438568, + "timestamp": "2024-12-19T19:10:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1933,9 +1933,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354512", - "blockNumber": 21354512, - "timestamp": "2024-12-08T01:33:23.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438668", + "blockNumber": 21438668, + "timestamp": "2024-12-19T19:30:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1944,9 +1944,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354615", - "blockNumber": 21354615, - "timestamp": "2024-12-08T01:53:59.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438768", + "blockNumber": 21438768, + "timestamp": "2024-12-19T19:50:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1955,9 +1955,9 @@ "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319" }, { - "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354740", - "blockNumber": 21354740, - "timestamp": "2024-12-08T02:19:11.000000Z", + "id": "1:0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438868", + "blockNumber": 21438868, + "timestamp": "2024-12-19T20:10:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -1985,26 +1985,26 @@ "timestamp": "2023-06-23T23:59:59.999000Z", "blockNumber": 17545688, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0.20892569612080863, - "apy": 0.23227981929980834, + "apr": 0, + "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "103347795702011188553", + "balance": "103339041225979799105", "balanceWeight": 1, - "earnings": "67771634526482562", - "earningsChange": "59115702011188553" + "earnings": "59017158495093114", + "earningsChange": "0" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2023-07-18", "timestamp": "2023-07-18T23:59:59.999000Z", "blockNumber": 17723537, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0.08779440114535308, - "apy": 0.09175211578225806, + "apr": 0, + "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "103517711721950544188", + "balance": "103484104467281905969", "balanceWeight": 1, - "earnings": "237687654465838197", - "earningsChange": "24882342254797552" + "earnings": "204080399797199978", + "earningsChange": "0" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2023-08-12", @@ -2050,13 +2050,13 @@ "timestamp": "2023-10-26T23:59:59.999000Z", "blockNumber": 18437825, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0, - "apy": 0, + "apr": 0.05575373839096265, + "apy": 0.05733277130069969, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "100000000000000000000", + "balance": "100015266872071983840", "balanceWeight": 1, - "earnings": "320063811847128408", - "earningsChange": "0" + "earnings": "335330683919112248", + "earningsChange": "15266872071983840" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2023-11-20", @@ -2066,9 +2066,9 @@ "apr": 0, "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "100181962192594323429", + "balance": "100161484990650618152", "balanceWeight": 1, - "earnings": "502026004441451837", + "earnings": "481548802497746560", "earningsChange": "0" }, { @@ -2076,78 +2076,78 @@ "timestamp": "2023-12-15T23:59:59.999000Z", "blockNumber": 18794937, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0.023083531878545116, - "apy": 0.02335127206047427, + "apr": 0, + "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "40259295193264863552", + "balance": "40257910984792418820", "balanceWeight": 1, - "earnings": "579357998646526928", - "earningsChange": "2544357902806105" + "earnings": "577973790174082196", + "earningsChange": "0" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-01-09", "timestamp": "2024-01-09T23:59:59.999000Z", "blockNumber": 18972837, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0.009469419115605837, - "apy": 0.009514272003614987, + "apr": 0.009551002356339544, + "apy": 0.0095966326646022, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "3840814331237285148863", + "balance": "3840818422411214895280", "balanceWeight": 1, - "earnings": "1134393695479652379", - "earningsChange": "99576401499643891" + "earnings": "1138484869409398796", + "earningsChange": "100434403292843523" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-02-03", "timestamp": "2024-02-03T23:59:59.999000Z", "blockNumber": 19151255, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0.01872800927201801, - "apy": 0.018903989159971157, + "apr": 0.018932485217228456, + "apy": 0.019112341075525396, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "885943096775000675269", + "balance": "885906919147339848904", "balanceWeight": 1, - "earnings": "4185132150835102789", - "earningsChange": "45426284820937825" + "earnings": "4148954523174276424", + "earningsChange": "45920382342487928" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-02-28", "timestamp": "2024-02-28T23:59:59.999000Z", "blockNumber": 19329464, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0.01837365281867681, - "apy": 0.018543016249994437, + "apr": 0.018546315231838695, + "apy": 0.018718886639146115, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "887062718184395492517", + "balance": "887074938162803048177", "balanceWeight": 1, - "earnings": "5304753560229920037", - "earningsChange": "44623086686845468" + "earnings": "5316973538637475697", + "earningsChange": "45043042949938570" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-03-24", "timestamp": "2024-03-24T23:59:59.999000Z", "blockNumber": 19507815, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0.010796835077748868, - "apy": 0.010855169929536057, + "apr": 0.010365262370487793, + "apy": 0.010419019184344958, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "3559698755585859866199", + "balance": "3559682276271374114397", "balanceWeight": 1, - "earnings": "6651475255474846113", - "earningsChange": "105225134539188233" + "earnings": "6634995940989094311", + "earningsChange": "101018592058067984" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-04-18", "timestamp": "2024-04-18T23:59:59.999000Z", "blockNumber": 19685777, "strategy": "0xc1fc9e5ec3058921ea5025d703cbe31764756319", - "apr": 0.0026524040408479332, - "apy": 0.002655915120302055, + "apr": 0.002699188106363215, + "apy": 0.002702824193961728, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "11011282151678679109534", + "balance": "11011262529550511865127", "balanceWeight": 1, - "earnings": "8234859026866967270", - "earningsChange": "79962681106062681" + "earnings": "8215236898699722863", + "earningsChange": "81372946902485920" }, { "id": "0xc1fc9e5ec3058921ea5025d703cbe31764756319:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-05-13", @@ -2269,9 +2269,9 @@ ], "strategyBalances_oeth_0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc": [ { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:18242172", - "blockNumber": 18242172, - "timestamp": "2023-09-29T15:09:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:18183984", + "blockNumber": 18183984, + "timestamp": "2023-09-21T11:34:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2280,97 +2280,97 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:18843535", - "blockNumber": 18843535, - "timestamp": "2023-12-22T19:42:35.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:18908760", + "blockNumber": 18908760, + "timestamp": "2023-12-31T23:33:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "3508563607334623830706", - "balanceETH": "3209158143691715689799", + "balance": "3465425971040751668030", + "balanceETH": "3167330024691469113089", "chainId": 1, "symbol": "rETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19023741", - "blockNumber": 19023741, - "timestamp": "2024-01-17T02:51:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19088160", + "blockNumber": 19088160, + "timestamp": "2024-01-26T03:39:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "3927072645683241172851", - "balanceETH": "3584530225157953373142", + "balance": "3905177357415318849713", + "balanceETH": "3561915008023091941349", "chainId": 1, "symbol": "rETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19200138", - "blockNumber": 19200138, - "timestamp": "2024-02-10T20:41:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19267560", + "blockNumber": 19267560, + "timestamp": "2024-02-20T07:53:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "3871325313239643447519", - "balanceETH": "3526210976281356929561", + "balance": "3886144672417073859805", + "balanceETH": "3536966559720229183488", "chainId": 1, "symbol": "rETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19380000", - "blockNumber": 19380000, - "timestamp": "2024-03-07T01:25:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19446960", + "blockNumber": 19446960, + "timestamp": "2024-03-16T10:47:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "3835905275464132805644", - "balanceETH": "3486799209835230128854", + "balance": "4254882992950632853989", + "balanceETH": "3864431020763200378486", "chainId": 1, "symbol": "rETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19562504", - "blockNumber": 19562504, - "timestamp": "2024-04-01T17:35:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19626360", + "blockNumber": 19626360, + "timestamp": "2024-04-10T16:16:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "3326417550976846933069", - "balanceETH": "3017467123949612999779", + "balance": "2119165902924378554343", + "balanceETH": "1920974225730809316973", "chainId": 1, "symbol": "rETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19739335", - "blockNumber": 19739335, - "timestamp": "2024-04-26T11:48:47.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19805760", + "blockNumber": 19805760, + "timestamp": "2024-05-05T18:44:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "2109252910427539650708", - "balanceETH": "1909575843409522600627", + "balance": "2126215376854948829333", + "balanceETH": "1923612970822773251566", "chainId": 1, "symbol": "rETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19917114", - "blockNumber": 19917114, - "timestamp": "2024-05-21T08:32:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:19985160", + "blockNumber": 19985160, + "timestamp": "2024-05-30T20:53:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "2150432630487796787009", - "balanceETH": "1943407100813850623405", + "balance": "2114521984832558126060", + "balanceETH": "1909436569536476393997", "chainId": 1, "symbol": "rETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20092777", - "blockNumber": 20092777, - "timestamp": "2024-06-14T21:37:11.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20164560", + "blockNumber": 20164560, + "timestamp": "2024-06-24T22:35:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "2055061355542407740060", - "balanceETH": "1853516866535029656306", + "balance": "0", + "balanceETH": "0", "chainId": 1, "symbol": "rETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20271602", - "blockNumber": 20271602, - "timestamp": "2024-07-09T21:24:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20343960", + "blockNumber": 20343960, + "timestamp": "2024-07-19T23:47:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2379,9 +2379,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20446056", - "blockNumber": 20446056, - "timestamp": "2024-08-03T05:54:47.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20523360", + "blockNumber": 20523360, + "timestamp": "2024-08-14T00:42:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2390,9 +2390,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20627960", - "blockNumber": 20627960, - "timestamp": "2024-08-28T15:23:35.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20702760", + "blockNumber": 20702760, + "timestamp": "2024-09-08T01:59:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2401,9 +2401,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20808306", - "blockNumber": 20808306, - "timestamp": "2024-09-22T19:47:47.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20882160", + "blockNumber": 20882160, + "timestamp": "2024-10-03T03:00:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2412,9 +2412,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:20986590", - "blockNumber": 20986590, - "timestamp": "2024-10-17T16:50:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21061560", + "blockNumber": 21061560, + "timestamp": "2024-10-28T03:50:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2423,9 +2423,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21146337", - "blockNumber": 21146337, - "timestamp": "2024-11-08T23:53:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21228402", + "blockNumber": 21228402, + "timestamp": "2024-11-20T10:37:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2434,9 +2434,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21191112", - "blockNumber": 21191112, - "timestamp": "2024-11-15T05:49:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21273252", + "blockNumber": 21273252, + "timestamp": "2024-11-26T16:55:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2445,9 +2445,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21235887", - "blockNumber": 21235887, - "timestamp": "2024-11-21T11:44:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21318102", + "blockNumber": 21318102, + "timestamp": "2024-12-02T23:28:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2456,9 +2456,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21280662", - "blockNumber": 21280662, - "timestamp": "2024-11-27T17:45:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21362952", + "blockNumber": 21362952, + "timestamp": "2024-12-09T05:48:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2467,9 +2467,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21305808", - "blockNumber": 21305808, - "timestamp": "2024-12-01T06:16:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21389844", + "blockNumber": 21389844, + "timestamp": "2024-12-12T23:55:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2478,9 +2478,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21309533", - "blockNumber": 21309533, - "timestamp": "2024-12-01T18:44:35.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21393569", + "blockNumber": 21393569, + "timestamp": "2024-12-13T12:24:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2489,9 +2489,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21313258", - "blockNumber": 21313258, - "timestamp": "2024-12-02T07:12:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21397294", + "blockNumber": 21397294, + "timestamp": "2024-12-14T00:53:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2500,9 +2500,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21316983", - "blockNumber": 21316983, - "timestamp": "2024-12-02T19:42:35.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21401019", + "blockNumber": 21401019, + "timestamp": "2024-12-14T13:21:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2511,9 +2511,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21320708", - "blockNumber": 21320708, - "timestamp": "2024-12-03T08:13:11.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21404744", + "blockNumber": 21404744, + "timestamp": "2024-12-15T01:49:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2522,9 +2522,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21324433", - "blockNumber": 21324433, - "timestamp": "2024-12-03T20:42:11.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21408469", + "blockNumber": 21408469, + "timestamp": "2024-12-15T14:18:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2533,9 +2533,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21328158", - "blockNumber": 21328158, - "timestamp": "2024-12-04T09:11:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21412194", + "blockNumber": 21412194, + "timestamp": "2024-12-16T02:48:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2544,9 +2544,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21331883", - "blockNumber": 21331883, - "timestamp": "2024-12-04T21:40:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21415919", + "blockNumber": 21415919, + "timestamp": "2024-12-16T15:16:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2555,9 +2555,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21335608", - "blockNumber": 21335608, - "timestamp": "2024-12-05T10:10:11.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21419644", + "blockNumber": 21419644, + "timestamp": "2024-12-17T03:44:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2566,9 +2566,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21339333", - "blockNumber": 21339333, - "timestamp": "2024-12-05T22:39:47.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21423369", + "blockNumber": 21423369, + "timestamp": "2024-12-17T16:11:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2577,9 +2577,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21343058", - "blockNumber": 21343058, - "timestamp": "2024-12-06T11:08:35.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21427094", + "blockNumber": 21427094, + "timestamp": "2024-12-18T04:40:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2588,9 +2588,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21346783", - "blockNumber": 21346783, - "timestamp": "2024-12-06T23:37:47.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21430819", + "blockNumber": 21430819, + "timestamp": "2024-12-18T17:10:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2599,9 +2599,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21348778", - "blockNumber": 21348778, - "timestamp": "2024-12-07T06:18:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21432842", + "blockNumber": 21432842, + "timestamp": "2024-12-18T23:57:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2610,9 +2610,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21350625", - "blockNumber": 21350625, - "timestamp": "2024-12-07T12:30:23.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21434692", + "blockNumber": 21434692, + "timestamp": "2024-12-19T06:10:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2621,9 +2621,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21352500", - "blockNumber": 21352500, - "timestamp": "2024-12-07T18:48:11.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21436542", + "blockNumber": 21436542, + "timestamp": "2024-12-19T12:23:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2632,9 +2632,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21354100", - "blockNumber": 21354100, - "timestamp": "2024-12-08T00:10:35.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21438216", + "blockNumber": 21438216, + "timestamp": "2024-12-19T18:00:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2643,9 +2643,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21354280", - "blockNumber": 21354280, - "timestamp": "2024-12-08T00:46:35.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21438432", + "blockNumber": 21438432, + "timestamp": "2024-12-19T18:43:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2654,9 +2654,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21354380", - "blockNumber": 21354380, - "timestamp": "2024-12-08T01:06:35.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21438532", + "blockNumber": 21438532, + "timestamp": "2024-12-19T19:03:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2665,9 +2665,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21354480", - "blockNumber": 21354480, - "timestamp": "2024-12-08T01:26:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21438632", + "blockNumber": 21438632, + "timestamp": "2024-12-19T19:23:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2676,9 +2676,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21354580", - "blockNumber": 21354580, - "timestamp": "2024-12-08T01:46:59.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21438732", + "blockNumber": 21438732, + "timestamp": "2024-12-19T19:43:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2687,9 +2687,9 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21354700", - "blockNumber": 21354700, - "timestamp": "2024-12-08T02:11:11.000000Z", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21438832", + "blockNumber": 21438832, + "timestamp": "2024-12-19T20:03:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "0", "balanceETH": "0", @@ -2698,14 +2698,14 @@ "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" }, { - "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xae78736cd615f374d3085123a210448e74fc6393:21354825", - "blockNumber": 21354825, - "timestamp": "2024-12-08T02:36:11.000000Z", - "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "0", - "balanceETH": "0", + "id": "1:0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:18284448", + "blockNumber": 18284448, + "timestamp": "2023-10-05T12:55:59.000000Z", + "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "balance": "54384718430008130335", + "balanceETH": "54384718430008130335", "chainId": 1, - "symbol": "rETH", + "symbol": "WETH", "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc" } ], @@ -2728,13 +2728,13 @@ "timestamp": "2023-10-12T23:59:59.999000Z", "blockNumber": 18337768, "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc", - "apr": 0, - "apy": 0, + "apr": 0.04919209909988942, + "apy": 0.05041863718088058, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "106063732263177158760", + "balance": "106068728519128144905", "balanceWeight": 1, - "earnings": "18254864179714079", - "earningsChange": "0" + "earnings": "23251120130700224", + "earningsChange": "14285402887641131" }, { "id": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2023-11-06", @@ -2744,9 +2744,9 @@ "apr": 0, "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "8431329016998652749707", + "balance": "8430673930786352624229", "balanceWeight": 1, - "earnings": "4633796269684520656", + "earnings": "4097125026795680368", "earningsChange": "0" }, { @@ -2757,9 +2757,9 @@ "apr": 0, "apy": 0, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "8436474125789536152286", + "balance": "8437449575825489933474", "balanceWeight": 1, - "earnings": "9778905060567923235", + "earnings": "10872770065932989613", "earningsChange": "0" }, { @@ -2767,13 +2767,13 @@ "timestamp": "2023-12-26T23:59:59.999000Z", "blockNumber": 18873298, "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc", - "apr": 0.0059417619770408825, - "apy": 0.005959400641827539, + "apr": 0.006954435964712458, + "apy": 0.006978607541560544, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "8445184023630519412489", + "balance": "8445208111231923038490", "balanceWeight": 1, - "earnings": "38161200311573989674", - "earningsChange": "137383362958130059" + "earnings": "38303702882388900865", + "earningsChange": "160798518872354676" }, { "id": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-01-20", @@ -2785,7 +2785,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "8669516064354643797914", "balanceWeight": 1, - "earnings": "67139398717220747986", + "earnings": "67257813686632033176", "earningsChange": "789100966875089946" }, { @@ -2793,78 +2793,78 @@ "timestamp": "2024-02-14T23:59:59.999000Z", "blockNumber": 19229624, "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc", - "apr": 0.05918716695627313, - "apy": 0.0609687140449966, + "apr": 0.04203565159183842, + "apy": 0.0429291377259462, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "8676363515155302948648", + "balance": "8676090855283435657746", "balanceWeight": 1, - "earnings": "96896549963220078185", - "earningsChange": "1405966806144830878" + "earnings": "96742305060764072473", + "earningsChange": "998508233735699039" }, { "id": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-03-10", "timestamp": "2024-03-10T23:59:59.999000Z", "blockNumber": 19408133, "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc", - "apr": 0.06491029032596901, - "apy": 0.06705714037605603, + "apr": 0.050313851918945995, + "apy": 0.05159744771863717, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "8683547331021797588100", + "balance": "8683526716861643874717", "balanceWeight": 1, - "earnings": "128805116141871285896", - "earningsChange": "1543193917361146327" + "earnings": "128902916951128857703", + "earningsChange": "1196178371387702539" }, { "id": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-04-04", "timestamp": "2024-04-04T23:59:59.999000Z", "blockNumber": 19585828, "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc", - "apr": 0.08319856799952396, - "apy": 0.08674728622295169, + "apr": 0.08280287829382432, + "apy": 0.08631745423131743, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "4724911311722635792605", + "balance": "4724902870482320721787", "balanceWeight": 1, - "earnings": "158784023536141163122", - "earningsChange": "1076265174703052571" + "earnings": "158964998244287284865", + "earningsChange": "1071144578602295973" }, { "id": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-04-29", "timestamp": "2024-04-29T23:59:59.999000Z", "blockNumber": 19764400, "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc", - "apr": 0.06864247889375114, - "apy": 0.07104630905690223, + "apr": 0.06849201697482188, + "apy": 0.07088519973924368, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "4728287521403219215578", "balanceWeight": 1, - "earnings": "174704639950115237674", - "earningsChange": "888600619826023815" + "earnings": "174894055898576430235", + "earningsChange": "886652838268282422" }, { "id": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-05-24", "timestamp": "2024-05-24T23:59:59.999000Z", "blockNumber": 19943176, "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc", - "apr": 0.03502145740479412, - "apy": 0.03564019202909385, + "apr": 0.04124243527002519, + "apy": 0.042102291550391246, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "4730919175715709546866", + "balance": "4730999797800068422129", "balanceWeight": 1, - "earnings": "189568037755244739942", - "earningsChange": "453617205743419124" + "earnings": "189838075788064807766", + "earningsChange": "534203840993949697" }, { "id": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-06-18", "timestamp": "2024-06-18T23:59:59.999000Z", "blockNumber": 20122076, "strategy": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc", - "apr": 0.046589560038569344, - "apy": 0.047688793381551964, + "apr": 0.046265098971415064, + "apy": 0.04734895748925916, "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", - "balance": "4733285581554618526734", + "balance": "4733289982650765705657", "balanceWeight": 1, - "earnings": "206804512017585110856", - "earningsChange": "603755490161226667" + "earnings": "206994124919075933397", + "earningsChange": "599551347043677724" }, { "id": "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee:2024-07-13", @@ -2876,7 +2876,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "0", "balanceWeight": 1, - "earnings": "208386865887967352271", + "earnings": "208576281836428544832", "earningsChange": "0" }, { @@ -2889,7 +2889,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "0", "balanceWeight": 1, - "earnings": "208386865887967352271", + "earnings": "208576281836428544832", "earningsChange": "0" }, { @@ -2902,7 +2902,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "0", "balanceWeight": 1, - "earnings": "208386865887967352271", + "earnings": "208576281836428544832", "earningsChange": "0" }, { @@ -2915,7 +2915,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "0", "balanceWeight": 1, - "earnings": "208386865887967352271", + "earnings": "208576281836428544832", "earningsChange": "0" }, { @@ -2928,7 +2928,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "0", "balanceWeight": 1, - "earnings": "208386865887967352271", + "earnings": "208576281836428544832", "earningsChange": "0" }, { @@ -2941,7 +2941,7 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "0", "balanceWeight": 1, - "earnings": "208386865887967352271", + "earnings": "208576281836428544832", "earningsChange": "0" }, { @@ -2954,447 +2954,447 @@ "asset": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", "balance": "0", "balanceWeight": 1, - "earnings": "208386865887967352271", + "earnings": "208576281836428544832", "earningsChange": "0" } ], "strategyBalances_oeth_0x39254033945aa2e4809cc2977e7087bee48bd7ab": [ { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:17184650", - "blockNumber": 17184650, - "timestamp": "2023-05-04T03:31:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:17179344", + "blockNumber": 17179344, + "timestamp": "2023-05-03T09:35:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "113832479816813481156", - "balanceETH": "106509266928800021836", + "balanceETH": "106521154927698944031", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:18413248", - "blockNumber": 18413248, - "timestamp": "2023-10-23T13:24:47.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:18435144", + "blockNumber": 18435144, + "timestamp": "2023-10-26T15:00:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "386489633666453539974", - "balanceETH": "355506486856948202702", + "balanceETH": "355405645175398614899", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:18872075", - "blockNumber": 18872075, - "timestamp": "2023-12-26T19:54:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:18944640", + "blockNumber": 18944640, + "timestamp": "2024-01-06T00:32:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "301601633550045722873", - "balanceETH": "275772677810945730633", + "balance": "97218711146795087477", + "balanceETH": "88819918320012831230", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19052209", - "blockNumber": 19052209, - "timestamp": "2024-01-21T02:19:23.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19124040", + "blockNumber": 19124040, + "timestamp": "2024-01-31T04:18:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "96997331841935900801", - "balanceETH": "88504486901279912896", + "balance": "93677220694184297496", + "balanceETH": "85396184942528859768", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19228646", - "blockNumber": 19228646, - "timestamp": "2024-02-14T20:41:59.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19303440", + "blockNumber": 19303440, + "timestamp": "2024-02-25T08:35:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "516185695346360735583", - "balanceETH": "470023727231856617256", + "balanceETH": "469620435892899693483", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19412250", - "blockNumber": 19412250, - "timestamp": "2024-03-11T13:47:23.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19482840", + "blockNumber": 19482840, + "timestamp": "2024-03-21T11:47:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "516185695346360735583", - "balanceETH": "469010889462429692552", + "balance": "49142275346360735583", + "balanceETH": "44615850650660705415", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19591000", - "blockNumber": 19591000, - "timestamp": "2024-04-05T17:23:59.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19662240", + "blockNumber": 19662240, + "timestamp": "2024-04-15T16:56:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "49142275346360702815", - "balanceETH": "44563444651049044866", + "balance": "49142241503468303223", + "balanceETH": "44524989581264194930", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19767891", - "blockNumber": 19767891, - "timestamp": "2024-04-30T11:41:23.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19841640", + "blockNumber": 19841640, + "timestamp": "2024-05-10T19:11:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "49142207665693480806", - "balanceETH": "44477200152951453821", + "balance": "5990", + "balanceETH": "5417", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:19945710", - "blockNumber": 19945710, - "timestamp": "2024-05-25T08:30:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20021040", + "blockNumber": 20021040, + "timestamp": "2024-06-04T21:07:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "5990", - "balanceETH": "5411", + "balanceETH": "5407", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20121138", - "blockNumber": 20121138, - "timestamp": "2024-06-18T20:50:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20200440", + "blockNumber": 20200440, + "timestamp": "2024-06-29T22:51:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "5990", - "balanceETH": "5401", + "balance": "2038580675615109128563", + "balanceETH": "1836742041743095284648", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20298600", - "blockNumber": 20298600, - "timestamp": "2024-07-13T15:53:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20379840", + "blockNumber": 20379840, + "timestamp": "2024-07-25T00:00:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "2038580675615109128563", - "balanceETH": "1834876067948742392504", + "balance": "100114803", + "balanceETH": "90038164", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20474712", - "blockNumber": 20474712, - "timestamp": "2024-08-07T05:50:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20559240", + "blockNumber": 20559240, + "timestamp": "2024-08-19T00:56:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89941520", + "balanceETH": "89866880", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20656600", - "blockNumber": 20656600, - "timestamp": "2024-09-01T15:25:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20738640", + "blockNumber": 20738640, + "timestamp": "2024-09-13T02:15:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89788550", + "balanceETH": "89722077", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20836938", - "blockNumber": 20836938, - "timestamp": "2024-09-26T19:39:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:20918040", + "blockNumber": 20918040, + "timestamp": "2024-10-08T03:02:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89636160", + "balanceETH": "89568150", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21013308", - "blockNumber": 21013308, - "timestamp": "2024-10-21T10:18:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21097440", + "blockNumber": 21097440, + "timestamp": "2024-11-02T04:01:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89479626", + "balanceETH": "89412097", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21153501", - "blockNumber": 21153501, - "timestamp": "2024-11-09T23:51:59.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21237372", + "blockNumber": 21237372, + "timestamp": "2024-11-21T16:43:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89354413", + "balanceETH": "89269865", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21198276", - "blockNumber": 21198276, - "timestamp": "2024-11-16T05:50:47.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21282222", + "blockNumber": 21282222, + "timestamp": "2024-11-27T22:59:47.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89311439", + "balanceETH": "89227422", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21243051", - "blockNumber": 21243051, - "timestamp": "2024-11-22T11:43:59.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21327072", + "blockNumber": 21327072, + "timestamp": "2024-12-04T05:33:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89262601", + "balanceETH": "89188263", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21287826", - "blockNumber": 21287826, - "timestamp": "2024-11-28T17:55:47.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21371922", + "blockNumber": 21371922, + "timestamp": "2024-12-10T11:51:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89220872", + "balanceETH": "89140179", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21306404", - "blockNumber": 21306404, - "timestamp": "2024-12-01T08:15:59.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21390589", + "blockNumber": 21390589, + "timestamp": "2024-12-13T02:25:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89201848", + "balanceETH": "89126660", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21310129", - "blockNumber": 21310129, - "timestamp": "2024-12-01T20:44:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21394314", + "blockNumber": 21394314, + "timestamp": "2024-12-13T14:53:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89201848", + "balanceETH": "89120344", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21313854", - "blockNumber": 21313854, - "timestamp": "2024-12-02T09:12:47.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21398039", + "blockNumber": 21398039, + "timestamp": "2024-12-14T03:22:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89194984", + "balanceETH": "89120344", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21317579", - "blockNumber": 21317579, - "timestamp": "2024-12-02T21:42:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21401764", + "blockNumber": 21401764, + "timestamp": "2024-12-14T15:51:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89194984", + "balanceETH": "89113694", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21321304", - "blockNumber": 21321304, - "timestamp": "2024-12-03T10:12:59.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21405489", + "blockNumber": 21405489, + "timestamp": "2024-12-15T04:19:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89188263", + "balanceETH": "89113694", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21325029", - "blockNumber": 21325029, - "timestamp": "2024-12-03T22:42:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21409214", + "blockNumber": 21409214, + "timestamp": "2024-12-15T16:49:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89188263", + "balanceETH": "89107188", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21328754", - "blockNumber": 21328754, - "timestamp": "2024-12-04T11:11:47.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21412939", + "blockNumber": 21412939, + "timestamp": "2024-12-16T05:17:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89181079", + "balanceETH": "89107188", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21332479", - "blockNumber": 21332479, - "timestamp": "2024-12-04T23:40:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21416664", + "blockNumber": 21416664, + "timestamp": "2024-12-16T17:46:11.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89181079", + "balanceETH": "89100828", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21336204", - "blockNumber": 21336204, - "timestamp": "2024-12-05T12:09:59.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21420389", + "blockNumber": 21420389, + "timestamp": "2024-12-17T06:13:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89174536", + "balanceETH": "89094081", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21339929", - "blockNumber": 21339929, - "timestamp": "2024-12-06T00:39:23.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21424114", + "blockNumber": 21424114, + "timestamp": "2024-12-17T18:41:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89174536", + "balanceETH": "89094081", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21343654", - "blockNumber": 21343654, - "timestamp": "2024-12-06T13:08:47.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21427839", + "blockNumber": 21427839, + "timestamp": "2024-12-18T07:10:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89167935", + "balanceETH": "89087566", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21347224", - "blockNumber": 21347224, - "timestamp": "2024-12-07T01:06:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21431362", + "blockNumber": 21431362, + "timestamp": "2024-12-18T19:00:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89167935", + "balanceETH": "89087566", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21349074", - "blockNumber": 21349074, - "timestamp": "2024-12-07T07:17:59.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21433212", + "blockNumber": 21433212, + "timestamp": "2024-12-19T01:12:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89087566", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21350925", - "blockNumber": 21350925, - "timestamp": "2024-12-07T13:30:47.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21435062", + "blockNumber": 21435062, + "timestamp": "2024-12-19T07:25:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89080667", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21352800", - "blockNumber": 21352800, - "timestamp": "2024-12-07T19:48:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21436912", + "blockNumber": 21436912, + "timestamp": "2024-12-19T13:37:59.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89080667", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21354190", - "blockNumber": 21354190, - "timestamp": "2024-12-08T00:28:35.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21438336", + "blockNumber": 21438336, + "timestamp": "2024-12-19T18:24:23.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89080667", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21354296", - "blockNumber": 21354296, - "timestamp": "2024-12-08T00:49:47.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21438452", + "blockNumber": 21438452, + "timestamp": "2024-12-19T18:47:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89080667", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21354396", - "blockNumber": 21354396, - "timestamp": "2024-12-08T01:10:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21438552", + "blockNumber": 21438552, + "timestamp": "2024-12-19T19:07:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89080667", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21354496", - "blockNumber": 21354496, - "timestamp": "2024-12-08T01:30:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21438652", + "blockNumber": 21438652, + "timestamp": "2024-12-19T19:27:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89080667", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21354596", - "blockNumber": 21354596, - "timestamp": "2024-12-08T01:50:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21438752", + "blockNumber": 21438752, + "timestamp": "2024-12-19T19:47:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89080667", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" }, { - "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21354720", - "blockNumber": 21354720, - "timestamp": "2024-12-08T02:15:11.000000Z", + "id": "1:0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:21438852", + "blockNumber": 21438852, + "timestamp": "2024-12-19T20:07:35.000000Z", "asset": "0xae78736cd615f374d3085123a210448e74fc6393", "balance": "100114803", - "balanceETH": "89161668", + "balanceETH": "89080667", "chainId": 1, "symbol": "rETH", "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab" @@ -3422,9 +3422,9 @@ "apr": 0, "apy": 0, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "122973319746606187200", + "balance": "122933371046370190257", "balanceWeight": 1, - "earnings": "340549580230611640", + "earnings": "300600879994614697", "earningsChange": "0" }, { @@ -3435,9 +3435,9 @@ "apr": 0, "apy": 0, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "2743050747749134515972", + "balance": "2743410994369034304419", "balanceWeight": 1, - "earnings": "2441448961809998898", + "earnings": "2801695581709787345", "earningsChange": "0" }, { @@ -3471,13 +3471,13 @@ "timestamp": "2023-08-31T23:59:59.999000Z", "blockNumber": 18037987, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0, - "apy": 0, + "apr": 0.2161812815754095, + "apy": 0.24124800729507245, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "4202451052763486100443", + "balance": "4203715831958116871521", "balanceWeight": 1, - "earnings": "27340871975846270581", - "earningsChange": "0" + "earnings": "28605651170477041659", + "earningsChange": "2488062083317107482" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2023-09-25", @@ -3487,9 +3487,9 @@ "apr": 0, "apy": 0, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "4210163659792841062187", + "balance": "4212005995793126956753", "balanceWeight": 1, - "earnings": "35053479005201232325", + "earnings": "36895815005487126891", "earningsChange": "0" }, { @@ -3513,9 +3513,9 @@ "apr": 0, "apy": 0, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "420892581823818412195", + "balance": "420794054746253656712", "balanceWeight": 1, - "earnings": "47414578507155352487", + "earnings": "47316051429590597004", "earningsChange": "0" }, { @@ -3523,52 +3523,52 @@ "timestamp": "2023-12-09T23:59:59.999000Z", "blockNumber": 18752097, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.028466717613394643, - "apy": 0.028874625537075538, + "apr": 0, + "apy": 0, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "386883299616142101828", + "balance": "386817522784515351701", "balanceWeight": 1, - "earnings": "48464246067392656892", - "earningsChange": "30152765611263198" + "earnings": "48398469235765906765", + "earningsChange": "0" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-01-03", "timestamp": "2024-01-03T23:59:59.999000Z", "blockNumber": 18930252, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.048282136237137896, - "apy": 0.04946335739888985, + "apr": 0.02341099580961825, + "apy": 0.023686416230609186, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "325257957046292229886", + "balance": "106397023377809300784", "balanceWeight": 1, "earnings": "49247932294252440146", - "earningsChange": "42998309260212784" + "earningsChange": "20847673290774498" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-01-28", "timestamp": "2024-01-28T23:59:59.999000Z", "blockNumber": 19108471, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.02156319294302783, - "apy": 0.021796708320040548, + "apr": 0.02261081149304517, + "apy": 0.022867657619973114, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "102734853484226446312", + "balance": "102728788346738011878", "balanceWeight": 1, - "earnings": "49467164701314018880", - "earningsChange": "6065137488434434" + "earnings": "49461099563825584446", + "earningsChange": "6359428523529586" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-02-22", "timestamp": "2024-02-22T23:59:59.999000Z", "blockNumber": 19286582, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.0482416045778597, - "apy": 0.04942082738922626, + "apr": 0.023858825925568428, + "apy": 0.024144926827152968, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "567258905513870449029", + "balance": "567221034872170862486", "balanceWeight": 1, - "earnings": "50189116066917502453", - "earningsChange": "74922600446534012" + "earnings": "50151245425217915910", + "earningsChange": "37051958746947469" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-03-18", @@ -3588,13 +3588,13 @@ "timestamp": "2024-04-12T23:59:59.999000Z", "blockNumber": 19642952, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.10438845373964517, - "apy": 0.11001501190404461, + "apr": 0.03987878633846337, + "apy": 0.04068235592309, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "54227866809731854565", + "balance": "54221606977164472973", "balanceWeight": 1, - "earnings": "51333453801073360410", - "earningsChange": "15498324889439766" + "earnings": "51327193968505978818", + "earningsChange": "5920032524486890" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-05-07", @@ -3666,39 +3666,39 @@ "timestamp": "2024-09-09T23:59:59.999000Z", "blockNumber": 20716497, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.0223258919684593, - "apy": 0.022576282088474064, + "apr": 0.023135054056729276, + "apy": 0.02340399536946358, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "111689233", + "balance": "111682406", "balanceWeight": 1, - "earnings": "55319281138999559317", - "earningsChange": "6827" + "earnings": "55319281138999552490", + "earningsChange": "7074" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-10-04", "timestamp": "2024-10-04T23:59:59.999000Z", "blockNumber": 20895606, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.023972268479176828, - "apy": 0.024261107425524342, + "apr": 0.026027436737446785, + "apy": 0.02636815655154945, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "111880557", + "balance": "111873214", "balanceWeight": 1, - "earnings": "55319281138999750641", - "earningsChange": "7343" + "earnings": "55319281138999743298", + "earningsChange": "7972" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-10-29", "timestamp": "2024-10-29T23:59:59.999000Z", "blockNumber": 21074738, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.025896268148296986, - "apy": 0.02623354768488162, + "apr": 0.022492174422378608, + "apy": 0.02274632228653184, "asset": "0xae78736cd615f374d3085123a210448e74fc6393", - "balance": "112073156", + "balance": "112065210", "balanceWeight": 1, - "earnings": "55319281138999943240", - "earningsChange": "7946" + "earnings": "55319281138999935294", + "earningsChange": "6901" }, { "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-11-23", @@ -3714,219 +3714,219 @@ "earningsChange": "9944" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-04-21", - "timestamp": "2023-04-21T23:59:59.999000Z", - "blockNumber": 17098172, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae78736cd615f374d3085123a210448e74fc6393:2024-12-18", + "timestamp": "2024-12-18T23:59:59.999000Z", + "blockNumber": 21432852, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0, - "apy": 0, - "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "249999999999999999", + "apr": 0.026711914107967083, + "apy": 0.027070872064115736, + "asset": "0xae78736cd615f374d3085123a210448e74fc6393", + "balance": "112506988", "balanceWeight": 1, - "earnings": "0", - "earningsChange": "0" + "earnings": "55319281139000377072", + "earningsChange": "8228" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-05-16", - "timestamp": "2023-05-16T23:59:59.999000Z", - "blockNumber": 17275671, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-05-10", + "timestamp": "2023-05-10T23:59:59.999000Z", + "blockNumber": 17233413, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.26341543849369825, - "apy": 0.30124369756150093, + "apr": 0.14109286846943137, + "apy": 0.1515002115749946, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "150337602990571894920", + "balance": "141262834734898419621", "balanceWeight": 1, - "earnings": "425131630019916673", - "earningsChange": "108422301475283193" + "earnings": "264543971589884872", + "earningsChange": "54568592911365556" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-06-10", - "timestamp": "2023-06-10T23:59:59.999000Z", - "blockNumber": 17453185, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-06-04", + "timestamp": "2023-06-04T23:59:59.999000Z", + "blockNumber": 17410645, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.16925460188302366, - "apy": 0.1843752237695373, + "apr": 0, + "apy": 0, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "779754631951871141243", + "balance": "775652534622213548421", "balanceWeight": 1, - "earnings": "2673266450617270508", - "earningsChange": "361333497049838603" + "earnings": "1965254602214373570", + "earningsChange": "0" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-07-05", - "timestamp": "2023-07-05T23:59:59.999000Z", - "blockNumber": 17631107, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-06-29", + "timestamp": "2023-06-29T23:59:59.999000Z", + "blockNumber": 17588385, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0, - "apy": 0, + "apr": 0.04021319121279365, + "apy": 0.04103038520573121, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", "balance": "783504483940011617250", "balanceWeight": 1, "earnings": "4229067924894669267", - "earningsChange": "0" + "earningsChange": "86262055109549368" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-07-30", - "timestamp": "2023-07-30T23:59:59.999000Z", - "blockNumber": 17809274, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-07-24", + "timestamp": "2023-07-24T23:59:59.999000Z", + "blockNumber": 17766398, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", "apr": 0, "apy": 0, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "1429826259836824398581", + "balance": "1351644664254940830528", "balanceWeight": 1, - "earnings": "6781675043997549781", + "earnings": "6336130178384518911", "earningsChange": "0" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-08-24", - "timestamp": "2023-08-24T23:59:59.999000Z", - "blockNumber": 17987994, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-08-18", + "timestamp": "2023-08-18T23:59:59.999000Z", + "blockNumber": 17945108, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", "apr": 0, "apy": 0, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "1434206685106303116327", + "balance": "1433289642887621305280", "balanceWeight": 1, - "earnings": "11037016842096141627", + "earnings": "10219974623414330579", "earningsChange": "0" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-09-18", - "timestamp": "2023-09-18T23:59:59.999000Z", - "blockNumber": 18166254, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-09-12", + "timestamp": "2023-09-12T23:59:59.999000Z", + "blockNumber": 18123677, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", "apr": 0, "apy": 0, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "1445094246146940446808", + "balance": "1436750012185386397255", "balanceWeight": 1, - "earnings": "14734325270495288694", + "earnings": "13406049755171979728", "earningsChange": "0" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-10-13", - "timestamp": "2023-10-13T23:59:59.999000Z", - "blockNumber": 18344906, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-10-07", + "timestamp": "2023-10-07T23:59:59.999000Z", + "blockNumber": 18302048, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", "apr": 0, "apy": 0, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "1453303542087065339676", + "balance": "1451287898904172478651", "balanceWeight": 1, - "earnings": "18254448338021364685", + "earnings": "17592805155128503660", "earningsChange": "0" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-11-07", - "timestamp": "2023-11-07T23:59:59.999000Z", - "blockNumber": 18523522, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-11-01", + "timestamp": "2023-11-01T23:59:59.999000Z", + "blockNumber": 18480693, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", "apr": 0, "apy": 0, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "4647619175159184573459", + "balance": "4643748282082654451835", "balanceWeight": 1, - "earnings": "26410467281107545152", + "earnings": "22539574204577423528", "earningsChange": "0" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-12-02", - "timestamp": "2023-12-02T23:59:59.999000Z", - "blockNumber": 18702158, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-11-26", + "timestamp": "2023-11-26T23:59:59.999000Z", + "blockNumber": 18659274, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.22677832210305182, - "apy": 0.2544634478564538, + "apr": 0, + "apy": 0, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "1542111673142777635661", + "balance": "1540737910162159413060", "balanceWeight": 1, - "earnings": "36846364936789638562", - "earningsChange": "957474326436203907" + "earnings": "35449695739563366908", + "earningsChange": "0" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-12-27", - "timestamp": "2023-12-27T23:59:59.999000Z", - "blockNumber": 18880406, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2023-12-21", + "timestamp": "2023-12-21T23:59:59.999000Z", + "blockNumber": 18837677, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.03493608708774304, - "apy": 0.03555179133683972, + "apr": 0.039615887759853696, + "apy": 0.0404088277335557, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "3107653995977241128601", + "balance": "1637703737862575762994", "balanceWeight": 1, - "earnings": "41573016316537227867", - "earningsChange": "297246463085669680" + "earnings": "39923241166713843440", + "earningsChange": "177629260679203333" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-01-21", - "timestamp": "2024-01-21T23:59:59.999000Z", - "blockNumber": 19058586, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-01-15", + "timestamp": "2024-01-15T23:59:59.999000Z", + "blockNumber": 19015723, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.06567389290565356, - "apy": 0.06787211339469446, + "apr": 0.03389132570000447, + "apy": 0.03447055360008622, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "3320401129345309415127", + "balance": "3318576364353612298718", "balanceWeight": 1, - "earnings": "49699807456138283784", - "earningsChange": "597025785550826297" + "earnings": "47404114412448037087", + "earningsChange": "307928685625269528" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-02-15", - "timestamp": "2024-02-15T23:59:59.999000Z", - "blockNumber": 19236754, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-02-09", + "timestamp": "2024-02-09T23:59:59.999000Z", + "blockNumber": 19194000, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.032795218082635136, - "apy": 0.03333738714150014, + "apr": 0.0366642577470806, + "apy": 0.03734277313022116, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "3422263468761043339354", + "balance": "3419891111978120367210", "balanceWeight": 1, - "earnings": "57639385086612494106", - "earningsChange": "307279607924165896" + "earnings": "55267028303689521962", + "earningsChange": "343293002591040029" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-03-11", - "timestamp": "2024-03-11T23:59:59.999000Z", - "blockNumber": 19415285, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-03-05", + "timestamp": "2024-03-05T23:59:59.999000Z", + "blockNumber": 19372410, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.035861993155918925, - "apy": 0.036510966048060034, + "apr": 0.03449493994322611, + "apy": 0.03509510476766975, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "3451818899462443581958", + "balance": "3449371367355744013276", "balanceWeight": 1, - "earnings": "65839896068812072430", - "earningsChange": "338916100609939923" + "earnings": "63392363962112503748", + "earningsChange": "325765525417831288" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-04-05", - "timestamp": "2024-04-05T23:59:59.999000Z", - "blockNumber": 19592970, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-03-30", + "timestamp": "2024-03-30T23:59:59.999000Z", + "blockNumber": 19550182, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.03489212379372697, - "apy": 0.03550627042092702, + "apr": 0.031193995838043775, + "apy": 0.03168425301048461, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "2767810552699165171770", + "balance": "2766296490488032555254", "balanceWeight": 1, - "earnings": "72855349305533695009", - "earningsChange": "264407360554336328" + "earnings": "71341287094401078493", + "earningsChange": "236254185382843407" }, { - "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-04-30", - "timestamp": "2024-04-30T23:59:59.999000Z", - "blockNumber": 19771559, + "id": "0x39254033945aa2e4809cc2977e7087bee48bd7ab:0xae7ab96520de3a18e5e111b5eaab095312d7fe84:2024-04-24", + "timestamp": "2024-04-24T23:59:59.999000Z", + "blockNumber": 19728664, "strategy": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "apr": 0.030316909438050432, - "apy": 0.03077984961525293, + "apr": 0.03741815214000249, + "apy": 0.03812503553318991, "asset": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "balance": "17736456197875194129715", + "balance": "7372930232382688979635", "balanceWeight": 1, - "earnings": "83623093780337036964", - "earningsChange": "1472182166469492999" + "earnings": "78169522819736107888", + "earningsChange": "755322177010525223" } ], "strategyBalances_oeth_0x34edb2ee25751ee67f68a45813b22811687c0238": [ { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20049859", - "blockNumber": 20049859, - "timestamp": "2024-06-08T21:40:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20049744", + "blockNumber": 20049744, + "timestamp": "2024-06-08T21:17:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -3935,9 +3935,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20228684", - "blockNumber": 20228684, - "timestamp": "2024-07-03T21:30:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20229144", + "blockNumber": 20229144, + "timestamp": "2024-07-03T23:03:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "604000000000000000000", "balanceETH": "604000000000000000000", @@ -3946,97 +3946,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20403072", - "blockNumber": 20403072, - "timestamp": "2024-07-28T05:52:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "15968000000000000000000", - "balanceETH": "15968000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" - }, - { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20580752", - "blockNumber": 20580752, - "timestamp": "2024-08-22T01:05:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "15968000000000000000000", - "balanceETH": "15968000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" - }, - { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20762638", - "blockNumber": 20762638, - "timestamp": "2024-09-16T10:38:47.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "15968000000000000000000", - "balanceETH": "15968000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" - }, - { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20943570", - "blockNumber": 20943570, - "timestamp": "2024-10-11T16:28:35.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "15968000000000000000000", - "balanceETH": "15968000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" - }, - { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21121149", - "blockNumber": 21121149, - "timestamp": "2024-11-05T11:28:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "15968000000000000000000", - "balanceETH": "15968000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" - }, - { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21180366", - "blockNumber": 21180366, - "timestamp": "2024-11-13T17:48:59.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "15968000000000000000000", - "balanceETH": "15968000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" - }, - { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21225141", - "blockNumber": 21225141, - "timestamp": "2024-11-19T23:43:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "15968000000000000000000", - "balanceETH": "15968000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" - }, - { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21269916", - "blockNumber": 21269916, - "timestamp": "2024-11-26T05:44:35.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "15968000000000000000000", - "balanceETH": "15968000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" - }, - { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21304914", - "blockNumber": 21304914, - "timestamp": "2024-12-01T03:16:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20408544", + "blockNumber": 20408544, + "timestamp": "2024-07-29T00:09:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4045,9 +3957,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21308639", - "blockNumber": 21308639, - "timestamp": "2024-12-01T15:44:35.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20587944", + "blockNumber": 20587944, + "timestamp": "2024-08-23T01:11:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4056,9 +3968,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21312364", - "blockNumber": 21312364, - "timestamp": "2024-12-02T04:12:59.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20767344", + "blockNumber": 20767344, + "timestamp": "2024-09-17T02:26:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4067,9 +3979,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21316089", - "blockNumber": 21316089, - "timestamp": "2024-12-02T16:43:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20946744", + "blockNumber": 20946744, + "timestamp": "2024-10-12T03:08:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4078,9 +3990,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21319814", - "blockNumber": 21319814, - "timestamp": "2024-12-03T05:13:35.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21126144", + "blockNumber": 21126144, + "timestamp": "2024-11-06T04:12:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4089,9 +4001,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21323539", - "blockNumber": 21323539, - "timestamp": "2024-12-03T17:42:23.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21244548", + "blockNumber": 21244548, + "timestamp": "2024-11-22T16:45:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4100,9 +4012,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21327264", - "blockNumber": 21327264, - "timestamp": "2024-12-04T06:12:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21289398", + "blockNumber": 21289398, + "timestamp": "2024-11-28T23:12:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4111,9 +4023,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21330989", - "blockNumber": 21330989, - "timestamp": "2024-12-04T18:40:59.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21334248", + "blockNumber": 21334248, + "timestamp": "2024-12-05T05:36:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4122,9 +4034,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21334714", - "blockNumber": 21334714, - "timestamp": "2024-12-05T07:10:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21379098", + "blockNumber": 21379098, + "timestamp": "2024-12-11T11:55:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4133,9 +4045,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21338439", - "blockNumber": 21338439, - "timestamp": "2024-12-05T19:39:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21391185", + "blockNumber": 21391185, + "timestamp": "2024-12-13T04:25:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4144,9 +4056,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21342164", - "blockNumber": 21342164, - "timestamp": "2024-12-06T08:08:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21394910", + "blockNumber": 21394910, + "timestamp": "2024-12-13T16:53:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4155,9 +4067,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21345889", - "blockNumber": 21345889, - "timestamp": "2024-12-06T20:37:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21398635", + "blockNumber": 21398635, + "timestamp": "2024-12-14T05:22:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4166,9 +4078,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21348334", - "blockNumber": 21348334, - "timestamp": "2024-12-07T04:48:59.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21402360", + "blockNumber": 21402360, + "timestamp": "2024-12-14T17:51:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4177,9 +4089,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21350184", - "blockNumber": 21350184, - "timestamp": "2024-12-07T11:01:23.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21406085", + "blockNumber": 21406085, + "timestamp": "2024-12-15T06:19:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4188,9 +4100,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21352050", - "blockNumber": 21352050, - "timestamp": "2024-12-07T17:17:35.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21409810", + "blockNumber": 21409810, + "timestamp": "2024-12-15T18:49:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4199,9 +4111,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21353925", - "blockNumber": 21353925, - "timestamp": "2024-12-07T23:35:23.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21413535", + "blockNumber": 21413535, + "timestamp": "2024-12-16T07:18:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4210,9 +4122,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354256", - "blockNumber": 21354256, - "timestamp": "2024-12-08T00:41:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21417260", + "blockNumber": 21417260, + "timestamp": "2024-12-16T19:45:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4221,9 +4133,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354356", - "blockNumber": 21354356, - "timestamp": "2024-12-08T01:01:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21420985", + "blockNumber": 21420985, + "timestamp": "2024-12-17T08:12:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4232,9 +4144,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354456", - "blockNumber": 21354456, - "timestamp": "2024-12-08T01:22:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21424710", + "blockNumber": 21424710, + "timestamp": "2024-12-17T20:41:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4243,9 +4155,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354556", - "blockNumber": 21354556, - "timestamp": "2024-12-08T01:42:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21428435", + "blockNumber": 21428435, + "timestamp": "2024-12-18T09:10:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4254,9 +4166,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354670", - "blockNumber": 21354670, - "timestamp": "2024-12-08T02:05:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21431658", + "blockNumber": 21431658, + "timestamp": "2024-12-18T19:59:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4265,9 +4177,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354795", - "blockNumber": 21354795, - "timestamp": "2024-12-08T02:30:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21433508", + "blockNumber": 21433508, + "timestamp": "2024-12-19T02:12:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4276,9 +4188,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354920", - "blockNumber": 21354920, - "timestamp": "2024-12-08T02:55:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21435358", + "blockNumber": 21435358, + "timestamp": "2024-12-19T08:24:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4287,9 +4199,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355045", - "blockNumber": 21355045, - "timestamp": "2024-12-08T03:20:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21437208", + "blockNumber": 21437208, + "timestamp": "2024-12-19T14:37:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4298,9 +4210,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355170", - "blockNumber": 21355170, - "timestamp": "2024-12-08T03:45:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438368", + "blockNumber": 21438368, + "timestamp": "2024-12-19T18:30:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4309,9 +4221,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355295", - "blockNumber": 21355295, - "timestamp": "2024-12-08T04:10:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438468", + "blockNumber": 21438468, + "timestamp": "2024-12-19T18:50:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4320,9 +4232,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355420", - "blockNumber": 21355420, - "timestamp": "2024-12-08T04:35:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438568", + "blockNumber": 21438568, + "timestamp": "2024-12-19T19:10:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4331,9 +4243,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355545", - "blockNumber": 21355545, - "timestamp": "2024-12-08T05:00:11.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438668", + "blockNumber": 21438668, + "timestamp": "2024-12-19T19:30:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4342,9 +4254,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355665", - "blockNumber": 21355665, - "timestamp": "2024-12-08T05:24:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438768", + "blockNumber": 21438768, + "timestamp": "2024-12-19T19:50:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4353,9 +4265,9 @@ "strategy": "0x34edb2ee25751ee67f68a45813b22811687c0238" }, { - "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355790", - "blockNumber": 21355790, - "timestamp": "2024-12-08T05:49:47.000000Z", + "id": "1:0x34edb2ee25751ee67f68a45813b22811687c0238:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438868", + "blockNumber": 21438868, + "timestamp": "2024-12-19T20:10:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "15968000000000000000000", "balanceETH": "15968000000000000000000", @@ -4472,9 +4384,9 @@ ], "strategyBalances_oeth_0x4685db8bf2df743c861d71e6cfb5347222992076": [ { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20293061", - "blockNumber": 20293061, - "timestamp": "2024-07-12T21:17:47.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20293728", + "blockNumber": 20293728, + "timestamp": "2024-07-12T23:31:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -4483,20 +4395,20 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20467548", - "blockNumber": 20467548, - "timestamp": "2024-08-06T05:50:23.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20473128", + "blockNumber": 20473128, + "timestamp": "2024-08-07T00:31:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "8288000000000000000000", - "balanceETH": "8288000000000000000000", + "balance": "8704000000000000000000", + "balanceETH": "8704000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20649440", - "blockNumber": 20649440, - "timestamp": "2024-08-31T15:27:23.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20652528", + "blockNumber": 20652528, + "timestamp": "2024-09-01T01:47:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "11127251199495826534280", "balanceETH": "11127251199495826534280", @@ -4505,9 +4417,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20829780", - "blockNumber": 20829780, - "timestamp": "2024-09-25T19:43:47.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:20831928", + "blockNumber": 20831928, + "timestamp": "2024-09-26T02:54:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "8848102626335030463743", "balanceETH": "8848102626335030463743", @@ -4516,9 +4428,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21006146", - "blockNumber": 21006146, - "timestamp": "2024-10-20T10:18:59.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21011328", + "blockNumber": 21011328, + "timestamp": "2024-10-21T03:41:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "7552002626335030463743", "balanceETH": "7552002626335030463743", @@ -4527,108 +4439,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21151710", - "blockNumber": 21151710, - "timestamp": "2024-11-09T17:52:35.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "11872002626335030463743", - "balanceETH": "11872002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21196485", - "blockNumber": 21196485, - "timestamp": "2024-11-15T23:50:47.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "16000002626335030463743", - "balanceETH": "16000002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21241260", - "blockNumber": 21241260, - "timestamp": "2024-11-22T05:43:47.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "16000002626335030463743", - "balanceETH": "16000002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21286035", - "blockNumber": 21286035, - "timestamp": "2024-11-28T11:54:59.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "16000002626335030463743", - "balanceETH": "16000002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21306255", - "blockNumber": 21306255, - "timestamp": "2024-12-01T07:46:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "16000002626335030463743", - "balanceETH": "16000002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21309980", - "blockNumber": 21309980, - "timestamp": "2024-12-01T20:14:23.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "16000002626335030463743", - "balanceETH": "16000002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21313705", - "blockNumber": 21313705, - "timestamp": "2024-12-02T08:42:59.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "16000002626335030463743", - "balanceETH": "16000002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21317430", - "blockNumber": 21317430, - "timestamp": "2024-12-02T21:12:47.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "16000002626335030463743", - "balanceETH": "16000002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21321155", - "blockNumber": 21321155, - "timestamp": "2024-12-03T09:42:59.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "16000002626335030463743", - "balanceETH": "16000002626335030463743", - "chainId": 1, - "symbol": "WETH", - "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" - }, - { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21324880", - "blockNumber": 21324880, - "timestamp": "2024-12-03T22:12:35.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21190728", + "blockNumber": 21190728, + "timestamp": "2024-11-15T04:32:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4637,9 +4450,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21328605", - "blockNumber": 21328605, - "timestamp": "2024-12-04T10:41:35.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21260694", + "blockNumber": 21260694, + "timestamp": "2024-11-24T22:49:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4648,9 +4461,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21332330", - "blockNumber": 21332330, - "timestamp": "2024-12-04T23:10:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21305544", + "blockNumber": 21305544, + "timestamp": "2024-12-01T05:23:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4659,9 +4472,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21336055", - "blockNumber": 21336055, - "timestamp": "2024-12-05T11:39:59.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21350394", + "blockNumber": 21350394, + "timestamp": "2024-12-07T11:43:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4670,9 +4483,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21339780", - "blockNumber": 21339780, - "timestamp": "2024-12-06T00:09:35.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21388801", + "blockNumber": 21388801, + "timestamp": "2024-12-12T20:25:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4681,9 +4494,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21343505", - "blockNumber": 21343505, - "timestamp": "2024-12-06T12:38:23.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21392526", + "blockNumber": 21392526, + "timestamp": "2024-12-13T08:54:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4692,9 +4505,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21347150", - "blockNumber": 21347150, - "timestamp": "2024-12-07T00:51:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21396251", + "blockNumber": 21396251, + "timestamp": "2024-12-13T21:23:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4703,9 +4516,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21349000", - "blockNumber": 21349000, - "timestamp": "2024-12-07T07:03:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21399976", + "blockNumber": 21399976, + "timestamp": "2024-12-14T09:51:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4714,9 +4527,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21350850", - "blockNumber": 21350850, - "timestamp": "2024-12-07T13:15:47.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21403701", + "blockNumber": 21403701, + "timestamp": "2024-12-14T22:20:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4725,9 +4538,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21352725", - "blockNumber": 21352725, - "timestamp": "2024-12-07T19:33:35.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21407426", + "blockNumber": 21407426, + "timestamp": "2024-12-15T10:49:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4736,9 +4549,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354175", - "blockNumber": 21354175, - "timestamp": "2024-12-08T00:25:35.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21411151", + "blockNumber": 21411151, + "timestamp": "2024-12-15T23:18:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4747,9 +4560,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354292", - "blockNumber": 21354292, - "timestamp": "2024-12-08T00:48:59.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21414876", + "blockNumber": 21414876, + "timestamp": "2024-12-16T11:47:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4758,9 +4571,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354392", - "blockNumber": 21354392, - "timestamp": "2024-12-08T01:08:59.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21418601", + "blockNumber": 21418601, + "timestamp": "2024-12-17T00:14:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4769,9 +4582,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354492", - "blockNumber": 21354492, - "timestamp": "2024-12-08T01:29:23.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21422326", + "blockNumber": 21422326, + "timestamp": "2024-12-17T12:42:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4780,9 +4593,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354592", - "blockNumber": 21354592, - "timestamp": "2024-12-08T01:49:23.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21426051", + "blockNumber": 21426051, + "timestamp": "2024-12-18T01:10:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4791,9 +4604,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354715", - "blockNumber": 21354715, - "timestamp": "2024-12-08T02:14:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21429776", + "blockNumber": 21429776, + "timestamp": "2024-12-18T13:40:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4802,9 +4615,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354840", - "blockNumber": 21354840, - "timestamp": "2024-12-08T02:39:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21432324", + "blockNumber": 21432324, + "timestamp": "2024-12-18T22:13:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4813,9 +4626,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354965", - "blockNumber": 21354965, - "timestamp": "2024-12-08T03:04:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21434174", + "blockNumber": 21434174, + "timestamp": "2024-12-19T04:26:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4824,9 +4637,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355090", - "blockNumber": 21355090, - "timestamp": "2024-12-08T03:29:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21436024", + "blockNumber": 21436024, + "timestamp": "2024-12-19T10:39:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4835,9 +4648,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355215", - "blockNumber": 21355215, - "timestamp": "2024-12-08T03:54:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21437874", + "blockNumber": 21437874, + "timestamp": "2024-12-19T16:51:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4846,9 +4659,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355340", - "blockNumber": 21355340, - "timestamp": "2024-12-08T04:19:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438404", + "blockNumber": 21438404, + "timestamp": "2024-12-19T18:37:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4857,9 +4670,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355465", - "blockNumber": 21355465, - "timestamp": "2024-12-08T04:44:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438504", + "blockNumber": 21438504, + "timestamp": "2024-12-19T18:57:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4868,9 +4681,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355588", - "blockNumber": 21355588, - "timestamp": "2024-12-08T05:09:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438604", + "blockNumber": 21438604, + "timestamp": "2024-12-19T19:17:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4879,9 +4692,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355710", - "blockNumber": 21355710, - "timestamp": "2024-12-08T05:33:47.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438704", + "blockNumber": 21438704, + "timestamp": "2024-12-19T19:37:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4890,9 +4703,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355835", - "blockNumber": 21355835, - "timestamp": "2024-12-08T05:58:59.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438804", + "blockNumber": 21438804, + "timestamp": "2024-12-19T19:57:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -4901,9 +4714,9 @@ "strategy": "0x4685db8bf2df743c861d71e6cfb5347222992076" }, { - "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355960", - "blockNumber": 21355960, - "timestamp": "2024-12-08T06:24:11.000000Z", + "id": "1:0x4685db8bf2df743c861d71e6cfb5347222992076:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438904", + "blockNumber": 21438904, + "timestamp": "2024-12-19T20:18:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "16000002626335030463743", "balanceETH": "16000002626335030463743", @@ -5007,9 +4820,9 @@ ], "strategyBalances_oeth_0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63": [ { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21176784", - "blockNumber": 21176784, - "timestamp": "2024-11-13T05:49:23.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21176376", + "blockNumber": 21176376, + "timestamp": "2024-11-13T04:27:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "0", "balanceETH": "0", @@ -5018,20 +4831,20 @@ "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21221559", - "blockNumber": 21221559, - "timestamp": "2024-11-19T11:44:23.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21257106", + "blockNumber": 21257106, + "timestamp": "2024-11-24T10:47:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "96000000000000000000", - "balanceETH": "96000000000000000000", + "balance": "3264000000000000000000", + "balanceETH": "3264000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21266334", - "blockNumber": 21266334, - "timestamp": "2024-11-25T17:42:59.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21301956", + "blockNumber": 21301956, + "timestamp": "2024-11-30T17:22:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "3264000000000000000000", "balanceETH": "3264000000000000000000", @@ -5040,9 +4853,9 @@ "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21304616", - "blockNumber": 21304616, - "timestamp": "2024-12-01T02:16:35.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21346806", + "blockNumber": 21346806, + "timestamp": "2024-12-06T23:42:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "balance": "3264000000000000000000", "balanceETH": "3264000000000000000000", @@ -5051,397 +4864,243 @@ "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21308341", - "blockNumber": 21308341, - "timestamp": "2024-12-01T14:44:59.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21388503", + "blockNumber": 21388503, + "timestamp": "2024-12-12T19:25:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "7040000000000000000000", + "balanceETH": "7040000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21312066", - "blockNumber": 21312066, - "timestamp": "2024-12-02T03:12:59.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21392228", + "blockNumber": 21392228, + "timestamp": "2024-12-13T07:54:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "7040000000000000000000", + "balanceETH": "7040000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21315791", - "blockNumber": 21315791, - "timestamp": "2024-12-02T15:42:59.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21395953", + "blockNumber": 21395953, + "timestamp": "2024-12-13T20:22:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "8032000000000000000000", + "balanceETH": "8032000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21319516", - "blockNumber": 21319516, - "timestamp": "2024-12-03T04:13:35.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21399678", + "blockNumber": 21399678, + "timestamp": "2024-12-14T08:52:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "10016000000000000000000", + "balanceETH": "10016000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21323241", - "blockNumber": 21323241, - "timestamp": "2024-12-03T16:42:47.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21403403", + "blockNumber": 21403403, + "timestamp": "2024-12-14T21:21:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "10016000000000000000000", + "balanceETH": "10016000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21326966", - "blockNumber": 21326966, - "timestamp": "2024-12-04T05:11:59.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21407128", + "blockNumber": 21407128, + "timestamp": "2024-12-15T09:49:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "10016000000000000000000", + "balanceETH": "10016000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21330691", - "blockNumber": 21330691, - "timestamp": "2024-12-04T17:41:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21410853", + "blockNumber": 21410853, + "timestamp": "2024-12-15T22:19:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "10016000000000000000000", + "balanceETH": "10016000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21334416", - "blockNumber": 21334416, - "timestamp": "2024-12-05T06:10:47.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21414578", + "blockNumber": 21414578, + "timestamp": "2024-12-16T10:47:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "10016000000000000000000", + "balanceETH": "10016000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21338141", - "blockNumber": 21338141, - "timestamp": "2024-12-05T18:39:59.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21418303", + "blockNumber": 21418303, + "timestamp": "2024-12-16T23:14:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "10016000000000000000000", + "balanceETH": "10016000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21341866", - "blockNumber": 21341866, - "timestamp": "2024-12-06T07:09:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21422028", + "blockNumber": 21422028, + "timestamp": "2024-12-17T11:42:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21345591", - "blockNumber": 21345591, - "timestamp": "2024-12-06T19:37:23.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21348186", - "blockNumber": 21348186, - "timestamp": "2024-12-07T04:19:23.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21350036", - "blockNumber": 21350036, - "timestamp": "2024-12-07T10:31:23.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21351900", - "blockNumber": 21351900, - "timestamp": "2024-12-07T16:47:23.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21353775", - "blockNumber": 21353775, - "timestamp": "2024-12-07T23:05:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354248", - "blockNumber": 21354248, - "timestamp": "2024-12-08T00:40:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354348", - "blockNumber": 21354348, - "timestamp": "2024-12-08T01:00:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354448", - "blockNumber": 21354448, - "timestamp": "2024-12-08T01:20:35.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354548", - "blockNumber": 21354548, - "timestamp": "2024-12-08T01:40:35.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354660", - "blockNumber": 21354660, - "timestamp": "2024-12-08T02:03:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354785", - "blockNumber": 21354785, - "timestamp": "2024-12-08T02:28:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21354910", - "blockNumber": 21354910, - "timestamp": "2024-12-08T02:53:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355035", - "blockNumber": 21355035, - "timestamp": "2024-12-08T03:18:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", - "chainId": 1, - "symbol": "WETH", - "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" - }, - { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355160", - "blockNumber": 21355160, - "timestamp": "2024-12-08T03:43:11.000000Z", - "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "12256000000000000000000", + "balanceETH": "12256000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355285", - "blockNumber": 21355285, - "timestamp": "2024-12-08T04:08:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21425753", + "blockNumber": 21425753, + "timestamp": "2024-12-18T00:10:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "12256000000000000000000", + "balanceETH": "12256000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355410", - "blockNumber": 21355410, - "timestamp": "2024-12-08T04:33:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21429478", + "blockNumber": 21429478, + "timestamp": "2024-12-18T12:40:47.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "12256000000000000000000", + "balanceETH": "12256000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355535", - "blockNumber": 21355535, - "timestamp": "2024-12-08T04:58:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21432176", + "blockNumber": 21432176, + "timestamp": "2024-12-18T21:43:59.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "12256000000000000000000", + "balanceETH": "12256000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355655", - "blockNumber": 21355655, - "timestamp": "2024-12-08T05:22:47.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21434026", + "blockNumber": 21434026, + "timestamp": "2024-12-19T03:57:11.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "12256000000000000000000", + "balanceETH": "12256000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355780", - "blockNumber": 21355780, - "timestamp": "2024-12-08T05:47:47.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21435876", + "blockNumber": 21435876, + "timestamp": "2024-12-19T10:09:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "12256000000000000000000", + "balanceETH": "12256000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21355905", - "blockNumber": 21355905, - "timestamp": "2024-12-08T06:13:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21437726", + "blockNumber": 21437726, + "timestamp": "2024-12-19T16:21:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "13216000000000000000000", + "balanceETH": "13216000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21356030", - "blockNumber": 21356030, - "timestamp": "2024-12-08T06:38:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438396", + "blockNumber": 21438396, + "timestamp": "2024-12-19T18:36:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "13216000000000000000000", + "balanceETH": "13216000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21356155", - "blockNumber": 21356155, - "timestamp": "2024-12-08T07:03:23.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438496", + "blockNumber": 21438496, + "timestamp": "2024-12-19T18:56:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "13216000000000000000000", + "balanceETH": "13216000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21356280", - "blockNumber": 21356280, - "timestamp": "2024-12-08T07:28:23.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438596", + "blockNumber": 21438596, + "timestamp": "2024-12-19T19:16:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "13216000000000000000000", + "balanceETH": "13216000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21356400", - "blockNumber": 21356400, - "timestamp": "2024-12-08T07:52:47.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438696", + "blockNumber": 21438696, + "timestamp": "2024-12-19T19:36:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "13216000000000000000000", + "balanceETH": "13216000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21356525", - "blockNumber": 21356525, - "timestamp": "2024-12-08T08:18:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438796", + "blockNumber": 21438796, + "timestamp": "2024-12-19T19:56:23.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "13216000000000000000000", + "balanceETH": "13216000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" }, { - "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21356650", - "blockNumber": 21356650, - "timestamp": "2024-12-08T08:43:11.000000Z", + "id": "1:0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:21438896", + "blockNumber": 21438896, + "timestamp": "2024-12-19T20:16:35.000000Z", "asset": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "balance": "3264000000000000000000", - "balanceETH": "3264000000000000000000", + "balance": "13216000000000000000000", + "balanceETH": "13216000000000000000000", "chainId": 1, "symbol": "WETH", "strategy": "0xe98538a0e8c2871c2482e1be8cc6bd9f8e8ffd63" @@ -5477,9 +5136,9 @@ ], "strategyBalances_ousd_0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90": [ { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:15927666", - "blockNumber": 15927666, - "timestamp": "2022-11-08T20:20:47.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:15923544", + "blockNumber": 15923544, + "timestamp": "2022-11-08T06:32:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5488,20 +5147,20 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:17184650", - "blockNumber": 17184650, - "timestamp": "2023-05-04T03:31:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:17179344", + "blockNumber": 17179344, + "timestamp": "2023-05-03T09:35:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "5694594777363924422263218", - "balanceETH": "299393320419", + "balance": "5694580613213713228424008", + "balanceETH": "304301304228", "chainId": 1, "symbol": "DAI", "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:18413248", - "blockNumber": 18413248, - "timestamp": "2023-10-23T13:24:47.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:18435144", + "blockNumber": 18435144, + "timestamp": "2023-10-26T15:00:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5510,9 +5169,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:18872075", - "blockNumber": 18872075, - "timestamp": "2023-12-26T19:54:11.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:18944640", + "blockNumber": 18944640, + "timestamp": "2024-01-06T00:32:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5521,9 +5180,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19052209", - "blockNumber": 19052209, - "timestamp": "2024-01-21T02:19:23.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19124040", + "blockNumber": 19124040, + "timestamp": "2024-01-31T04:18:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5532,9 +5191,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19228646", - "blockNumber": 19228646, - "timestamp": "2024-02-14T20:41:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19303440", + "blockNumber": 19303440, + "timestamp": "2024-02-25T08:35:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5543,9 +5202,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19412250", - "blockNumber": 19412250, - "timestamp": "2024-03-11T13:47:23.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19482840", + "blockNumber": 19482840, + "timestamp": "2024-03-21T11:47:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5554,9 +5213,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19591000", - "blockNumber": 19591000, - "timestamp": "2024-04-05T17:23:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19662240", + "blockNumber": 19662240, + "timestamp": "2024-04-15T16:56:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5565,9 +5224,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19767891", - "blockNumber": 19767891, - "timestamp": "2024-04-30T11:41:23.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19841640", + "blockNumber": 19841640, + "timestamp": "2024-05-10T19:11:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5576,9 +5235,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:19945710", - "blockNumber": 19945710, - "timestamp": "2024-05-25T08:30:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20021040", + "blockNumber": 20021040, + "timestamp": "2024-06-04T21:07:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5587,9 +5246,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20121138", - "blockNumber": 20121138, - "timestamp": "2024-06-18T20:50:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20200440", + "blockNumber": 20200440, + "timestamp": "2024-06-29T22:51:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5598,9 +5257,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20298600", - "blockNumber": 20298600, - "timestamp": "2024-07-13T15:53:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20379840", + "blockNumber": 20379840, + "timestamp": "2024-07-25T00:00:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5609,9 +5268,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20474712", - "blockNumber": 20474712, - "timestamp": "2024-08-07T05:50:11.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20559240", + "blockNumber": 20559240, + "timestamp": "2024-08-19T00:56:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5620,9 +5279,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20649440", - "blockNumber": 20649440, - "timestamp": "2024-08-31T15:27:23.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20738640", + "blockNumber": 20738640, + "timestamp": "2024-09-13T02:15:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5631,9 +5290,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20822622", - "blockNumber": 20822622, - "timestamp": "2024-09-24T19:43:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:20918040", + "blockNumber": 20918040, + "timestamp": "2024-10-08T03:02:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5642,9 +5301,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21006146", - "blockNumber": 21006146, - "timestamp": "2024-10-20T10:18:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21097440", + "blockNumber": 21097440, + "timestamp": "2024-11-02T04:01:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5653,9 +5312,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21153501", - "blockNumber": 21153501, - "timestamp": "2024-11-09T23:51:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21237372", + "blockNumber": 21237372, + "timestamp": "2024-11-21T16:43:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5664,9 +5323,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21198276", - "blockNumber": 21198276, - "timestamp": "2024-11-16T05:50:47.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21282222", + "blockNumber": 21282222, + "timestamp": "2024-11-27T22:59:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5675,9 +5334,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21243051", - "blockNumber": 21243051, - "timestamp": "2024-11-22T11:43:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21327072", + "blockNumber": 21327072, + "timestamp": "2024-12-04T05:33:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5686,9 +5345,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21287826", - "blockNumber": 21287826, - "timestamp": "2024-11-28T17:55:47.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21371922", + "blockNumber": 21371922, + "timestamp": "2024-12-10T11:51:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5697,9 +5356,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21308192", - "blockNumber": 21308192, - "timestamp": "2024-12-01T14:15:11.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21390589", + "blockNumber": 21390589, + "timestamp": "2024-12-13T02:25:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5708,9 +5367,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21311917", - "blockNumber": 21311917, - "timestamp": "2024-12-02T02:42:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21394314", + "blockNumber": 21394314, + "timestamp": "2024-12-13T14:53:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5719,9 +5378,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21315642", - "blockNumber": 21315642, - "timestamp": "2024-12-02T15:12:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21398039", + "blockNumber": 21398039, + "timestamp": "2024-12-14T03:22:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5730,9 +5389,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21319367", - "blockNumber": 21319367, - "timestamp": "2024-12-03T03:43:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21401764", + "blockNumber": 21401764, + "timestamp": "2024-12-14T15:51:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5741,9 +5400,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21323092", - "blockNumber": 21323092, - "timestamp": "2024-12-03T16:12:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21405489", + "blockNumber": 21405489, + "timestamp": "2024-12-15T04:19:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5752,9 +5411,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21326817", - "blockNumber": 21326817, - "timestamp": "2024-12-04T04:42:11.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21409214", + "blockNumber": 21409214, + "timestamp": "2024-12-15T16:49:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5763,9 +5422,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21330542", - "blockNumber": 21330542, - "timestamp": "2024-12-04T17:11:23.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21412939", + "blockNumber": 21412939, + "timestamp": "2024-12-16T05:17:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5774,9 +5433,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21334267", - "blockNumber": 21334267, - "timestamp": "2024-12-05T05:40:47.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21416664", + "blockNumber": 21416664, + "timestamp": "2024-12-16T17:46:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5785,9 +5444,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21337992", - "blockNumber": 21337992, - "timestamp": "2024-12-05T18:09:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21420389", + "blockNumber": 21420389, + "timestamp": "2024-12-17T06:13:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5796,9 +5455,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21341717", - "blockNumber": 21341717, - "timestamp": "2024-12-06T06:39:23.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21424114", + "blockNumber": 21424114, + "timestamp": "2024-12-17T18:41:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5807,9 +5466,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21345442", - "blockNumber": 21345442, - "timestamp": "2024-12-06T19:07:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21427839", + "blockNumber": 21427839, + "timestamp": "2024-12-18T07:10:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5818,9 +5477,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21349050", - "blockNumber": 21349050, - "timestamp": "2024-12-07T07:13:11.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21431362", + "blockNumber": 21431362, + "timestamp": "2024-12-18T19:00:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5829,9 +5488,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21350925", - "blockNumber": 21350925, - "timestamp": "2024-12-07T13:30:47.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21433212", + "blockNumber": 21433212, + "timestamp": "2024-12-19T01:12:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5840,9 +5499,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21352800", - "blockNumber": 21352800, - "timestamp": "2024-12-07T19:48:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21435062", + "blockNumber": 21435062, + "timestamp": "2024-12-19T07:25:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5851,9 +5510,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21354675", - "blockNumber": 21354675, - "timestamp": "2024-12-08T02:06:11.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21436912", + "blockNumber": 21436912, + "timestamp": "2024-12-19T13:37:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5862,9 +5521,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21356056", - "blockNumber": 21356056, - "timestamp": "2024-12-08T06:43:23.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21438336", + "blockNumber": 21438336, + "timestamp": "2024-12-19T18:24:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5873,9 +5532,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21356156", - "blockNumber": 21356156, - "timestamp": "2024-12-08T07:03:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21438452", + "blockNumber": 21438452, + "timestamp": "2024-12-19T18:47:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5884,9 +5543,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21356256", - "blockNumber": 21356256, - "timestamp": "2024-12-08T07:23:35.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21438552", + "blockNumber": 21438552, + "timestamp": "2024-12-19T19:07:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5895,9 +5554,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21356356", - "blockNumber": 21356356, - "timestamp": "2024-12-08T07:43:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21438652", + "blockNumber": 21438652, + "timestamp": "2024-12-19T19:27:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5906,9 +5565,9 @@ "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90" }, { - "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21356460", - "blockNumber": 21356460, - "timestamp": "2024-12-08T08:04:59.000000Z", + "id": "1:0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x6b175474e89094c44da98b954eedeac495271d0f:21438752", + "blockNumber": 21438752, + "timestamp": "2024-12-19T19:47:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -5936,13 +5595,13 @@ "timestamp": "2022-11-29T23:59:59.999000Z", "blockNumber": 16079082, "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90", - "apr": 0.034203648766573114, - "apy": 0.03479366295102215, + "apr": 0.05630283368647543, + "apy": 0.057913418082308876, "asset": "0x0000000000000000000000000000000000000348", - "balance": "16191219402852228254340216", + "balance": "16192199191809264534592638", "balanceWeight": 1, - "earnings": "29317628390076783784327", - "earningsChange": "1516218430000000000000" + "earnings": "31919339981292651659167", + "earningsChange": "2496007387036280252422" }, { "id": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x0000000000000000000000000000000000000348:2022-12-24", @@ -5952,9 +5611,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "29793288411618406282823236", + "balance": "29793342292887466403425340", "balanceWeight": 1, - "earnings": "57002882136449343148597", + "earnings": "56884466484178087099271", "earningsChange": "0" }, { @@ -5965,9 +5624,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "35490012092370647115421860", + "balance": "35490443812851285466939023", "balanceWeight": 1, - "earnings": "89673840281102748664896", + "earnings": "91728020315411031412431", "earningsChange": "0" }, { @@ -5980,7 +5639,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "30586952475870598891958469", "balanceWeight": 1, - "earnings": "131330293353443917178816", + "earnings": "141514980397527227982010", "earningsChange": "2015286721000000000000" }, { @@ -5991,9 +5650,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "47158214217102641559407227", + "balance": "47158813206153194011400350", "balanceWeight": 1, - "earnings": "184712603131527036133510", + "earnings": "193339889950870978865497", "earningsChange": "0" }, { @@ -6004,9 +5663,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "9522842956425535235740449", + "balance": "9522758450733645015883179", "balanceWeight": 1, - "earnings": "222913594666015482415612", + "earnings": "227831216449439229507174", "earningsChange": "0" }, { @@ -6017,9 +5676,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "17083379167584411627608021", + "balance": "17083297028844142714681569", "balanceWeight": 1, - "earnings": "262746195419573940486956", + "earnings": "267594856250345327150514", "earningsChange": "0" }, { @@ -6032,7 +5691,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "4000031866776812238874417", "balanceWeight": 1, - "earnings": "270149518317658373436382", + "earnings": "275221846575231272856904", "earningsChange": "569313095030986773810" }, { @@ -6045,7 +5704,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "280514246023131202864688", + "earnings": "285519268373487611021400", "earningsChange": "0" }, { @@ -6056,9 +5715,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "24112846755443531704078", + "balance": "24112558941200951011330", "balanceWeight": 1, - "earnings": "280525716842951637482894", + "earnings": "285538312300464241150341", "earningsChange": "0" }, { @@ -6071,7 +5730,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6084,7 +5743,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6097,7 +5756,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6110,7 +5769,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6123,7 +5782,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6136,7 +5795,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6149,7 +5808,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6162,7 +5821,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6175,7 +5834,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6188,7 +5847,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6201,7 +5860,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6214,7 +5873,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6227,7 +5886,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6240,7 +5899,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6253,7 +5912,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6266,7 +5925,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6279,7 +5938,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6292,7 +5951,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6305,7 +5964,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", "earningsChange": "0" }, { @@ -6318,15 +5977,28 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "287290685201363627116318", + "earnings": "291421354309940978247534", + "earningsChange": "0" + }, + { + "id": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90:0x0000000000000000000000000000000000000348:2024-12-18", + "timestamp": "2024-12-18T23:59:59.999000Z", + "blockNumber": 21432852, + "strategy": "0x89eb88fedc50fc77ae8a18aad1ca0ac27f777a90", + "apr": 0, + "apy": 0, + "asset": "0x0000000000000000000000000000000000000348", + "balance": "0", + "balanceWeight": 1, + "earnings": "291421354309940978247534", "earningsChange": "0" } ], "strategyBalances_ousd_0x5e3646a1db86993f73e6b74a57d8640b69f7e259": [ { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:14234248", - "blockNumber": 14234248, - "timestamp": "2022-02-19T03:56:50.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:14215656", + "blockNumber": 14215656, + "timestamp": "2022-02-16T06:49:14.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6335,31 +6007,31 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:15315674", - "blockNumber": 15315674, - "timestamp": "2022-08-10T17:26:08.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:15471456", + "blockNumber": 15471456, + "timestamp": "2022-09-04T11:47:43.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "0", - "balanceETH": "0", + "balance": "28724246432932852349327388", + "balanceETH": "1847543530566", "chainId": 1, "symbol": "DAI", "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:16545540", - "blockNumber": 16545540, - "timestamp": "2023-02-03T03:20:23.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:16727256", + "blockNumber": 16727256, + "timestamp": "2023-02-28T14:29:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "65395338689092444186964", - "balanceETH": "3998271007", + "balance": "65472863054560029879630", + "balanceETH": "4008641513", "chainId": 1, "symbol": "DAI", "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:17837862", - "blockNumber": 17837862, - "timestamp": "2023-08-03T23:52:23.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:17983056", + "blockNumber": 17983056, + "timestamp": "2023-08-24T07:24:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6368,9 +6040,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:18783460", - "blockNumber": 18783460, - "timestamp": "2023-12-14T09:22:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:18880056", + "blockNumber": 18880056, + "timestamp": "2023-12-27T22:49:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6379,9 +6051,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:18965886", - "blockNumber": 18965886, - "timestamp": "2024-01-09T00:35:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19059456", + "blockNumber": 19059456, + "timestamp": "2024-01-22T02:57:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6390,9 +6062,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19144116", - "blockNumber": 19144116, - "timestamp": "2024-02-02T23:55:35.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19238856", + "blockNumber": 19238856, + "timestamp": "2024-02-16T07:03:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6401,9 +6073,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19323000", - "blockNumber": 19323000, - "timestamp": "2024-02-28T02:16:59.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19418256", + "blockNumber": 19418256, + "timestamp": "2024-03-12T09:59:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6412,9 +6084,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19505512", - "blockNumber": 19505512, - "timestamp": "2024-03-24T16:13:35.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19597656", + "blockNumber": 19597656, + "timestamp": "2024-04-06T15:43:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6423,9 +6095,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19678428", - "blockNumber": 19678428, - "timestamp": "2024-04-17T23:20:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19777056", + "blockNumber": 19777056, + "timestamp": "2024-05-01T18:24:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6434,9 +6106,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19858327", - "blockNumber": 19858327, - "timestamp": "2024-05-13T03:11:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:19956456", + "blockNumber": 19956456, + "timestamp": "2024-05-26T20:31:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6445,9 +6117,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20035553", - "blockNumber": 20035553, - "timestamp": "2024-06-06T21:44:59.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20135856", + "blockNumber": 20135856, + "timestamp": "2024-06-20T22:16:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6456,9 +6128,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20214378", - "blockNumber": 20214378, - "timestamp": "2024-07-01T21:32:23.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20315256", + "blockNumber": 20315256, + "timestamp": "2024-07-15T23:41:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6467,9 +6139,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20391680", - "blockNumber": 20391680, - "timestamp": "2024-07-26T15:40:35.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20494656", + "blockNumber": 20494656, + "timestamp": "2024-08-10T00:34:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6478,9 +6150,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20566420", - "blockNumber": 20566420, - "timestamp": "2024-08-20T01:01:35.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20674056", + "blockNumber": 20674056, + "timestamp": "2024-09-04T01:53:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6489,9 +6161,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20741152", - "blockNumber": 20741152, - "timestamp": "2024-09-13T10:39:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20853456", + "blockNumber": 20853456, + "timestamp": "2024-09-29T02:57:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6500,9 +6172,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:20914890", - "blockNumber": 20914890, - "timestamp": "2024-10-07T16:30:47.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21032856", + "blockNumber": 21032856, + "timestamp": "2024-10-24T03:45:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6511,9 +6183,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21099648", - "blockNumber": 21099648, - "timestamp": "2024-11-02T11:26:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21212256", + "blockNumber": 21212256, + "timestamp": "2024-11-18T04:37:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6522,9 +6194,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21176784", - "blockNumber": 21176784, - "timestamp": "2024-11-13T05:49:23.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21266076", + "blockNumber": 21266076, + "timestamp": "2024-11-25T16:50:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6533,9 +6205,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21221559", - "blockNumber": 21221559, - "timestamp": "2024-11-19T11:44:23.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21310926", + "blockNumber": 21310926, + "timestamp": "2024-12-01T23:23:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6544,9 +6216,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21266334", - "blockNumber": 21266334, - "timestamp": "2024-11-25T17:42:59.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21355776", + "blockNumber": 21355776, + "timestamp": "2024-12-08T05:46:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6555,9 +6227,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21306404", - "blockNumber": 21306404, - "timestamp": "2024-12-01T08:15:59.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21389248", + "blockNumber": 21389248, + "timestamp": "2024-12-12T21:55:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6566,9 +6238,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21310129", - "blockNumber": 21310129, - "timestamp": "2024-12-01T20:44:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21392973", + "blockNumber": 21392973, + "timestamp": "2024-12-13T10:24:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6577,9 +6249,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21313854", - "blockNumber": 21313854, - "timestamp": "2024-12-02T09:12:47.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21396698", + "blockNumber": 21396698, + "timestamp": "2024-12-13T22:53:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6588,9 +6260,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21317579", - "blockNumber": 21317579, - "timestamp": "2024-12-02T21:42:35.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21400423", + "blockNumber": 21400423, + "timestamp": "2024-12-14T11:21:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6599,9 +6271,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21321304", - "blockNumber": 21321304, - "timestamp": "2024-12-03T10:12:59.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21404148", + "blockNumber": 21404148, + "timestamp": "2024-12-14T23:50:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6610,9 +6282,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21325029", - "blockNumber": 21325029, - "timestamp": "2024-12-03T22:42:35.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21407873", + "blockNumber": 21407873, + "timestamp": "2024-12-15T12:18:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6621,9 +6293,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21328754", - "blockNumber": 21328754, - "timestamp": "2024-12-04T11:11:47.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21411598", + "blockNumber": 21411598, + "timestamp": "2024-12-16T00:48:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6632,9 +6304,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21332479", - "blockNumber": 21332479, - "timestamp": "2024-12-04T23:40:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21415323", + "blockNumber": 21415323, + "timestamp": "2024-12-16T13:17:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6643,9 +6315,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21336204", - "blockNumber": 21336204, - "timestamp": "2024-12-05T12:09:59.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21419048", + "blockNumber": 21419048, + "timestamp": "2024-12-17T01:44:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6654,9 +6326,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21339929", - "blockNumber": 21339929, - "timestamp": "2024-12-06T00:39:23.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21422773", + "blockNumber": 21422773, + "timestamp": "2024-12-17T14:12:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6665,9 +6337,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21343654", - "blockNumber": 21343654, - "timestamp": "2024-12-06T13:08:47.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21426498", + "blockNumber": 21426498, + "timestamp": "2024-12-18T02:41:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6676,9 +6348,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21347379", - "blockNumber": 21347379, - "timestamp": "2024-12-07T01:37:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21430223", + "blockNumber": 21430223, + "timestamp": "2024-12-18T15:10:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6687,9 +6359,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21350025", - "blockNumber": 21350025, - "timestamp": "2024-12-07T10:29:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21432546", + "blockNumber": 21432546, + "timestamp": "2024-12-18T22:58:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6698,9 +6370,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21351900", - "blockNumber": 21351900, - "timestamp": "2024-12-07T16:47:23.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21434396", + "blockNumber": 21434396, + "timestamp": "2024-12-19T05:11:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6709,9 +6381,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21353775", - "blockNumber": 21353775, - "timestamp": "2024-12-07T23:05:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21436246", + "blockNumber": 21436246, + "timestamp": "2024-12-19T11:23:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6720,9 +6392,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21355650", - "blockNumber": 21355650, - "timestamp": "2024-12-08T05:21:47.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21438096", + "blockNumber": 21438096, + "timestamp": "2024-12-19T17:35:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6731,9 +6403,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21356108", - "blockNumber": 21356108, - "timestamp": "2024-12-08T06:53:59.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21438416", + "blockNumber": 21438416, + "timestamp": "2024-12-19T18:40:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6742,9 +6414,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21356208", - "blockNumber": 21356208, - "timestamp": "2024-12-08T07:13:59.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21438516", + "blockNumber": 21438516, + "timestamp": "2024-12-19T19:00:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6753,9 +6425,9 @@ "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259" }, { - "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21356308", - "blockNumber": 21356308, - "timestamp": "2024-12-08T07:34:11.000000Z", + "id": "1:0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x6b175474e89094c44da98b954eedeac495271d0f:21438616", + "blockNumber": 21438616, + "timestamp": "2024-12-19T19:20:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -6783,13 +6455,13 @@ "timestamp": "2022-03-11T23:59:59.999000Z", "blockNumber": 14368558, "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259", - "apr": 0.08601561867787905, - "apy": 0.08981231355718311, + "apr": 0.08524151377849992, + "apy": 0.088969208529869, "asset": "0x0000000000000000000000000000000000000348", - "balance": "48065122070585428006541012", + "balance": "48065019722187699946803059", "balanceWeight": 1, - "earnings": "86338737391497210824390", - "earningsChange": "11372568185538602695466" + "earnings": "83753115842770896897558", + "earningsChange": "11270219787810542957513" }, { "id": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x0000000000000000000000000000000000000348:2022-04-05", @@ -6799,9 +6471,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "36711924140887324306829186", + "balance": "36711296692062866889056283", "balanceWeight": 1, - "earnings": "202963621379246335794005", + "earnings": "196320909999088382466660", "earningsChange": "0" }, { @@ -6812,9 +6484,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "55222421554068363336614509", + "balance": "55223761968063997930586325", "balanceWeight": 1, - "earnings": "391690160493278058387783", + "earnings": "387772579666110647611471", "earningsChange": "0" }, { @@ -6827,7 +6499,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "38951011567003641749178883", "balanceWeight": 1, - "earnings": "556395040449020106219294", + "earnings": "552618845976795751231106", "earningsChange": "12534948154655758481114" }, { @@ -6840,7 +6512,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "594989649247432448175216", + "earnings": "597750072758990628966798", "earningsChange": "0" }, { @@ -6853,7 +6525,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "594989649247432448175216", + "earnings": "597750072758990628966798", "earningsChange": "0" }, { @@ -6866,7 +6538,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "594989649247432448175216", + "earnings": "597750072758990628966798", "earningsChange": "0" }, { @@ -6879,7 +6551,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "28766773206513368614444843", "balanceWeight": 1, - "earnings": "594989649247432448175216", + "earnings": "597750072758990628966798", "earningsChange": "0" }, { @@ -6892,7 +6564,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "638211088388578212005487", + "earnings": "640159697483155653707970", "earningsChange": "0" }, { @@ -6905,7 +6577,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "638211088388578212005487", + "earnings": "640159697483155653707970", "earningsChange": "0" }, { @@ -6918,7 +6590,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "638211088388578212005487", + "earnings": "640159697483155653707970", "earningsChange": "0" }, { @@ -6931,7 +6603,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "3390410440760250097491950", "balanceWeight": 1, - "earnings": "653783116934404341925601", + "earnings": "655768324126203146241680", "earningsChange": "0" }, { @@ -6942,9 +6614,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5303246437706032479392803", + "balance": "5304271167623182366546359", "balanceWeight": 1, - "earnings": "659386989269983463871669", + "earnings": "661994566276133090656440", "earningsChange": "0" }, { @@ -6955,9 +6627,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "293494681395389464375190", + "balance": "293433894614838873358141", "balanceWeight": 1, - "earnings": "714726789357371466571860", + "earnings": "725391756285844410913752", "earningsChange": "0" }, { @@ -6968,9 +6640,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "294061733411969755665539", + "balance": "294042089161484148394766", "balanceWeight": 1, - "earnings": "715293841373951757862209", + "earnings": "725999950832489685950377", "earningsChange": "0" }, { @@ -6978,13 +6650,13 @@ "timestamp": "2023-03-21T23:59:59.999000Z", "blockNumber": 16879427, "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259", - "apr": 0, - "apy": 0, + "apr": 0.25923256758459656, + "apy": 0.2958160060572286, "asset": "0x0000000000000000000000000000000000000348", - "balance": "324413276496000000000000", + "balance": "324438429645000000000000", "balanceWeight": 1, - "earnings": "716878631535090256620929", - "earningsChange": "0" + "earnings": "727607873620249944924433", + "earningsChange": "230266960000000000000" }, { "id": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x0000000000000000000000000000000000000348:2023-04-15", @@ -6994,9 +6666,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "74549344010000000000000", + "balance": "74555302164000000000000", "balanceWeight": 1, - "earnings": "717088094988090256620929", + "earnings": "727772988929249944924433", "earningsChange": "0" }, { @@ -7004,13 +6676,13 @@ "timestamp": "2023-05-10T23:59:59.999000Z", "blockNumber": 17233413, "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259", - "apr": 0, - "apy": 0, + "apr": 0.18141976316065467, + "apy": 0.198864336520026, "asset": "0x0000000000000000000000000000000000000348", - "balance": "74665930689000000000000", + "balance": "74699186571000000000000", "balanceWeight": 1, - "earnings": "717204681667090256620929", - "earningsChange": "0" + "earnings": "727916873336249944924433", + "earningsChange": "37103104000000000000" }, { "id": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x0000000000000000000000000000000000000348:2023-06-04", @@ -7020,9 +6692,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "2046449778683207456133407", + "balance": "2046261915005786930012903", "balanceWeight": 1, - "earnings": "718990964526297712754336", + "earnings": "729490533302036874937336", "earningsChange": "0" }, { @@ -7033,9 +6705,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "516248633434209475181248", + "balance": "516487751722569655652977", "balanceWeight": 1, - "earnings": "740141984476572038346792", + "earnings": "747520792380199416007788", "earningsChange": "0" }, { @@ -7048,7 +6720,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7061,7 +6733,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7074,7 +6746,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7087,7 +6759,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7100,7 +6772,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7113,7 +6785,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7126,7 +6798,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7139,7 +6811,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7152,7 +6824,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7165,7 +6837,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7178,7 +6850,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7191,7 +6863,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7204,7 +6876,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7217,7 +6889,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7230,7 +6902,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "741066966678321723368639", + "earnings": "748271444313246259835159", "earningsChange": "0" }, { @@ -7238,59 +6910,59 @@ "timestamp": "2024-08-02T23:59:59.999000Z", "blockNumber": 20444294, "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259", - "apr": 0.0010285531356565847, - "apy": 0.0010290808281310238, + "apr": 0.0013220182013178872, + "apy": 0.0013228900569222102, "asset": "0x0000000000000000000000000000000000000348", "balance": "104034587315000000000000", "balanceWeight": 1, - "earnings": "741105859128321723368639", - "earningsChange": "292964000000000000" + "earnings": "748314005501246259835159", + "earningsChange": "376552000000000000" }, { "id": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x0000000000000000000000000000000000000348:2024-08-27", "timestamp": "2024-08-27T23:59:59.999000Z", "blockNumber": 20623367, "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259", - "apr": 0.037076322768552106, - "apy": 0.037770270720762555, + "apr": 0.03695835290489102, + "apy": 0.03764786472926129, "asset": "0x0000000000000000000000000000000000000348", - "balance": "100020215385000000000000", + "balance": "100014363986000000000000", "balanceWeight": 1, - "earnings": "741375559741321723368639", - "earningsChange": "10152996000000000000" + "earnings": "748577842501246259835159", + "earningsChange": "10120099000000000000" }, { "id": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x0000000000000000000000000000000000000348:2024-09-21", "timestamp": "2024-09-21T23:59:59.999000Z", "blockNumber": 20802389, "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259", - "apr": 0.05122154623935554, - "apy": 0.05255227731448864, + "apr": 0.05409778803251819, + "apy": 0.05558359243437483, "asset": "0x0000000000000000000000000000000000000348", - "balance": "99545126526000000000000", + "balance": "99535390061000000000000", "balanceWeight": 1, - "earnings": "741571770775321723368639", - "earningsChange": "13959905000000000000" + "earnings": "748771674947246259835159", + "earningsChange": "14742353000000000000" }, { "id": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259:0x0000000000000000000000000000000000000348:2024-10-16", "timestamp": "2024-10-16T23:59:59.999000Z", "blockNumber": 20981560, "strategy": "0x5e3646a1db86993f73e6b74a57d8640b69f7e259", - "apr": 0.0407551978810381, - "apy": 0.041594720988622935, + "apr": 0.040542098882849986, + "apy": 0.04137280653961972, "asset": "0x0000000000000000000000000000000000000348", - "balance": "99729031972000000000000", + "balance": "99722871821000000000000", "balanceWeight": 1, - "earnings": "741755676221321723368639", - "earningsChange": "11127930000000000000" + "earnings": "748959156707246259835159", + "earningsChange": "11069061000000000000" } ], "strategyBalances_ousd_0x5a4eee58744d1430876d5ca93cab5ccb763c037d": [ { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:15977753", - "blockNumber": 15977753, - "timestamp": "2022-11-15T20:15:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:15973776", + "blockNumber": 15973776, + "timestamp": "2022-11-15T06:54:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7299,9 +6971,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:17242564", - "blockNumber": 17242564, - "timestamp": "2023-05-12T07:10:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:17229576", + "blockNumber": 17229576, + "timestamp": "2023-05-10T11:01:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7310,64 +6982,64 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:18463284", - "blockNumber": 18463284, - "timestamp": "2023-10-30T13:30:35.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:18485376", + "blockNumber": 18485376, + "timestamp": "2023-11-02T15:46:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "931062441486530914", - "balanceETH": "51497", + "balance": "931331014196294246", + "balanceETH": "51531", "chainId": 1, "symbol": "DAI", "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:18879210", - "blockNumber": 18879210, - "timestamp": "2023-12-27T19:56:11.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:18951816", + "blockNumber": 18951816, + "timestamp": "2024-01-07T00:57:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "936958775881439914", - "balanceETH": "39917", + "balance": "938063754006822907", + "balanceETH": "41616", "chainId": 1, "symbol": "DAI", "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19059326", - "blockNumber": 19059326, - "timestamp": "2024-01-22T02:30:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19131216", + "blockNumber": 19131216, + "timestamp": "2024-02-01T04:28:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "939919052307982251", - "balanceETH": "38554", + "balance": "941193993153361838", + "balanceETH": "41709", "chainId": 1, "symbol": "DAI", "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19235773", - "blockNumber": 19235773, - "timestamp": "2024-02-15T20:40:11.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19310616", + "blockNumber": 19310616, + "timestamp": "2024-02-26T08:41:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "942926161890342962", - "balanceETH": "33370", + "balance": "944334990295044907", + "balanceETH": "30585", "chainId": 1, "symbol": "DAI", "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19419400", - "blockNumber": 19419400, - "timestamp": "2024-03-12T13:48:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19490016", + "blockNumber": 19490016, + "timestamp": "2024-03-22T11:58:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "948197948644296949", - "balanceETH": "23582", + "balance": "951661004306762060", + "balanceETH": "27870", "chainId": 1, "symbol": "DAI", "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19598124", - "blockNumber": 19598124, - "timestamp": "2024-04-06T17:17:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19669416", + "blockNumber": 19669416, + "timestamp": "2024-04-16T17:04:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7376,9 +7048,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19775030", - "blockNumber": 19775030, - "timestamp": "2024-05-01T11:38:23.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19848816", + "blockNumber": 19848816, + "timestamp": "2024-05-11T19:15:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7387,9 +7059,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:19952859", - "blockNumber": 19952859, - "timestamp": "2024-05-26T08:28:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20028216", + "blockNumber": 20028216, + "timestamp": "2024-06-05T21:08:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7398,9 +7070,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20128296", - "blockNumber": 20128296, - "timestamp": "2024-06-19T20:53:23.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20207616", + "blockNumber": 20207616, + "timestamp": "2024-06-30T22:53:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7409,9 +7081,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20305760", - "blockNumber": 20305760, - "timestamp": "2024-07-14T15:52:35.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20387016", + "blockNumber": 20387016, + "timestamp": "2024-07-26T00:03:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7420,9 +7092,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20481876", - "blockNumber": 20481876, - "timestamp": "2024-08-08T05:48:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20566416", + "blockNumber": 20566416, + "timestamp": "2024-08-20T01:00:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7431,9 +7103,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20656600", - "blockNumber": 20656600, - "timestamp": "2024-09-01T15:25:11.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20745816", + "blockNumber": 20745816, + "timestamp": "2024-09-14T02:17:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7442,9 +7114,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20829780", - "blockNumber": 20829780, - "timestamp": "2024-09-25T19:43:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:20925216", + "blockNumber": 20925216, + "timestamp": "2024-10-09T03:02:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7453,9 +7125,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21013308", - "blockNumber": 21013308, - "timestamp": "2024-10-21T10:18:35.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21104616", + "blockNumber": 21104616, + "timestamp": "2024-11-03T04:06:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7464,9 +7136,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21155292", - "blockNumber": 21155292, - "timestamp": "2024-11-10T05:51:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21239166", + "blockNumber": 21239166, + "timestamp": "2024-11-21T22:42:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7475,9 +7147,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21200067", - "blockNumber": 21200067, - "timestamp": "2024-11-16T11:50:11.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21284016", + "blockNumber": 21284016, + "timestamp": "2024-11-28T05:00:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7486,9 +7158,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21244842", - "blockNumber": 21244842, - "timestamp": "2024-11-22T17:45:23.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21328866", + "blockNumber": 21328866, + "timestamp": "2024-12-04T11:34:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7497,9 +7169,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21289617", - "blockNumber": 21289617, - "timestamp": "2024-11-28T23:56:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21373716", + "blockNumber": 21373716, + "timestamp": "2024-12-10T17:52:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7508,9 +7180,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21308341", - "blockNumber": 21308341, - "timestamp": "2024-12-01T14:44:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21390738", + "blockNumber": 21390738, + "timestamp": "2024-12-13T02:55:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7519,9 +7191,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21312066", - "blockNumber": 21312066, - "timestamp": "2024-12-02T03:12:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21394463", + "blockNumber": 21394463, + "timestamp": "2024-12-13T15:23:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7530,9 +7202,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21315791", - "blockNumber": 21315791, - "timestamp": "2024-12-02T15:42:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21398188", + "blockNumber": 21398188, + "timestamp": "2024-12-14T03:52:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7541,9 +7213,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21319516", - "blockNumber": 21319516, - "timestamp": "2024-12-03T04:13:35.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21401913", + "blockNumber": 21401913, + "timestamp": "2024-12-14T16:21:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7552,9 +7224,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21323241", - "blockNumber": 21323241, - "timestamp": "2024-12-03T16:42:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21405638", + "blockNumber": 21405638, + "timestamp": "2024-12-15T04:49:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7563,9 +7235,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21326966", - "blockNumber": 21326966, - "timestamp": "2024-12-04T05:11:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21409363", + "blockNumber": 21409363, + "timestamp": "2024-12-15T17:19:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7574,9 +7246,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21330691", - "blockNumber": 21330691, - "timestamp": "2024-12-04T17:41:11.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21413088", + "blockNumber": 21413088, + "timestamp": "2024-12-16T05:47:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7585,9 +7257,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21334416", - "blockNumber": 21334416, - "timestamp": "2024-12-05T06:10:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21416813", + "blockNumber": 21416813, + "timestamp": "2024-12-16T18:16:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7596,9 +7268,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21338141", - "blockNumber": 21338141, - "timestamp": "2024-12-05T18:39:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21420538", + "blockNumber": 21420538, + "timestamp": "2024-12-17T06:43:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7607,9 +7279,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21341866", - "blockNumber": 21341866, - "timestamp": "2024-12-06T07:09:11.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21424263", + "blockNumber": 21424263, + "timestamp": "2024-12-17T19:11:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7618,9 +7290,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21345591", - "blockNumber": 21345591, - "timestamp": "2024-12-06T19:37:23.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21427988", + "blockNumber": 21427988, + "timestamp": "2024-12-18T07:40:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7629,9 +7301,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21349125", - "blockNumber": 21349125, - "timestamp": "2024-12-07T07:28:23.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21431436", + "blockNumber": 21431436, + "timestamp": "2024-12-18T19:15:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7640,9 +7312,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21351000", - "blockNumber": 21351000, - "timestamp": "2024-12-07T13:45:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21433286", + "blockNumber": 21433286, + "timestamp": "2024-12-19T01:27:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7651,9 +7323,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21352875", - "blockNumber": 21352875, - "timestamp": "2024-12-07T20:03:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21435136", + "blockNumber": 21435136, + "timestamp": "2024-12-19T07:40:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7662,9 +7334,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21354750", - "blockNumber": 21354750, - "timestamp": "2024-12-08T02:21:11.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21436986", + "blockNumber": 21436986, + "timestamp": "2024-12-19T13:52:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7673,9 +7345,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21356060", - "blockNumber": 21356060, - "timestamp": "2024-12-08T06:44:11.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21438356", + "blockNumber": 21438356, + "timestamp": "2024-12-19T18:28:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7684,9 +7356,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21356160", - "blockNumber": 21356160, - "timestamp": "2024-12-08T07:04:23.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21438456", + "blockNumber": 21438456, + "timestamp": "2024-12-19T18:48:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7695,9 +7367,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21356260", - "blockNumber": 21356260, - "timestamp": "2024-12-08T07:24:23.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21438556", + "blockNumber": 21438556, + "timestamp": "2024-12-19T19:08:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7706,9 +7378,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21356360", - "blockNumber": 21356360, - "timestamp": "2024-12-08T07:44:47.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21438656", + "blockNumber": 21438656, + "timestamp": "2024-12-19T19:28:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7717,9 +7389,9 @@ "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d" }, { - "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21356465", - "blockNumber": 21356465, - "timestamp": "2024-12-08T08:05:59.000000Z", + "id": "1:0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x6b175474e89094c44da98b954eedeac495271d0f:21438756", + "blockNumber": 21438756, + "timestamp": "2024-12-19T19:48:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -7747,38 +7419,38 @@ "timestamp": "2022-12-06T23:59:59.999000Z", "blockNumber": 16129194, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0, - "apy": 0, + "apr": 0.08704876174228188, + "apy": 0.09093856045570892, "asset": "0x0000000000000000000000000000000000000348", - "balance": "6341232564671139852461929", + "balance": "6342633664066939987372191", "balanceWeight": 1, - "earnings": "487377092229897840368", - "earningsChange": "0" + "earnings": "1695378065883033771145", + "earningsChange": "1511617814214439267356" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2022-12-31", "timestamp": "2022-12-31T23:59:59.999000Z", "blockNumber": 16308189, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0.004691510752553973, - "apy": 0.004702502847716561, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "13659060103271968909124980", + "balance": "13658884657338103020365032", "balanceWeight": 1, - "earnings": "22413576193773841781521", - "earningsChange": "175445933865888759948" + "earnings": "24274211947017591949605", + "earningsChange": "0" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2023-01-25", "timestamp": "2023-01-25T23:59:59.999000Z", "blockNumber": 16487269, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0.40587164695225664, - "apy": 0.5002718249659828, + "apr": 0.40580419406716417, + "apy": 0.5001707430266737, "asset": "0x0000000000000000000000000000000000000348", - "balance": "2824516080734682792641945", + "balance": "2824985572577115414429785", "balanceWeight": 1, - "earnings": "51853236522521349462489", + "earnings": "51697852448545481580350", "earningsChange": "3138647484000000000000" }, { @@ -7791,7 +7463,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "7251262160649667421881155", "balanceWeight": 1, - "earnings": "72695038970639775760019", + "earnings": "76707886950493168179267", "earningsChange": "0" }, { @@ -7802,9 +7474,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1002078965156411038244097", + "balance": "1002190061756221606427687", "balanceWeight": 1, - "earnings": "89328597123713413646511", + "earnings": "91553744248715458446749", "earningsChange": "0" }, { @@ -7812,13 +7484,13 @@ "timestamp": "2023-04-10T23:59:59.999000Z", "blockNumber": 17021180, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0.05673784256311887, - "apy": 0.05837364868679673, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "11142259917424614357828873", + "balance": "11139905246924321957871183", "balanceWeight": 1, - "earnings": "101947810693388309033637", - "earningsChange": "1730835835708377112615" + "earnings": "101562545482292373989953", + "earningsChange": "0" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2023-05-05", @@ -7830,7 +7502,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "110433959647368817948437", + "earnings": "110950760610860110844187", "earningsChange": "0" }, { @@ -7843,7 +7515,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "110433959647368817948437", + "earnings": "110950760610860110844187", "earningsChange": "0" }, { @@ -7856,7 +7528,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "116119315109368817948437", + "earnings": "116636116072860110844187", "earningsChange": "0" }, { @@ -7867,9 +7539,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1671416089013092689708961", + "balance": "1671006999997999912225287", "balanceWeight": 1, - "earnings": "116528404124461595432111", + "earnings": "116636116072860110844187", "earningsChange": "0" }, { @@ -7880,9 +7552,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5541030959295269806264928", + "balance": "5540562182800372620679565", "balanceWeight": 1, - "earnings": "132426299918725227492261", + "earnings": "126027578905115789084324", "earningsChange": "0" }, { @@ -7890,13 +7562,13 @@ "timestamp": "2023-09-07T23:59:59.999000Z", "blockNumber": 18087986, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0, - "apy": 0, + "apr": 0.24235516714602268, + "apy": 0.27414427632000393, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5265803166344406731954033", + "balance": "5267398166591601200996067", "balanceWeight": 1, - "earnings": "146842700493116095163861", - "earningsChange": "0" + "earnings": "142507756221598311383321", + "earningsChange": "3495088742201328161362" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2023-10-02", @@ -7906,9 +7578,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5279033990502061514340329", + "balance": "5278301620133676017815085", "balanceWeight": 1, - "earnings": "160073524650770877550157", + "earnings": "153411209763673128202339", "earningsChange": "0" }, { @@ -7919,9 +7591,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5294544848896017400938923", + "balance": "5296245038214579692129791", "balanceWeight": 1, - "earnings": "175584383044726764148751", + "earnings": "171354627844576802517045", "earningsChange": "0" }, { @@ -7932,9 +7604,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5062357630493321921086959", + "balance": "5060457272059710522298923", "balanceWeight": 1, - "earnings": "195377421414014833658850", + "earnings": "187547118461691182048240", "earningsChange": "0" }, { @@ -7942,65 +7614,65 @@ "timestamp": "2023-12-16T23:59:59.999000Z", "blockNumber": 18802045, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0.12717923877531906, - "apy": 0.13559540824800975, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "4946754069186213975084771", + "balance": "4944375192260012067649194", "balanceWeight": 1, - "earnings": "214701139213893700835777", - "earningsChange": "1722448780089661664497" + "earnings": "206392317768979540577626", + "earningsChange": "0" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2024-01-10", "timestamp": "2024-01-10T23:59:59.999000Z", "blockNumber": 18979977, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0.09762843920139758, - "apy": 0.10253866042670401, + "apr": 0.0957347662575338, + "apy": 0.1004533398603924, "asset": "0x0000000000000000000000000000000000000348", - "balance": "4642967771480798669825841", + "balance": "4643003872066407459172994", "balanceWeight": 1, - "earnings": "238656920804398470203234", - "earningsChange": "1241028601758537227069" + "earnings": "232763076871295006727813", + "earningsChange": "1216966161328155347771" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2024-02-04", "timestamp": "2024-02-04T23:59:59.999000Z", "blockNumber": 19158366, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0, - "apy": 0, + "apr": 0.08562763317202415, + "apy": 0.0893896634805118, "asset": "0x0000000000000000000000000000000000000348", - "balance": "20021674087965507353", + "balance": "20022384964691175843", "balanceWeight": 1, - "earnings": "252051367121656490458913", - "earningsChange": "0" + "earnings": "246121423313820963304829", + "earningsChange": "4693961492091785" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2024-02-29", "timestamp": "2024-02-29T23:59:59.999000Z", "blockNumber": 19336606, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0.11968655385204507, - "apy": 0.1271213995368139, + "apr": 0.12369894953963351, + "apy": 0.13165142934035678, "asset": "0x0000000000000000000000000000000000000348", - "balance": "20137393390249371464", + "balance": "20139491176655264643", "balanceWeight": 1, - "earnings": "252051482840958774323024", - "earningsChange": "6598700118938727" + "earnings": "246121540420032927393629", + "earningsChange": "6820626701754655" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2024-03-25", "timestamp": "2024-03-25T23:59:59.999000Z", "blockNumber": 19514905, "strategy": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d", - "apr": 0.11140394755273558, - "apy": 0.11782737932578091, + "apr": 0.08821277956428558, + "apy": 0.09220886679713924, "asset": "0x0000000000000000000000000000000000000348", - "balance": "20335143277830186569", + "balance": "20333486136419577825", "balanceWeight": 1, - "earnings": "252051680590846355138129", - "earningsChange": "6202368884874709" + "earnings": "246121734414992691706811", + "earningsChange": "4910809939289046" }, { "id": "0x5a4eee58744d1430876d5ca93cab5ccb763c037d:0x0000000000000000000000000000000000000348:2024-04-19", @@ -8012,7 +7684,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8025,7 +7697,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8038,7 +7710,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8051,7 +7723,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8064,7 +7736,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8077,7 +7749,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8090,7 +7762,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8103,7 +7775,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8116,7 +7788,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" }, { @@ -8129,15 +7801,15 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "252051742658814432015983", + "earnings": "246121798950453497498687", "earningsChange": "0" } ], "strategyBalances_ousd_0x79f2188ef9350a1dc11a062cca0abe90684b0197": [ { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:16353138", - "blockNumber": 16353138, - "timestamp": "2023-01-07T06:32:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:16375632", + "blockNumber": 16375632, + "timestamp": "2023-01-10T09:52:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -8146,9 +7818,9 @@ "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:17641944", - "blockNumber": 17641944, - "timestamp": "2023-07-07T12:32:11.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:17631432", + "blockNumber": 17631432, + "timestamp": "2023-07-06T01:06:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -8157,419 +7829,419 @@ "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:18754892", - "blockNumber": 18754892, - "timestamp": "2023-12-10T09:23:47.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:18829824", + "blockNumber": 18829824, + "timestamp": "2023-12-20T21:35:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "8718940881479889799", - "balanceETH": "372167", + "balance": "8743285783613863215", + "balanceETH": "400215", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:18937398", - "blockNumber": 18937398, - "timestamp": "2024-01-05T00:03:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19009224", + "blockNumber": 19009224, + "timestamp": "2024-01-15T02:12:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "8774001185317429928", - "balanceETH": "386056", + "balance": "8796254025083711494", + "balanceETH": "351032", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19115564", - "blockNumber": 19115564, - "timestamp": "2024-01-29T23:50:59.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19188624", + "blockNumber": 19188624, + "timestamp": "2024-02-09T05:54:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "8823677120203187801", - "balanceETH": "381376", + "balance": "8836286269520528753", + "balanceETH": "361236", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19292789", - "blockNumber": 19292789, - "timestamp": "2024-02-23T20:51:23.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19368024", + "blockNumber": 19368024, + "timestamp": "2024-03-05T09:19:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "8863330116064827953", - "balanceETH": "300856", + "balance": "8885989691466615939", + "balanceETH": "240392", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19476600", - "blockNumber": 19476600, - "timestamp": "2024-03-20T14:47:23.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19547424", + "blockNumber": 19547424, + "timestamp": "2024-03-30T14:40:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "8939957715331461321", - "balanceETH": "265561", + "balance": "8963733300522090384", + "balanceETH": "252840", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19650032", - "blockNumber": 19650032, - "timestamp": "2024-04-13T23:52:59.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19726824", + "blockNumber": 19726824, + "timestamp": "2024-04-24T17:49:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9024320394964891050", - "balanceETH": "297315", + "balance": "9048121137427337080", + "balanceETH": "283939", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19829723", - "blockNumber": 19829723, - "timestamp": "2024-05-09T03:11:47.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:19906224", + "blockNumber": 19906224, + "timestamp": "2024-05-19T19:59:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9087577659842900202", - "balanceETH": "302870", + "balance": "9116586905804045286", + "balanceETH": "297437", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20006941", - "blockNumber": 20006941, - "timestamp": "2024-06-02T21:52:23.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20085624", + "blockNumber": 20085624, + "timestamp": "2024-06-13T21:37:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9153447699752005913", - "balanceETH": "241925", + "balance": "9184039731688487877", + "balanceETH": "264298", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20185560", - "blockNumber": 20185560, - "timestamp": "2024-06-27T20:57:59.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20265024", + "blockNumber": 20265024, + "timestamp": "2024-07-08T23:21:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9227278445546341999", - "balanceETH": "268052", + "balance": "9240825269475514188", + "balanceETH": "305575", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20363040", - "blockNumber": 20363040, - "timestamp": "2024-07-22T15:43:23.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20444424", + "blockNumber": 20444424, + "timestamp": "2024-08-03T00:25:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9252849782890367246", - "balanceETH": "267879", + "balance": "9261245422661812769", + "balanceETH": "308751", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20537756", - "blockNumber": 20537756, - "timestamp": "2024-08-16T00:59:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20623824", + "blockNumber": 20623824, + "timestamp": "2024-08-28T01:31:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9267545762369220793", - "balanceETH": "359775", + "balance": "9278183057271009867", + "balanceETH": "381917", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20712504", - "blockNumber": 20712504, - "timestamp": "2024-09-09T10:37:23.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20803224", + "blockNumber": 20803224, + "timestamp": "2024-09-22T02:47:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9291786865824723147", - "balanceETH": "401182", + "balance": "9299605380170238867", + "balanceETH": "358974", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20887044", - "blockNumber": 20887044, - "timestamp": "2024-10-03T19:22:47.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:20982624", + "blockNumber": 20982624, + "timestamp": "2024-10-17T03:33:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9303701832479305920", - "balanceETH": "396961", + "balance": "9308521288949233111", + "balanceETH": "353621", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21070604", - "blockNumber": 21070604, - "timestamp": "2024-10-29T10:09:59.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21162024", + "blockNumber": 21162024, + "timestamp": "2024-11-11T04:23:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9318385787947613285", - "balanceETH": "355748", + "balance": "9357121305073761347", + "balanceETH": "293093", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21169620", - "blockNumber": 21169620, - "timestamp": "2024-11-12T05:49:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21253518", + "blockNumber": 21253518, + "timestamp": "2024-11-23T22:47:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9360892979607456543", - "balanceETH": "281360", + "balance": "9400936072042700075", + "balanceETH": "275532", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21214395", - "blockNumber": 21214395, - "timestamp": "2024-11-18T11:46:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21298368", + "blockNumber": 21298368, + "timestamp": "2024-11-30T05:20:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9384059896514624701", - "balanceETH": "306370", + "balance": "9414577990694123650", + "balanceETH": "258505", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21259170", - "blockNumber": 21259170, - "timestamp": "2024-11-24T17:43:11.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21343218", + "blockNumber": 21343218, + "timestamp": "2024-12-06T11:40:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9403459357976622795", - "balanceETH": "283758", + "balance": "9434654049706591143", + "balanceETH": "244583", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21303412", - "blockNumber": 21303412, - "timestamp": "2024-11-30T22:15:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21388068", + "blockNumber": 21388068, + "timestamp": "2024-12-12T17:58:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9416177372243639745", - "balanceETH": "253266", + "balance": "9453153083759599104", + "balanceETH": "238389", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21309533", - "blockNumber": 21309533, - "timestamp": "2024-12-01T18:44:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21391930", + "blockNumber": 21391930, + "timestamp": "2024-12-13T06:54:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9418120858051979832", - "balanceETH": "252688", + "balance": "9454115647444311823", + "balanceETH": "242082", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21313258", - "blockNumber": 21313258, - "timestamp": "2024-12-02T07:12:59.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21395655", + "blockNumber": 21395655, + "timestamp": "2024-12-13T19:23:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9419372193127686178", - "balanceETH": "256009", + "balance": "9455069815746126967", + "balanceETH": "241482", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21316983", - "blockNumber": 21316983, - "timestamp": "2024-12-02T19:42:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21399380", + "blockNumber": 21399380, + "timestamp": "2024-12-14T07:52:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9420614465438627107", - "balanceETH": "261836", + "balance": "9456027360215401514", + "balanceETH": "240457", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21320708", - "blockNumber": 21320708, - "timestamp": "2024-12-03T08:13:11.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21403105", + "blockNumber": 21403105, + "timestamp": "2024-12-14T20:21:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9421832783796338017", - "balanceETH": "260475", + "balance": "9456984717550074250", + "balanceETH": "245266", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21324433", - "blockNumber": 21324433, - "timestamp": "2024-12-03T20:42:11.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21406830", + "blockNumber": 21406830, + "timestamp": "2024-12-15T08:48:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9423316724185629786", - "balanceETH": "262156", + "balance": "9458259942625907984", + "balanceETH": "246075", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21328158", - "blockNumber": 21328158, - "timestamp": "2024-12-04T09:11:59.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21410555", + "blockNumber": 21410555, + "timestamp": "2024-12-15T21:19:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9425258437797306312", - "balanceETH": "254632", + "balance": "9459755588271363849", + "balanceETH": "243986", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21331883", - "blockNumber": 21331883, - "timestamp": "2024-12-04T21:40:23.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21414280", + "blockNumber": 21414280, + "timestamp": "2024-12-16T09:47:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9427769287241067893", - "balanceETH": "244669", + "balance": "9460971102127013077", + "balanceETH": "240195", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21335608", - "blockNumber": 21335608, - "timestamp": "2024-12-05T10:10:11.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21418005", + "blockNumber": 21418005, + "timestamp": "2024-12-16T22:14:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9430113775442600370", - "balanceETH": "240562", + "balance": "9462073153200187437", + "balanceETH": "233675", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21339333", - "blockNumber": 21339333, - "timestamp": "2024-12-05T22:39:47.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21421730", + "blockNumber": 21421730, + "timestamp": "2024-12-17T10:42:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9432420727398661114", - "balanceETH": "248270", + "balance": "9462687852480108362", + "balanceETH": "236008", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21343058", - "blockNumber": 21343058, - "timestamp": "2024-12-06T11:08:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21425455", + "blockNumber": 21425455, + "timestamp": "2024-12-17T23:10:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9434555490288025020", - "balanceETH": "243354", + "balance": "9463301406954200397", + "balanceETH": "245241", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21346783", - "blockNumber": 21346783, - "timestamp": "2024-12-06T23:37:47.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21429180", + "blockNumber": 21429180, + "timestamp": "2024-12-18T11:40:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9436764171270344798", - "balanceETH": "235664", + "balance": "9463924657436140536", + "balanceETH": "243913", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21349725", - "blockNumber": 21349725, - "timestamp": "2024-12-07T09:28:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21432028", + "blockNumber": 21432028, + "timestamp": "2024-12-18T21:14:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9438299667151627504", - "balanceETH": "236825", + "balance": "9464402364805144690", + "balanceETH": "256305", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21351600", - "blockNumber": 21351600, - "timestamp": "2024-12-07T15:46:59.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21433878", + "blockNumber": 21433878, + "timestamp": "2024-12-19T03:27:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9438761321471078132", - "balanceETH": "235780", + "balance": "9464721871027390580", + "balanceETH": "258642", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21353475", - "blockNumber": 21353475, - "timestamp": "2024-12-07T22:04:47.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21435728", + "blockNumber": 21435728, + "timestamp": "2024-12-19T09:39:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9439223368298400341", - "balanceETH": "235385", + "balance": "9465043567526603233", + "balanceETH": "257912", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21355350", - "blockNumber": 21355350, - "timestamp": "2024-12-08T04:21:11.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21437578", + "blockNumber": 21437578, + "timestamp": "2024-12-19T15:51:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9439692670530594250", - "balanceETH": "236341", + "balance": "9465371037053178913", + "balanceETH": "261944", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21356092", - "blockNumber": 21356092, - "timestamp": "2024-12-08T06:50:35.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21438388", + "blockNumber": 21438388, + "timestamp": "2024-12-19T18:34:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9439879001507685776", - "balanceETH": "237894", + "balance": "9465562399957743328", + "balanceETH": "273072", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21356192", - "blockNumber": 21356192, - "timestamp": "2024-12-08T07:10:47.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21438488", + "blockNumber": 21438488, + "timestamp": "2024-12-19T18:54:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9439904594380033740", - "balanceETH": "237895", + "balance": "9465604428542202719", + "balanceETH": "269930", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21356292", - "blockNumber": 21356292, - "timestamp": "2024-12-08T07:30:47.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21438588", + "blockNumber": 21438588, + "timestamp": "2024-12-19T19:14:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9439930421698950837", - "balanceETH": "237282", + "balance": "9465645326550340450", + "balanceETH": "269931", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21356392", - "blockNumber": 21356392, - "timestamp": "2024-12-08T07:51:11.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21438688", + "blockNumber": 21438688, + "timestamp": "2024-12-19T19:34:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9439956765707097346", - "balanceETH": "237273", + "balance": "9465683684822880733", + "balanceETH": "272725", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" }, { - "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21356505", - "blockNumber": 21356505, - "timestamp": "2024-12-08T08:13:59.000000Z", + "id": "1:0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x6b175474e89094c44da98b954eedeac495271d0f:21438788", + "blockNumber": 21438788, + "timestamp": "2024-12-19T19:54:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "9439986209181043562", - "balanceETH": "237009", + "balance": "9465722043399812994", + "balanceETH": "278301", "chainId": 1, "symbol": "DAI", "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197" @@ -8597,9 +8269,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "15141404983449972263490335", + "balance": "15137765743480067696906272", "balanceWeight": 1, - "earnings": "8828929712935175020661", + "earnings": "6950195351277390602688", "earningsChange": "0" }, { @@ -8607,26 +8279,26 @@ "timestamp": "2023-02-23T23:59:59.999000Z", "blockNumber": 16694513, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.028533665960427612, - "apy": 0.028943503923650304, + "apr": 0.06048401977210954, + "apy": 0.062345301218111215, "asset": "0x0000000000000000000000000000000000000348", "balance": "8616393878451209024022442", "balanceWeight": 1, - "earnings": "61356939885487334240852", - "earningsChange": "673120615225803157308" + "earnings": "69232111081229007372631", + "earningsChange": "1426842266142791424802" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2023-03-20", "timestamp": "2023-03-20T23:59:59.999000Z", "blockNumber": 16872312, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.08413926499759872, - "apy": 0.08776983277280026, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "23932152037146109943602174", + "balance": "23926639008584261992167667", "balanceWeight": 1, - "earnings": "179212980209548588105115", - "earningsChange": "5513028561847951434507" + "earnings": "176339453568417302385360", + "earningsChange": "0" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2023-04-14", @@ -8638,7 +8310,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "10623726261666433700032282", "balanceWeight": 1, - "earnings": "216412237585192967550216", + "earnings": "213544983683507001654686", "earningsChange": "0" }, { @@ -8649,9 +8321,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "20886542878929642835999620", + "balance": "20885138917995858115454436", "balanceWeight": 1, - "earnings": "258153016611032628875951", + "earnings": "253881801775561942435237", "earningsChange": "0" }, { @@ -8664,7 +8336,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "346903799298400684269367", + "earnings": "355149517530007157723033", "earningsChange": "0" }, { @@ -8672,13 +8344,13 @@ "timestamp": "2023-06-28T23:59:59.999000Z", "blockNumber": 17581253, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0, - "apy": 0, + "apr": 0.23332568565865563, + "apy": 0.26269861914030224, "asset": "0x0000000000000000000000000000000000000348", - "balance": "19204888594153000000000000", + "balance": "19215378345535000000000000", "balanceWeight": 1, - "earnings": "361611408100400684269367", - "earningsChange": "0" + "earnings": "380346877714007157723033", + "earningsChange": "12274993368000000000000" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2023-07-23", @@ -8688,9 +8360,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "16099947599107000000000000", + "balance": "16102315775087000000000000", "balanceWeight": 1, - "earnings": "417909005116400684269367", + "earnings": "433356573523007157723033", "earningsChange": "0" }, { @@ -8698,13 +8370,13 @@ "timestamp": "2023-08-17T23:59:59.999000Z", "blockNumber": 17937967, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0, - "apy": 0, + "apr": 0.05609674962954936, + "apy": 0.05769545499061368, "asset": "0x0000000000000000000000000000000000000348", - "balance": "13395617104414571743179711", + "balance": "13397674780000476757062484", "balanceWeight": 1, - "earnings": "453846063141422308101502", - "earningsChange": "0" + "earnings": "488884171953993152265591", + "earningsChange": "2057675585905013882773" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2023-09-11", @@ -8714,9 +8386,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "8627599630523225009369548", + "balance": "8625934028694892870943473", "balanceWeight": 1, - "earnings": "484375618750751242797691", + "earnings": "512936591529574936593181", "earningsChange": "0" }, { @@ -8724,13 +8396,13 @@ "timestamp": "2023-10-06T23:59:59.999000Z", "blockNumber": 18294893, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.11507674350911906, - "apy": 0.12193920271809544, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "6311150886561296610033998", + "balance": "6310258611495186180352984", "balanceWeight": 1, - "earnings": "543812240473775498801286", - "earningsChange": "1988409833868689676429" + "earnings": "561402892543881573138389", + "earningsChange": "0" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2023-10-31", @@ -8740,9 +8412,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "6051040840804244226108883", + "balance": "6046619342511742338279135", "balanceWeight": 1, - "earnings": "567268906975183850762388", + "earnings": "580180524597143815876756", "earningsChange": "0" }, { @@ -8753,9 +8425,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "6176739259495212412304124", + "balance": "6180902121354952764778606", "balanceWeight": 1, - "earnings": "599573077333583300773271", + "earnings": "620947583089088598782997", "earningsChange": "0" }, { @@ -8763,202 +8435,202 @@ "timestamp": "2023-12-20T23:59:59.999000Z", "blockNumber": 18830533, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.10184594901868238, - "apy": 0.1071971727291332, + "apr": 0.10147328145328138, + "apy": 0.10678474789753634, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5935650342517882997506336", + "balance": "5935745394411783613863215", "balanceWeight": 1, - "earnings": "644145662063626707459198", - "earningsChange": "1655090875226728634003" + "earnings": "661452357853292269351321", + "earningsChange": "1649061089780472543816" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-01-14", "timestamp": "2024-01-14T23:59:59.999000Z", "blockNumber": 19008564, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.1388789291016484, - "apy": 0.1489546544300322, + "apr": 0.12393504685057599, + "apy": 0.1319185501798117, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5615229507621606336266389", + "balance": "5615129175796476586563789", "balanceWeight": 1, - "earnings": "680240798592956295508597", - "earningsChange": "2135077510413137420336" + "earnings": "697352110663591491341241", + "earningsChange": "1905301293563918200898" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-02-08", "timestamp": "2024-02-08T23:59:59.999000Z", "blockNumber": 19186866, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.04834107898873746, - "apy": 0.049525209298571404, + "apr": 0.047004649190552694, + "apy": 0.04812371216981792, "asset": "0x0000000000000000000000000000000000000348", - "balance": "10104513814622773643587991", + "balance": "10104789828023860565642401", "balanceWeight": 1, - "earnings": "726702572476837878140486", - "earningsChange": "1337339084066444858655" + "earnings": "743475104789321683672927", + "earningsChange": "1300402740615509669430" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-03-04", "timestamp": "2024-03-04T23:59:59.999000Z", "blockNumber": 19365246, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.17030435279063266, - "apy": 0.18561859727935004, + "apr": 0.16750175544315338, + "apy": 0.18230196921269592, "asset": "0x0000000000000000000000000000000000000348", - "balance": "9594460686252385050618955", + "balance": "9595789188773989393035784", "balanceWeight": 1, - "earnings": "790451418822420682506578", - "earningsChange": "4473589096640460609625" + "earnings": "807957659002974363257444", + "earningsChange": "4400579148478248746640" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-03-29", "timestamp": "2024-03-29T23:59:59.999000Z", "blockNumber": 19543073, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.1461889470542329, - "apy": 0.15738100619278228, + "apr": 0.19432554284855735, + "apy": 0.214428829695807, "asset": "0x0000000000000000000000000000000000000348", - "balance": "8093349063217769481796179", + "balance": "8093009209389864236843784", "balanceWeight": 1, - "earnings": "888721199415291462884006", - "earningsChange": "3299105415613139099950" + "earnings": "898415689605203487115644", + "earningsChange": "4385225028040864648559" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-04-23", "timestamp": "2024-04-23T23:59:59.999000Z", "blockNumber": 19721527, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.06928531440888919, - "apy": 0.07173490695046736, + "apr": 0.06973962654533439, + "apy": 0.07222182705614144, "asset": "0x0000000000000000000000000000000000000348", - "balance": "6485504449823536814760631", + "balance": "6485804738237957929380276", "balanceWeight": 1, - "earnings": "942390917982476621050395", - "earningsChange": "1230253839579954329703" + "earnings": "952657422469001754155697", + "earningsChange": "1238378097989132012168" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-05-18", "timestamp": "2024-05-18T23:59:59.999000Z", "blockNumber": 19900267, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.08266450309806173, - "apy": 0.08616717927748607, + "apr": 0.05133812357600326, + "apy": 0.05267497098140628, "asset": "0x0000000000000000000000000000000000000348", - "balance": "6146899875787994370352760", + "balance": "6147496752623729866947496", "balanceWeight": 1, - "earnings": "978314874693172888972566", - "earningsChange": "1391185280837914470823" + "earnings": "987959330786806791639687", + "earningsChange": "864068303816537097009" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-06-12", "timestamp": "2024-06-12T23:59:59.999000Z", "blockNumber": 20079184, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.1681888402120354, - "apy": 0.1831142166410089, + "apr": 0.16921323618508233, + "apy": 0.18432625496367328, "asset": "0x0000000000000000000000000000000000000348", - "balance": "6066268120667179834816399", + "balance": "6066263472976885791263673", "balanceWeight": 1, - "earnings": "1012724463681121657774349", - "earningsChange": "2845034269289958922732" + "earnings": "1021778380743689906080679", + "earningsChange": "2862357568923686943348" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-07-07", "timestamp": "2024-07-07T23:59:59.999000Z", "blockNumber": 20258073, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.037367905190012374, - "apy": 0.0380728795663432, + "apr": 0.03755887006921532, + "apy": 0.03827111362296054, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5633033545844673285752480", + "balance": "5633078762121073621682369", "balanceWeight": 1, - "earnings": "1046461013385283720893568", - "earningsChange": "576302980077266987788" + "earnings": "1056284121637584109317967", + "earningsChange": "579252767463042092018" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-08-01", "timestamp": "2024-08-01T23:59:59.999000Z", "blockNumber": 20437137, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.15614266510181396, - "apy": 0.16895396216958014, + "apr": 0.18680854524412355, + "apy": 0.20533892088978245, "asset": "0x0000000000000000000000000000000000000348", - "balance": "5490479042944193576853132", + "balance": "5490091257028579402496641", "balanceWeight": 1, - "earnings": "1072975131934843604639909", - "earningsChange": "2347154087477698501097" + "earnings": "1083331896081759821480897", + "earningsChange": "2807928709056300994606" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-08-26", "timestamp": "2024-08-26T23:59:59.999000Z", "blockNumber": 20616202, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.0968665373945779, - "apy": 0.1016991775831444, + "apr": 0.09861274855322055, + "apy": 0.1036241420748647, "asset": "0x0000000000000000000000000000000000000348", - "balance": "4532956490795938736694100", + "balance": "4532257016262681302518912", "balanceWeight": 1, - "earnings": "1100719901550797879451367", - "earningsChange": "1202167828674461952737" + "earnings": "1110377191164456662117167", + "earningsChange": "1223650435382695586395" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-09-20", "timestamp": "2024-09-20T23:59:59.999000Z", "blockNumber": 20795238, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.11610019366585023, - "apy": 0.12308767572284607, + "apr": 0.07151815610335838, + "apy": 0.07413013274275415, "asset": "0x0000000000000000000000000000000000000348", - "balance": "4553197111737964235949753", + "balance": "4552389061324497371141298", "balanceWeight": 1, - "earnings": "1121876538675679869397538", - "earningsChange": "1447302030038635477952" + "earnings": "1131425252409129221430071", + "earningsChange": "891385274554759758986" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-10-15", "timestamp": "2024-10-15T23:59:59.999000Z", "blockNumber": 20974401, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.095925298128268, - "apy": 0.10066297626251308, + "apr": 0.10595175458313144, + "apy": 0.1117511561073552, "asset": "0x0000000000000000000000000000000000000348", - "balance": "4364309912509648115314437", + "balance": "4363654204857587497869302", "balanceWeight": 1, - "earnings": "1142989124528267052615332", - "earningsChange": "1146195015691875057839" + "earnings": "1152690181023122652011185", + "earningsChange": "1265809224911132031767" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-11-09", "timestamp": "2024-11-09T23:59:59.999000Z", "blockNumber": 21153541, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.39467418786336206, - "apy": 0.48358448212059124, + "apr": 0.5146372151147107, + "apy": 0.6724255426397194, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1912615791100589516599287", + "balance": "1910992088566199947142568", "balanceWeight": 1, - "earnings": "1174294751830155846468212", - "earningsChange": "2066694275283276145486" + "earnings": "1183027813442682493852481", + "earningsChange": "2692587670269277957622" }, { "id": "0x79f2188ef9350a1dc11a062cca0abe90684b0197:0x0000000000000000000000000000000000000348:2024-12-04", "timestamp": "2024-12-04T23:59:59.999000Z", "blockNumber": 21332578, "strategy": "0x79f2188ef9350a1dc11a062cca0abe90684b0197", - "apr": 0.26431638723209117, - "apy": 0.30241573261368493, + "apr": 0.2649659785187939, + "apy": 0.30326143242498627, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1953578951968273819129107", + "balance": "1953573392024014951107036", "balanceWeight": 1, - "earnings": "1215257912697840148998032", - "earningsChange": "1413724656418372095096" + "earnings": "1225609116900497497816949", + "earningsChange": "1417195031966843596148" } ], "strategyBalances_ousd_0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44": [ { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:17887828", - "blockNumber": 17887828, - "timestamp": "2023-08-10T23:41:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:17882592", + "blockNumber": 17882592, + "timestamp": "2023-08-10T06:05:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -8967,53 +8639,53 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:18790602", - "blockNumber": 18790602, - "timestamp": "2023-12-15T09:23:23.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:18865704", + "blockNumber": 18865704, + "timestamp": "2023-12-25T22:27:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "25355568921821523417753", - "balanceETH": "1114351898", + "balance": "25385644951488555156250", + "balanceETH": "1111942020", "chainId": 1, "symbol": "DAI", "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:18973008", - "blockNumber": 18973008, - "timestamp": "2024-01-10T00:34:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19045104", + "blockNumber": 19045104, + "timestamp": "2024-01-20T02:31:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "25437539882499214198694", - "balanceETH": "1067817049", + "balance": "25468493558286487904317", + "balanceETH": "1024877649", "chainId": 1, "symbol": "DAI", "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19151254", - "blockNumber": 19151254, - "timestamp": "2024-02-03T23:59:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19224504", + "blockNumber": 19224504, + "timestamp": "2024-02-14T06:44:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "25512671758233510387641", - "balanceETH": "1111383007", + "balance": "25540845332677493458515", + "balanceETH": "966746536", "chainId": 1, "symbol": "DAI", "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19330125", - "blockNumber": 19330125, - "timestamp": "2024-02-29T02:12:59.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19403904", + "blockNumber": 19403904, + "timestamp": "2024-03-10T09:49:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "25589571615580707190529", - "balanceETH": "748187894", + "balance": "25601845543414413944942", + "balanceETH": "647777895", "chainId": 1, "symbol": "DAI", "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19512636", - "blockNumber": 19512636, - "timestamp": "2024-03-25T16:21:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19583304", + "blockNumber": 19583304, + "timestamp": "2024-04-04T15:31:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9022,9 +8694,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19685527", - "blockNumber": 19685527, - "timestamp": "2024-04-18T23:09:35.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19762704", + "blockNumber": 19762704, + "timestamp": "2024-04-29T18:18:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9033,9 +8705,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19865478", - "blockNumber": 19865478, - "timestamp": "2024-05-14T03:10:23.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:19942104", + "blockNumber": 19942104, + "timestamp": "2024-05-24T20:24:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9044,9 +8716,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20042706", - "blockNumber": 20042706, - "timestamp": "2024-06-07T21:42:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20121504", + "blockNumber": 20121504, + "timestamp": "2024-06-18T22:05:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9055,9 +8727,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20221531", - "blockNumber": 20221531, - "timestamp": "2024-07-02T21:32:35.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20300904", + "blockNumber": 20300904, + "timestamp": "2024-07-13T23:36:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9066,9 +8738,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20398840", - "blockNumber": 20398840, - "timestamp": "2024-07-27T15:39:59.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20480304", + "blockNumber": 20480304, + "timestamp": "2024-08-08T00:32:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9077,9 +8749,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20573586", - "blockNumber": 20573586, - "timestamp": "2024-08-21T01:03:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20659704", + "blockNumber": 20659704, + "timestamp": "2024-09-02T01:49:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9088,9 +8760,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20748314", - "blockNumber": 20748314, - "timestamp": "2024-09-14T10:41:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20839104", + "blockNumber": 20839104, + "timestamp": "2024-09-27T02:54:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9099,9 +8771,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:20922060", - "blockNumber": 20922060, - "timestamp": "2024-10-08T16:28:59.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21018504", + "blockNumber": 21018504, + "timestamp": "2024-10-22T03:42:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9110,9 +8782,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21106815", - "blockNumber": 21106815, - "timestamp": "2024-11-03T11:27:59.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21197904", + "blockNumber": 21197904, + "timestamp": "2024-11-16T04:35:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9121,9 +8793,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21178575", - "blockNumber": 21178575, - "timestamp": "2024-11-13T11:48:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21262488", + "blockNumber": 21262488, + "timestamp": "2024-11-25T04:49:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9132,9 +8804,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21223350", - "blockNumber": 21223350, - "timestamp": "2024-11-19T17:43:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21307338", + "blockNumber": 21307338, + "timestamp": "2024-12-01T11:23:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9143,9 +8815,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21268125", - "blockNumber": 21268125, - "timestamp": "2024-11-25T23:44:23.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21352188", + "blockNumber": 21352188, + "timestamp": "2024-12-07T17:45:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9154,9 +8826,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21306553", - "blockNumber": 21306553, - "timestamp": "2024-12-01T08:46:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21388950", + "blockNumber": 21388950, + "timestamp": "2024-12-12T20:55:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9165,9 +8837,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21310278", - "blockNumber": 21310278, - "timestamp": "2024-12-01T21:13:59.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21392675", + "blockNumber": 21392675, + "timestamp": "2024-12-13T09:24:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9176,9 +8848,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21314003", - "blockNumber": 21314003, - "timestamp": "2024-12-02T09:42:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21396400", + "blockNumber": 21396400, + "timestamp": "2024-12-13T21:53:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9187,9 +8859,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21317728", - "blockNumber": 21317728, - "timestamp": "2024-12-02T22:12:35.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21400125", + "blockNumber": 21400125, + "timestamp": "2024-12-14T10:21:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9198,9 +8870,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21321453", - "blockNumber": 21321453, - "timestamp": "2024-12-03T10:42:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21403850", + "blockNumber": 21403850, + "timestamp": "2024-12-14T22:50:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9209,9 +8881,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21325178", - "blockNumber": 21325178, - "timestamp": "2024-12-03T23:12:35.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21407575", + "blockNumber": 21407575, + "timestamp": "2024-12-15T11:19:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9220,9 +8892,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21328903", - "blockNumber": 21328903, - "timestamp": "2024-12-04T11:41:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21411300", + "blockNumber": 21411300, + "timestamp": "2024-12-15T23:48:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9231,9 +8903,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21332628", - "blockNumber": 21332628, - "timestamp": "2024-12-05T00:10:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21415025", + "blockNumber": 21415025, + "timestamp": "2024-12-16T12:17:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9242,9 +8914,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21336353", - "blockNumber": 21336353, - "timestamp": "2024-12-05T12:39:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21418750", + "blockNumber": 21418750, + "timestamp": "2024-12-17T00:44:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9253,9 +8925,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21340078", - "blockNumber": 21340078, - "timestamp": "2024-12-06T01:09:23.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21422475", + "blockNumber": 21422475, + "timestamp": "2024-12-17T13:11:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9264,9 +8936,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21343803", - "blockNumber": 21343803, - "timestamp": "2024-12-06T13:38:35.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21426200", + "blockNumber": 21426200, + "timestamp": "2024-12-18T01:41:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9275,9 +8947,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21347528", - "blockNumber": 21347528, - "timestamp": "2024-12-07T02:07:35.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21429925", + "blockNumber": 21429925, + "timestamp": "2024-12-18T14:10:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9286,9 +8958,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21350100", - "blockNumber": 21350100, - "timestamp": "2024-12-07T10:44:23.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21432398", + "blockNumber": 21432398, + "timestamp": "2024-12-18T22:28:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9297,9 +8969,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21351975", - "blockNumber": 21351975, - "timestamp": "2024-12-07T17:02:23.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21434248", + "blockNumber": 21434248, + "timestamp": "2024-12-19T04:41:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9308,9 +8980,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21353850", - "blockNumber": 21353850, - "timestamp": "2024-12-07T23:20:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21436098", + "blockNumber": 21436098, + "timestamp": "2024-12-19T10:54:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9319,9 +8991,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21355725", - "blockNumber": 21355725, - "timestamp": "2024-12-08T05:36:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21437948", + "blockNumber": 21437948, + "timestamp": "2024-12-19T17:05:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9330,9 +9002,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21356112", - "blockNumber": 21356112, - "timestamp": "2024-12-08T06:54:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21438408", + "blockNumber": 21438408, + "timestamp": "2024-12-19T18:38:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9341,9 +9013,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21356212", - "blockNumber": 21356212, - "timestamp": "2024-12-08T07:14:47.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21438508", + "blockNumber": 21438508, + "timestamp": "2024-12-19T18:58:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9352,9 +9024,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21356312", - "blockNumber": 21356312, - "timestamp": "2024-12-08T07:34:59.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21438608", + "blockNumber": 21438608, + "timestamp": "2024-12-19T19:18:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9363,9 +9035,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21356412", - "blockNumber": 21356412, - "timestamp": "2024-12-08T07:55:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21438708", + "blockNumber": 21438708, + "timestamp": "2024-12-19T19:38:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9374,9 +9046,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21356530", - "blockNumber": 21356530, - "timestamp": "2024-12-08T08:19:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21438808", + "blockNumber": 21438808, + "timestamp": "2024-12-19T19:58:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9385,9 +9057,9 @@ "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44" }, { - "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21356655", - "blockNumber": 21356655, - "timestamp": "2024-12-08T08:44:11.000000Z", + "id": "1:0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x6b175474e89094c44da98b954eedeac495271d0f:21438908", + "blockNumber": 21438908, + "timestamp": "2024-12-19T20:18:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", "balance": "0", "balanceETH": "0", @@ -9418,9 +9090,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "75093704724228591619827", + "balance": "75114855093727066484751", "balanceWeight": 1, - "earnings": "93704726228783297957", + "earnings": "114855095727258162881", "earningsChange": "0" }, { @@ -9428,26 +9100,26 @@ "timestamp": "2023-09-28T23:59:59.999000Z", "blockNumber": 18237665, "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44", - "apr": 0, - "apy": 0, + "apr": 0.3151358586843586, + "apy": 0.3702592945358041, "asset": "0x0000000000000000000000000000000000000348", - "balance": "75268214307436691289158", + "balance": "75378568469835395130010", "balanceWeight": 1, - "earnings": "268214309436882967288", - "earningsChange": "0" + "earnings": "378568471835586808140", + "earningsChange": "65036248873768910407" }, { "id": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x0000000000000000000000000000000000000348:2023-10-23", "timestamp": "2023-10-23T23:59:59.999000Z", "blockNumber": 18416406, "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44", - "apr": 0.28473717765517836, - "apy": 0.32926512152399634, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "75601055466910290394455", + "balance": "75553094295298632150847", "balanceWeight": 1, - "earnings": "601055468910482072585", - "earningsChange": "58936156499384026418" + "earnings": "553094297298823828977", + "earningsChange": "0" }, { "id": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x0000000000000000000000000000000000000348:2023-11-17", @@ -9457,9 +9129,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "75771859352136223673804", + "balance": "75830477022533364366496", "balanceWeight": 1, - "earnings": "771859354136415351934", + "earnings": "830477024533556044626", "earningsChange": "0" }, { @@ -9467,13 +9139,13 @@ "timestamp": "2023-12-12T23:59:59.999000Z", "blockNumber": 18773538, "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44", - "apr": 0.040937013917939136, - "apy": 0.041784095650132524, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "76051533620265998017746", + "balance": "75995353864450315687018", "balanceWeight": 1, - "earnings": "1051533622266189695876", - "earningsChange": "8523812978200850888" + "earnings": "995353866450507365148", + "earningsChange": "0" }, { "id": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x0000000000000000000000000000000000000348:2024-01-06", @@ -9493,26 +9165,26 @@ "timestamp": "2024-01-31T23:59:59.999000Z", "blockNumber": 19129888, "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44", - "apr": 0.03744688480483421, - "apy": 0.03815486100371701, + "apr": 0.033729937622686, + "apy": 0.03430363130813441, "asset": "0x0000000000000000000000000000000000000348", - "balance": "76526669833327888962949", + "balance": "76522182241327888962949", "balanceWeight": 1, - "earnings": "1526669835328080641079", - "earningsChange": "7845819000000000000" + "earnings": "1522182243328080641079", + "earningsChange": "7066635000000000000" }, { "id": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x0000000000000000000000000000000000000348:2024-02-25", "timestamp": "2024-02-25T23:59:59.999000Z", "blockNumber": 19308029, "strategy": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44", - "apr": 0.03473225867043156, - "apy": 0.03534075808858739, + "apr": 0.015967371510464845, + "apy": 0.01609517657854065, "asset": "0x0000000000000000000000000000000000000348", "balance": "76763826873404649111739", "balanceWeight": 1, "earnings": "1763826875404840789869", - "earningsChange": "7299606000000000000" + "earningsChange": "3355829000000000000" }, { "id": "0x76bf500b6305dc4ea851384d3d5502f1c7a0ed44:0x0000000000000000000000000000000000000348:2024-03-21", @@ -9524,7 +9196,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9537,7 +9209,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9550,7 +9222,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9563,7 +9235,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9576,7 +9248,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9589,7 +9261,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9602,7 +9274,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9615,7 +9287,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9628,7 +9300,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9641,7 +9313,7 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" }, { @@ -9654,447 +9326,447 @@ "asset": "0x0000000000000000000000000000000000000348", "balance": "0", "balanceWeight": 1, - "earnings": "-23702643311062600568666", + "earnings": "-23712888475999808321870", "earningsChange": "0" } ], "strategyBalances_ousd_0x6b69b755c629590ed59618a2712d8a2957ca98fc": [ { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:17887828", - "blockNumber": 17887828, - "timestamp": "2023-08-10T23:41:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:17932824", + "blockNumber": 17932824, + "timestamp": "2023-08-17T06:43:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "0", - "balanceETH": "0", + "balance": "25009057301616700132369", + "balanceETH": "1389578250", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:18790602", - "blockNumber": 18790602, - "timestamp": "2023-12-15T09:23:23.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:18872880", + "blockNumber": 18872880, + "timestamp": "2023-12-26T22:36:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "3708815439036376468195438", - "balanceETH": "162998729730", + "balance": "3588149136591930491703104", + "balanceETH": "161348302225", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:18973008", - "blockNumber": 18973008, - "timestamp": "2024-01-10T00:34:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19052280", + "blockNumber": 19052280, + "timestamp": "2024-01-21T02:33:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "3476186891430920994939822", - "balanceETH": "145923373328", + "balance": "3430991675990577575154865", + "balanceETH": "139106126511", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19151254", - "blockNumber": 19151254, - "timestamp": "2024-02-03T23:59:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19231680", + "blockNumber": 19231680, + "timestamp": "2024-02-15T06:56:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "3177553029876323235969323", - "balanceETH": "138420565087", + "balance": "3182351710345284419786167", + "balanceETH": "114383267524", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19330125", - "blockNumber": 19330125, - "timestamp": "2024-02-29T02:12:59.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19411080", + "blockNumber": 19411080, + "timestamp": "2024-03-11T09:52:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "3008504783430704013971955", - "balanceETH": "87962662857", + "balance": "2845851004908471917126863", + "balanceETH": "70966986509", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19512636", - "blockNumber": 19512636, - "timestamp": "2024-03-25T16:21:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19590480", + "blockNumber": 19590480, + "timestamp": "2024-04-05T15:38:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "2659020011964977432812855", - "balanceETH": "74112205773", + "balance": "2380240940073839332977956", + "balanceETH": "71976105786", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19685527", - "blockNumber": 19685527, - "timestamp": "2024-04-18T23:09:35.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19769880", + "blockNumber": 19769880, + "timestamp": "2024-04-30T18:21:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "2037933366098422427558359", - "balanceETH": "66426438067", + "balance": "1973447840510770932537851", + "balanceETH": "66118396448", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19865478", - "blockNumber": 19865478, - "timestamp": "2024-05-14T03:10:23.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:19949280", + "blockNumber": 19949280, + "timestamp": "2024-05-25T20:28:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1934554176541279183202259", - "balanceETH": "65525284513", + "balance": "1939799720984291730176113", + "balanceETH": "51594792978", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20042706", - "blockNumber": 20042706, - "timestamp": "2024-06-07T21:42:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20128680", + "blockNumber": 20128680, + "timestamp": "2024-06-19T22:10:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1945145234109444890836718", - "balanceETH": "52746503313", + "balance": "1914177588728211318705385", + "balanceETH": "53575916530", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20221531", - "blockNumber": 20221531, - "timestamp": "2024-07-02T21:32:35.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20308080", + "blockNumber": 20308080, + "timestamp": "2024-07-14T23:38:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1773013191536209451275531", - "balanceETH": "51915599261", + "balance": "1777537842424221302198495", + "balanceETH": "54424653659", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20398840", - "blockNumber": 20398840, - "timestamp": "2024-07-27T15:39:59.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20487480", + "blockNumber": 20487480, + "timestamp": "2024-08-09T00:33:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1760203055264133327715557", - "balanceETH": "53591142220", + "balance": "1692441584825170452206584", + "balanceETH": "63029909502", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20573586", - "blockNumber": 20573586, - "timestamp": "2024-08-21T01:03:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20666880", + "blockNumber": 20666880, + "timestamp": "2024-09-03T01:51:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1695974931410637902413985", - "balanceETH": "65683413118", + "balance": "1460168850283227973216030", + "balanceETH": "57627023845", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20748314", - "blockNumber": 20748314, - "timestamp": "2024-09-14T10:41:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20846280", + "blockNumber": 20846280, + "timestamp": "2024-09-28T02:54:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1462321784600386632853949", - "balanceETH": "60433372392", + "balance": "1465517942140734223634700", + "balanceETH": "54186060392", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:20922060", - "blockNumber": 20922060, - "timestamp": "2024-10-08T16:28:59.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21025680", + "blockNumber": 21025680, + "timestamp": "2024-10-23T03:45:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1467970865199329949340627", - "balanceETH": "60729954693", + "balance": "1471090002609842727356805", + "balanceETH": "56279490229", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21106815", - "blockNumber": 21106815, - "timestamp": "2024-11-03T11:27:59.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21205080", + "blockNumber": 21205080, + "timestamp": "2024-11-17T04:36:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1473535012824878847725412", - "balanceETH": "59943404321", + "balance": "1468041551974540563071256", + "balanceETH": "47439762752", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21178575", - "blockNumber": 21178575, - "timestamp": "2024-11-13T11:48:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21264282", + "blockNumber": 21264282, + "timestamp": "2024-11-25T10:49:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1467245060101367312744024", - "balanceETH": "46071494887", + "balance": "1470340585965120453403795", + "balanceETH": "41879710910", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21223350", - "blockNumber": 21223350, - "timestamp": "2024-11-19T17:43:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21309132", + "blockNumber": 21309132, + "timestamp": "2024-12-01T17:23:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1468677376994436292336190", - "balanceETH": "47074047287", + "balance": "1472212129194096079987485", + "balanceETH": "39618700608", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21268125", - "blockNumber": 21268125, - "timestamp": "2024-11-25T23:44:23.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21353982", + "blockNumber": 21353982, + "timestamp": "2024-12-07T23:46:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1470497387329665598892408", - "balanceETH": "42840000385", + "balance": "1474275479835516977634812", + "balanceETH": "36800864527", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21306553", - "blockNumber": 21306553, - "timestamp": "2024-12-01T08:46:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21389099", + "blockNumber": 21389099, + "timestamp": "2024-12-12T21:25:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1472093904648720590558350", - "balanceETH": "39746535425", + "balance": "1476332722796687440379276", + "balanceETH": "38046570599", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21310278", - "blockNumber": 21310278, - "timestamp": "2024-12-01T21:13:59.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21392824", + "blockNumber": 21392824, + "timestamp": "2024-12-13T09:54:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1472264778046209297327089", - "balanceETH": "39938126634", + "balance": "1476561812916688196957081", + "balanceETH": "38064286975", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21314003", - "blockNumber": 21314003, - "timestamp": "2024-12-02T09:42:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21396549", + "blockNumber": 21396549, + "timestamp": "2024-12-13T22:23:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1472435899819110305969187", - "balanceETH": "40652482758", + "balance": "1476790877415612063749116", + "balanceETH": "37931373686", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21317728", - "blockNumber": 21317728, - "timestamp": "2024-12-02T22:12:35.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21400274", + "blockNumber": 21400274, + "timestamp": "2024-12-14T10:51:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1472607270049416125483264", - "balanceETH": "40832454383", + "balance": "1477019732731563745214659", + "balanceETH": "37940205874", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21321453", - "blockNumber": 21321453, - "timestamp": "2024-12-03T10:42:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21403999", + "blockNumber": 21403999, + "timestamp": "2024-12-14T23:20:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1472778751662535597700645", - "balanceETH": "40790080306", + "balance": "1477248868269283295459517", + "balanceETH": "38226768964", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21325178", - "blockNumber": 21325178, - "timestamp": "2024-12-03T23:12:35.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21407724", + "blockNumber": 21407724, + "timestamp": "2024-12-15T11:49:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1472950161795834393537193", - "balanceETH": "40615127761", + "balance": "1477477916956397180591796", + "balanceETH": "38256335703", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21328903", - "blockNumber": 21328903, - "timestamp": "2024-12-04T11:41:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21411449", + "blockNumber": 21411449, + "timestamp": "2024-12-16T00:18:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1473121454690168038976776", - "balanceETH": "39408945155", + "balance": "1477707245990168930481651", + "balanceETH": "37230834062", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21332628", - "blockNumber": 21332628, - "timestamp": "2024-12-05T00:10:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21415174", + "blockNumber": 21415174, + "timestamp": "2024-12-16T12:47:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1473292584565144142554662", - "balanceETH": "38556066938", + "balance": "1477936488184364835636383", + "balanceETH": "37873600446", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21336353", - "blockNumber": 21336353, - "timestamp": "2024-12-05T12:39:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21418899", + "blockNumber": 21418899, + "timestamp": "2024-12-17T01:14:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1473464008760983123025794", - "balanceETH": "37504079414", + "balance": "1478165092443653466065076", + "balanceETH": "37254194824", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21340078", - "blockNumber": 21340078, - "timestamp": "2024-12-06T01:09:23.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21422624", + "blockNumber": 21422624, + "timestamp": "2024-12-17T13:42:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1473635452902795650709718", - "balanceETH": "38164210959", + "balance": "1478394038245804741002824", + "balanceETH": "36847493009", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21343803", - "blockNumber": 21343803, - "timestamp": "2024-12-06T13:38:35.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21426349", + "blockNumber": 21426349, + "timestamp": "2024-12-18T02:11:11.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1473806825491269815733522", - "balanceETH": "38010951836", + "balance": "1478623386984625141932451", + "balanceETH": "38192842085", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21347528", - "blockNumber": 21347528, - "timestamp": "2024-12-07T02:07:35.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21430074", + "blockNumber": 21430074, + "timestamp": "2024-12-18T14:40:47.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1473978172252937138389765", - "balanceETH": "36877459891", + "balance": "1478852955069886124999135", + "balanceETH": "38444261419", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21350100", - "blockNumber": 21350100, - "timestamp": "2024-12-07T10:44:23.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21432472", + "blockNumber": 21432472, + "timestamp": "2024-12-18T22:43:23.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474096410845299640056534", - "balanceETH": "36946752441", + "balance": "1479000772165996598989573", + "balanceETH": "40106063938", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21351975", - "blockNumber": 21351975, - "timestamp": "2024-12-07T17:02:23.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21434322", + "blockNumber": 21434322, + "timestamp": "2024-12-19T04:56:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474182899412798779007006", - "balanceETH": "36804450266", + "balance": "1479115090917015455894538", + "balanceETH": "40387237557", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21353850", - "blockNumber": 21353850, - "timestamp": "2024-12-07T23:20:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21436172", + "blockNumber": 21436172, + "timestamp": "2024-12-19T11:08:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474269347289604082866618", - "balanceETH": "36796288639", + "balance": "1479229173419589990217631", + "balanceETH": "39804577827", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21355725", - "blockNumber": 21355725, - "timestamp": "2024-12-08T05:36:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21438022", + "blockNumber": 21438022, + "timestamp": "2024-12-19T17:20:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474355525628704234975480", - "balanceETH": "37130169557", + "balance": "1479343142169452418323198", + "balanceETH": "41374269000", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21356112", - "blockNumber": 21356112, - "timestamp": "2024-12-08T06:54:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21438412", + "blockNumber": 21438412, + "timestamp": "2024-12-19T18:39:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474373375197481737057069", - "balanceETH": "37155683428", + "balance": "1479367223787009726331370", + "balanceETH": "42429731345", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21356212", - "blockNumber": 21356212, - "timestamp": "2024-12-08T07:14:47.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21438512", + "blockNumber": 21438512, + "timestamp": "2024-12-19T18:59:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474377952044797568899767", - "balanceETH": "37155798769", + "balance": "1479373351487630165673854", + "balanceETH": "42187289864", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21356312", - "blockNumber": 21356312, - "timestamp": "2024-12-08T07:34:59.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21438612", + "blockNumber": 21438612, + "timestamp": "2024-12-19T19:19:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474382574675008137934330", - "balanceETH": "37058606014", + "balance": "1479379479213632210266191", + "balanceETH": "42187464608", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21356412", - "blockNumber": 21356412, - "timestamp": "2024-12-08T07:55:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21438712", + "blockNumber": 21438712, + "timestamp": "2024-12-19T19:39:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474387197319712080282045", - "balanceETH": "37058722204", + "balance": "1479385606965015965241762", + "balanceETH": "42838569020", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21356530", - "blockNumber": 21356530, - "timestamp": "2024-12-08T08:19:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21438812", + "blockNumber": 21438812, + "timestamp": "2024-12-19T19:59:35.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474392689589685078196055", - "balanceETH": "37210722699", + "balance": "1479391734741781535734384", + "balanceETH": "43193800479", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" }, { - "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21356655", - "blockNumber": 21356655, - "timestamp": "2024-12-08T08:44:11.000000Z", + "id": "1:0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x6b175474e89094c44da98b954eedeac495271d0f:21438912", + "blockNumber": 21438912, + "timestamp": "2024-12-19T20:19:59.000000Z", "asset": "0x6b175474e89094c44da98b954eedeac495271d0f", - "balance": "1474398410725996123281694", - "balanceETH": "37209392691", + "balance": "1479397985100230873013895", + "balanceETH": "43862670860", "chainId": 1, "symbol": "DAI", "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc" @@ -10119,26 +9791,26 @@ "timestamp": "2023-09-04T23:59:59.999000Z", "blockNumber": 18066560, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.2716157537092968, - "apy": 0.31195030316299865, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1968555186988140672144639", + "balance": "1967553645622508621230494", "balanceWeight": 1, - "earnings": "3723924445580876287205", - "earningsChange": "1463903082360184940645" + "earnings": "2722383079948825373060", + "earningsChange": "0" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2023-09-29", "timestamp": "2023-09-29T23:59:59.999000Z", "blockNumber": 18244804, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.6467792073536731, - "apy": 0.9082893816187589, + "apr": 0.05149190687802907, + "apy": 0.052836844474417166, "asset": "0x0000000000000000000000000000000000000348", "balance": "1950174234022297237588493", "balanceWeight": 1, - "earnings": "10440201553694599847691", - "earningsChange": "3491598134927899788695" + "earnings": "10424944717170592482895", + "earningsChange": "278426754168259465575" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2023-10-24", @@ -10148,9 +9820,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "3833812413469432606760448", + "balance": "3831781568862094934128547", "balanceWeight": 1, - "earnings": "22005221330341929595366", + "earnings": "19974376723004256963465", "earningsChange": "0" }, { @@ -10161,9 +9833,9 @@ "apr": 0, "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "3794736253239607678543545", + "balance": "3795391224293291631426663", "balanceWeight": 1, - "earnings": "33740179860551475689937", + "earnings": "34395150914235428573055", "earningsChange": "0" }, { @@ -10171,202 +9843,202 @@ "timestamp": "2023-12-13T23:59:59.999000Z", "blockNumber": 18780675, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.048793198482520395, - "apy": 0.049999764273231495, + "apr": 0, + "apy": 0, "asset": "0x0000000000000000000000000000000000000348", - "balance": "3707822874123019538673104", + "balance": "3705062274347906492335388", "balanceWeight": 1, - "earnings": "47740917827285496340892", - "earningsChange": "495322484421942272850" + "earnings": "44980318052172450003176", + "earningsChange": "0" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-01-07", "timestamp": "2024-01-07T23:59:59.999000Z", "blockNumber": 18958621, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.04928136875443939, - "apy": 0.05051239923535511, + "apr": 0.04968817681590676, + "apy": 0.05093978517109532, "asset": "0x0000000000000000000000000000000000000348", - "balance": "3474789103438383225308129", + "balance": "3474800779991897183970950", "balanceWeight": 1, - "earnings": "59550493998695963583451", - "earningsChange": "468836038742023478132" + "earnings": "59562170552209922246272", + "earningsChange": "472707777019551126975" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-02-01", "timestamp": "2024-02-01T23:59:59.999000Z", "blockNumber": 19137015, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.048894900676331454, - "apy": 0.05010654270323145, + "apr": 0.019016419442140997, + "apy": 0.019197878626077136, "asset": "0x0000000000000000000000000000000000000348", - "balance": "3176701463546543379628273", + "balance": "3176358353382235825402719", "balanceWeight": 1, - "earnings": "71423755878117348816767", - "earningsChange": "425255311535740296543" + "earnings": "71080645713809794591213", + "earningsChange": "166411005382252474975" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-02-26", "timestamp": "2024-02-26T23:59:59.999000Z", "blockNumber": 19315169, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.04864403521365829, - "apy": 0.049843175441521614, + "apr": 0.049037283700027745, + "apy": 0.05025605064811667, "asset": "0x0000000000000000000000000000000000000348", - "balance": "3126733724086419478984079", + "balance": "3126843149140578471365304", "balanceWeight": 1, - "earnings": "81667076180730489698080", - "earningsChange": "416418741624566784870" + "earnings": "81776501234889482079305", + "earningsChange": "419799848295659748411" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-03-22", "timestamp": "2024-03-22T23:59:59.999000Z", "blockNumber": 19493590, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.11884480963077415, - "apy": 0.12617336023617032, + "apr": 0.10199938063827785, + "apy": 0.10736701741899735, "asset": "0x0000000000000000000000000000000000000348", - "balance": "2716485798491245231358931", + "balance": "2716357225207914163222853", "balanceWeight": 1, - "earnings": "99720030157157350155536", - "earningsChange": "906817346090524576522" + "earnings": "99591456873826282019458", + "earningsChange": "778244062759456440444" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-04-16", "timestamp": "2024-04-16T23:59:59.999000Z", "blockNumber": 19671470, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.12172050926275602, - "apy": 0.12941548832894156, + "apr": 0.12299405481464426, + "apy": 0.13085428440120306, "asset": "0x0000000000000000000000000000000000000348", - "balance": "2090240900444278717713158", + "balance": "2090053004597098286661518", "balanceWeight": 1, - "earnings": "120601416275634503620078", - "earningsChange": "696578198176689548959" + "earnings": "120413520428454072568438", + "earningsChange": "703803131588947223886" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-05-11", "timestamp": "2024-05-11T23:59:59.999000Z", "blockNumber": 19850229, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.09536300943273457, - "apy": 0.10004442180706241, + "apr": 0.09566760136985175, + "apy": 0.10037944987718084, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1933039856523972606446054", + "balance": "1933377796628799514255343", "balanceWeight": 1, - "earnings": "134404443648881791818150", - "earningsChange": "504696777745694705780" + "earnings": "134742383753708699627439", + "earningsChange": "506397306899903553691" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-06-05", "timestamp": "2024-06-05T23:59:59.999000Z", "blockNumber": 20029069, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.07682383575105745, - "apy": 0.07984310520062299, + "apr": 0.07706980008224262, + "apy": 0.08010868479863076, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1944325871079759101603097", + "balance": "1944315394216366755067884", "balanceWeight": 1, - "earnings": "145690458204668286975193", - "earningsChange": "408954336389877891761" + "earnings": "145679981341275940439980", + "earningsChange": "410261461270906496868" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-06-30", "timestamp": "2024-06-30T23:59:59.999000Z", "blockNumber": 20207948, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.0699868167586527, - "apy": 0.07248685186007608, + "apr": 0.07417816257435955, + "apy": 0.076990558030815, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1843918441455998996665197", + "balance": "1843939609261724987868116", "balanceWeight": 1, - "earnings": "155774931636208643082988", - "earningsChange": "353390859320831206018" + "earnings": "155796099441934634285907", + "earningsChange": "374558665046822408937" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-07-25", "timestamp": "2024-07-25T23:59:59.999000Z", "blockNumber": 20387000, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.06767051010972963, - "apy": 0.07000598526809165, + "apr": 0.06782093773695591, + "apy": 0.07016692598332375, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1759550747949918982010752", + "balance": "1759337804775103158661813", "balanceWeight": 1, - "earnings": "164628628222777260848501", - "earningsChange": "325995062772754606901" + "earnings": "164415685047961437499562", + "earningsChange": "326680190871829696634" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-08-19", "timestamp": "2024-08-19T23:59:59.999000Z", "blockNumber": 20566114, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.04224715447529348, - "apy": 0.04314971812181079, + "apr": 0.04212569180100184, + "apy": 0.0430230366927713, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1695432922638919670848046", + "balance": "1695432358763298829514392", "balanceWeight": 1, - "earnings": "172216418433230573968471", - "earningsChange": "196104631307751340175" + "earnings": "172215854557609732634817", + "earningsChange": "195540755686910006521" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-09-13", "timestamp": "2024-09-13T23:59:59.999000Z", "blockNumber": 20745133, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.05830416434819452, - "apy": 0.06003243991787399, + "apr": 0.05847420454788704, + "apy": 0.06021267455630408, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1462088032769868637895721", + "balance": "1462006341913365934365259", "balanceWeight": 1, - "earnings": "178257457921824855262590", - "earningsChange": "233390337998993712098" + "earnings": "178175767065322151732128", + "earningsChange": "234057927138494481656" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-10-08", "timestamp": "2024-10-08T23:59:59.999000Z", "blockNumber": 20924302, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.053506547339250365, - "apy": 0.05495976478494935, + "apr": 0.05571765496278608, + "apy": 0.05729462561868459, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1467970865199329949340627", + "balance": "1467850313974202039906061", "balanceWeight": 1, - "earnings": "184140290351286166707496", - "earningsChange": "215047371913593702246" + "earnings": "184019739126158257272930", + "earningsChange": "223915612131619040485" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-11-02", "timestamp": "2024-11-02T23:59:59.999000Z", "blockNumber": 21103392, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.05654214482112824, - "apy": 0.05816657972625827, + "apr": 0.053633031071466275, + "apy": 0.055093188902355816, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1473318610052668876995028", + "balance": "1473251885521682478654232", "balanceWeight": 1, - "earnings": "189488035204625094361897", - "earningsChange": "228075548849615115691" + "earnings": "189421310673638696021101", + "earningsChange": "216331181799469598185" }, { "id": "0x6b69b755c629590ed59618a2712d8a2957ca98fc:0x0000000000000000000000000000000000000348:2024-11-27", "timestamp": "2024-11-27T23:59:59.999000Z", "blockNumber": 21282522, "strategy": "0x6b69b755c629590ed59618a2712d8a2957ca98fc", - "apr": 0.07247357073672295, - "apy": 0.07515666034850033, + "apr": 0.07259416377750488, + "apy": 0.07528629883157589, "asset": "0x0000000000000000000000000000000000000348", - "balance": "1471081548401948122044042", + "balance": "1471072156352375084482006", "balanceWeight": 1, - "earnings": "195702161029148164174327", - "earningsChange": "291894682156310608618" + "earnings": "195692768979575126612291", + "earningsChange": "292378516213163192834" } ], "strategyBalances_ousd_0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0": [ { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:20685240", - "blockNumber": 20685240, - "timestamp": "2024-09-05T15:19:59.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:20688408", + "blockNumber": 20688408, + "timestamp": "2024-09-06T01:56:47.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "balance": "0", "balanceETH": "0", @@ -10375,493 +10047,1080 @@ "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:20858412", - "blockNumber": 20858412, - "timestamp": "2024-09-29T19:32:59.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:20867808", + "blockNumber": 20867808, + "timestamp": "2024-10-01T02:58:35.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "10004149633", - "balanceETH": "3779196", + "balance": "10005814367", + "balanceETH": "3816489", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21041956", - "blockNumber": 21041956, - "timestamp": "2024-10-25T10:12:47.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21047208", + "blockNumber": 21047208, + "timestamp": "2024-10-26T03:47:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2695286308899", - "balanceETH": "1071296718", + "balance": "2695587304716", + "balanceETH": "1105999105", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21162456", - "blockNumber": 21162456, - "timestamp": "2024-11-11T05:49:47.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21224814", + "blockNumber": 21224814, + "timestamp": "2024-11-19T22:37:35.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2686226311846", - "balanceETH": "855218517", + "balance": "2691484934422", + "balanceETH": "875001752", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21207231", - "blockNumber": 21207231, - "timestamp": "2024-11-17T11:49:11.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21269664", + "blockNumber": 21269664, + "timestamp": "2024-11-26T04:53:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2690016008424", - "balanceETH": "865489307", + "balance": "2694986626508", + "balanceETH": "782188175", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21252006", - "blockNumber": 21252006, - "timestamp": "2024-11-23T17:42:47.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21314514", + "blockNumber": 21314514, + "timestamp": "2024-12-02T11:25:35.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2693857426023", - "balanceETH": "785633569", + "balance": "2698939175376", + "balanceETH": "754870659", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21296256", - "blockNumber": 21296256, - "timestamp": "2024-11-29T22:14:47.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21359364", + "blockNumber": 21359364, + "timestamp": "2024-12-08T17:47:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2697532684218", - "balanceETH": "753545113", + "balance": "2703307940902", + "balanceETH": "681252391", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21308937", - "blockNumber": 21308937, - "timestamp": "2024-12-01T16:44:23.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21389546", + "blockNumber": 21389546, + "timestamp": "2024-12-12T22:55:23.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2698387670750", - "balanceETH": "723930064", + "balance": "2706919025196", + "balanceETH": "701427198", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21312662", - "blockNumber": 21312662, - "timestamp": "2024-12-02T05:13:11.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21393271", + "blockNumber": 21393271, + "timestamp": "2024-12-13T11:24:23.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2698710221694", - "balanceETH": "731942265", + "balance": "2707280475880", + "balanceETH": "693640747", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21316387", - "blockNumber": 21316387, - "timestamp": "2024-12-02T17:42:59.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21396996", + "blockNumber": 21396996, + "timestamp": "2024-12-13T23:53:11.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2699171429349", - "balanceETH": "747510339", + "balance": "2707682436707", + "balanceETH": "694518964", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21320112", - "blockNumber": 21320112, - "timestamp": "2024-12-03T06:13:23.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21400721", + "blockNumber": 21400721, + "timestamp": "2024-12-14T12:21:35.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2699627766635", - "balanceETH": "740669874", + "balance": "2707988935335", + "balanceETH": "694320482", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21323837", - "blockNumber": 21323837, - "timestamp": "2024-12-03T18:42:11.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21404446", + "blockNumber": 21404446, + "timestamp": "2024-12-15T00:49:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2700055621716", - "balanceETH": "757352158", + "balance": "2708407284391", + "balanceETH": "701401770", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21327562", - "blockNumber": 21327562, - "timestamp": "2024-12-04T07:12:35.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21408171", + "blockNumber": 21408171, + "timestamp": "2024-12-15T13:18:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2700560868975", - "balanceETH": "734505210", + "balance": "2708859448408", + "balanceETH": "700927069", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21331287", - "blockNumber": 21331287, - "timestamp": "2024-12-04T19:40:47.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21411896", + "blockNumber": 21411896, + "timestamp": "2024-12-16T01:48:23.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2700948188913", - "balanceETH": "703775115", + "balance": "2709224189623", + "balanceETH": "679520694", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21335012", - "blockNumber": 21335012, - "timestamp": "2024-12-05T08:10:23.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21415621", + "blockNumber": 21415621, + "timestamp": "2024-12-16T14:16:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2701317340948", - "balanceETH": "702656573", + "balance": "2709640985326", + "balanceETH": "693848704", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21338737", - "blockNumber": 21338737, - "timestamp": "2024-12-05T20:39:23.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21419346", + "blockNumber": 21419346, + "timestamp": "2024-12-17T02:44:23.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2701618269705", - "balanceETH": "709607119", + "balance": "2710040604104", + "balanceETH": "679615099", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21342462", - "blockNumber": 21342462, - "timestamp": "2024-12-06T09:08:23.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21423071", + "blockNumber": 21423071, + "timestamp": "2024-12-17T15:12:11.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2701905710222", - "balanceETH": "691164063", + "balance": "2710374004987", + "balanceETH": "679517718", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21346187", - "blockNumber": 21346187, - "timestamp": "2024-12-06T21:36:59.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21426796", + "blockNumber": 21426796, + "timestamp": "2024-12-18T03:41:11.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2702280632238", - "balanceETH": "669119586", + "balance": "2710655296046", + "balanceETH": "700882302", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21349425", - "blockNumber": 21349425, - "timestamp": "2024-12-07T08:28:35.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21430521", + "blockNumber": 21430521, + "timestamp": "2024-12-18T16:10:47.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2702546164781", - "balanceETH": "675904606", + "balance": "2710977561430", + "balanceETH": "701441879", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21351300", - "blockNumber": 21351300, - "timestamp": "2024-12-07T14:46:35.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21432694", + "blockNumber": 21432694, + "timestamp": "2024-12-18T23:28:11.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2702678281580", - "balanceETH": "675937649", + "balance": "2711406184297", + "balanceETH": "743504563", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21353175", - "blockNumber": 21353175, - "timestamp": "2024-12-07T21:04:47.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21434544", + "blockNumber": 21434544, + "timestamp": "2024-12-19T05:40:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2702816054568", - "balanceETH": "675972105", + "balance": "2711628218673", + "balanceETH": "739504776", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21355050", - "blockNumber": 21355050, - "timestamp": "2024-12-08T03:21:11.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21436394", + "blockNumber": 21436394, + "timestamp": "2024-12-19T11:53:47.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2702953034147", - "balanceETH": "674324141", + "balance": "2711745673136", + "balanceETH": "731625448", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356076", - "blockNumber": 21356076, - "timestamp": "2024-12-08T06:47:23.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21438168", + "blockNumber": 21438168, + "timestamp": "2024-12-19T17:50:35.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703030582013", - "balanceETH": "681182495", + "balance": "2711849959507", + "balanceETH": "771565001", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356176", - "blockNumber": 21356176, - "timestamp": "2024-12-08T07:07:35.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21438424", + "blockNumber": 21438424, + "timestamp": "2024-12-19T18:41:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703038218997", - "balanceETH": "681184419", + "balance": "2711866908030", + "balanceETH": "782358250", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356276", - "blockNumber": 21356276, - "timestamp": "2024-12-08T07:27:35.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21438524", + "blockNumber": 21438524, + "timestamp": "2024-12-19T19:01:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703045795599", - "balanceETH": "681186329", + "balance": "2711873498667", + "balanceETH": "774458325", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356376", - "blockNumber": 21356376, - "timestamp": "2024-12-08T07:47:59.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21438624", + "blockNumber": 21438624, + "timestamp": "2024-12-19T19:21:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703053523868", - "balanceETH": "681188276", + "balance": "2711880176770", + "balanceETH": "774460232", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356485", - "blockNumber": 21356485, - "timestamp": "2024-12-08T08:09:59.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21438724", + "blockNumber": 21438724, + "timestamp": "2024-12-19T19:41:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703061858427", - "balanceETH": "681190376", + "balance": "2711886475006", + "balanceETH": "782899726", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356610", - "blockNumber": 21356610, - "timestamp": "2024-12-08T08:35:11.000000Z", + "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21438824", + "blockNumber": 21438824, + "timestamp": "2024-12-19T20:01:59.000000Z", "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703071405391", - "balanceETH": "681192782", + "balance": "2711892828887", + "balanceETH": "791524730", "chainId": 1, "symbol": "USDC", "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" - }, + } + ], + "strategyDailyYields_ousd_0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0": [ { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356735", - "blockNumber": 21356735, - "timestamp": "2024-12-08T09:00:11.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703080772301", - "balanceETH": "681195143", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-09-05", + "timestamp": "2024-09-05T23:59:59.999000Z", + "blockNumber": 20687830, + "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", + "apr": 0, + "apy": 0, + "asset": "0x0000000000000000000000000000000000000348", + "balance": "0", + "balanceWeight": 1, + "earnings": "0", + "earningsChange": "0" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356860", - "blockNumber": 21356860, - "timestamp": "2024-12-08T09:25:23.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703090018729", - "balanceETH": "681197473", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-09-30", + "timestamp": "2024-09-30T23:59:59.999000Z", + "blockNumber": 20866918, + "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", + "apr": 0.04630649587148661, + "apy": 0.04739230989294074, + "asset": "0x0000000000000000000000000000000000000348", + "balance": "10004545173000000000000", + "balanceWeight": 1, + "earnings": "4545174000000000000", + "earningsChange": "1268379000000000000" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21356985", - "blockNumber": 21356985, - "timestamp": "2024-12-08T09:50:23.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703099134548", - "balanceETH": "681199770", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-10-25", + "timestamp": "2024-10-25T23:59:59.999000Z", + "blockNumber": 21046076, + "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", + "apr": 0.0384891614162276, + "apy": 0.039237357040200704, + "asset": "0x0000000000000000000000000000000000000348", + "balance": "2695205855265000000000000", + "balanceWeight": 1, + "earnings": "2205851698000000000000", + "earningsChange": "284014273000000000000" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21357110", - "blockNumber": 21357110, - "timestamp": "2024-12-08T10:15:23.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703108243124", - "balanceETH": "681202066", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-11-19", + "timestamp": "2024-11-19T23:59:59.999000Z", + "blockNumber": 21225225, + "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", + "apr": 0.15283587917064934, + "apy": 0.16509649466402299, + "asset": "0x0000000000000000000000000000000000000348", + "balance": "2691484934422000000000000", + "balanceWeight": 1, + "earnings": "13970313190000000000000", + "earningsChange": "1126229887000000000000" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21357235", - "blockNumber": 21357235, - "timestamp": "2024-12-08T10:40:23.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703117333641", - "balanceETH": "681204357", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" - }, + "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-12-14", + "timestamp": "2024-12-14T23:59:59.999000Z", + "blockNumber": 21404196, + "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", + "apr": 0.09252344526700196, + "apy": 0.09692600671513141, + "asset": "0x0000000000000000000000000000000000000348", + "balance": "2708368508125000000000000", + "balanceWeight": 1, + "earnings": "30747378352000000000000", + "earningsChange": "686071418000000000000" + } + ], + "strategyBalances_superoethb_0x80c864704dd06c3693ed5179190786ee38acf835": [ { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21357365", - "blockNumber": 21357365, - "timestamp": "2024-12-08T11:06:35.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703126860369", - "balanceETH": "681206757", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:18705600", + "blockNumber": 18705600, + "timestamp": "2024-08-21T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "0", + "balanceETH": "0", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21357490", - "blockNumber": 21357490, - "timestamp": "2024-12-08T11:31:47.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703136023352", - "balanceETH": "681209067", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:19396800", + "blockNumber": 19396800, + "timestamp": "2024-09-06T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "220543737996296379106", + "balanceETH": "220543737996296379106", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21357615", - "blockNumber": 21357615, - "timestamp": "2024-12-08T11:56:59.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703145186207", - "balanceETH": "681211376", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:20217600", + "blockNumber": 20217600, + "timestamp": "2024-09-25T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "2103348872088690530907", + "balanceETH": "2103348872088690530907", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21357740", - "blockNumber": 21357740, - "timestamp": "2024-12-08T12:21:59.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703155833217", - "balanceETH": "681214059", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:20908800", + "blockNumber": 20908800, + "timestamp": "2024-10-11T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "2106876839481615761250", + "balanceETH": "2106876839481615761250", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21357865", - "blockNumber": 21357865, - "timestamp": "2024-12-08T12:47:11.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703166414771", - "balanceETH": "681216725", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:21729600", + "blockNumber": 21729600, + "timestamp": "2024-10-30T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "4609930023584515968221", + "balanceETH": "4609930023584515968221", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21357990", - "blockNumber": 21357990, - "timestamp": "2024-12-08T13:12:11.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703176851874", - "balanceETH": "681219356", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:22420800", + "blockNumber": 22420800, + "timestamp": "2024-11-15T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "14407908704064411394679", + "balanceETH": "14407908704064411394679", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" }, { - "id": "1:0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:21358115", - "blockNumber": 21358115, - "timestamp": "2024-12-08T13:37:11.000000Z", - "asset": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "balance": "2703187290220", - "balanceETH": "681221986", - "chainId": 1, - "symbol": "USDC", - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0" + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:22820400", + "blockNumber": 22820400, + "timestamp": "2024-11-24T06:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "17600304528900900948734", + "balanceETH": "17600304528900900948734", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23058000", + "blockNumber": 23058000, + "timestamp": "2024-11-29T18:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "18008599657739582077308", + "balanceETH": "18008599657739582077308", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23295600", + "blockNumber": 23295600, + "timestamp": "2024-12-05T06:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "18015500271979621381626", + "balanceETH": "18015500271979621381626", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23565600", + "blockNumber": 23565600, + "timestamp": "2024-12-11T12:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "21010917145872538107245", + "balanceETH": "21010917145872538107245", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23637600", + "blockNumber": 23637600, + "timestamp": "2024-12-13T04:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "22008404785806479240719", + "balanceETH": "22008404785806479240719", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23660100", + "blockNumber": 23660100, + "timestamp": "2024-12-13T17:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "23003770324282847011391", + "balanceETH": "23003770324282847011391", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23682600", + "blockNumber": 23682600, + "timestamp": "2024-12-14T05:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "24991896224909894322901", + "balanceETH": "24991896224909894322901", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23705100", + "blockNumber": 23705100, + "timestamp": "2024-12-14T18:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "24991896224909894322901", + "balanceETH": "24991896224909894322901", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23727600", + "blockNumber": 23727600, + "timestamp": "2024-12-15T06:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "24992866222587270688842", + "balanceETH": "24992866222587270688842", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23750100", + "blockNumber": 23750100, + "timestamp": "2024-12-15T19:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "24992866222587270688842", + "balanceETH": "24992866222587270688842", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23772600", + "blockNumber": 23772600, + "timestamp": "2024-12-16T07:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "24995135643625293030677", + "balanceETH": "24995135643625293030677", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23795100", + "blockNumber": 23795100, + "timestamp": "2024-12-16T20:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "24995135643625293030677", + "balanceETH": "24995135643625293030677", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23817600", + "blockNumber": 23817600, + "timestamp": "2024-12-17T08:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "24995898098938473957366", + "balanceETH": "24995898098938473957366", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23840100", + "blockNumber": 23840100, + "timestamp": "2024-12-17T21:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "26928066459534307936958", + "balanceETH": "26928066459534307936958", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23862600", + "blockNumber": 23862600, + "timestamp": "2024-12-18T09:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "26930784467335376006798", + "balanceETH": "26930784467335376006798", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23883300", + "blockNumber": 23883300, + "timestamp": "2024-12-18T21:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "26930784467335376006798", + "balanceETH": "26930784467335376006798", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23893200", + "blockNumber": 23893200, + "timestamp": "2024-12-19T02:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "26930784467335376006798", + "balanceETH": "26930784467335376006798", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23904450", + "blockNumber": 23904450, + "timestamp": "2024-12-19T08:50:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "26931290312152373576357", + "balanceETH": "26931290312152373576357", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23915700", + "blockNumber": 23915700, + "timestamp": "2024-12-19T15:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "27921789756880838607072", + "balanceETH": "27921789756880838607072", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" + }, + { + "id": "8453:0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:23924550", + "blockNumber": 23924550, + "timestamp": "2024-12-19T20:00:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "27921789756880838607072", + "balanceETH": "27921789756880838607072", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835" } ], - "strategyDailyYields_ousd_0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0": [ + "strategyDailyYields_superoethb_0x80c864704dd06c3693ed5179190786ee38acf835": [ { - "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-09-05", - "timestamp": "2024-09-05T23:59:59.999000Z", - "blockNumber": 20687830, - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", + "id": "0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:2024-08-20", + "timestamp": "2024-08-20T23:59:59.999000Z", + "blockNumber": 18704526, + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835", "apr": 0, "apy": 0, - "asset": "0x0000000000000000000000000000000000000348", + "asset": "0x4200000000000000000000000000000000000006", "balance": "0", "balanceWeight": 1, "earnings": "0", "earningsChange": "0" }, { - "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-09-30", - "timestamp": "2024-09-30T23:59:59.999000Z", - "blockNumber": 20866918, - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", - "apr": 0.04640192033932444, - "apy": 0.04749224883162273, - "asset": "0x0000000000000000000000000000000000000348", - "balance": "10005420737000000000000", + "id": "0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:2024-09-14", + "timestamp": "2024-09-14T23:59:59.999000Z", + "blockNumber": 19784526, + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835", + "apr": 0.028953029948043607, + "apy": 0.029375062296698173, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "220741671090656119014", "balanceWeight": 1, - "earnings": "5420738000000000000", - "earningsChange": "1271104000000000000" + "earnings": "400836943775951055", + "earningsChange": "17497988265239060" }, { - "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-10-25", - "timestamp": "2024-10-25T23:59:59.999000Z", - "blockNumber": 21046076, - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", - "apr": 0.039567455413635155, - "apy": 0.04035844497438368, - "asset": "0x0000000000000000000000000000000000000348", - "balance": "2695286308899000000000000", + "id": "0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:2024-10-09", + "timestamp": "2024-10-09T23:59:59.999000Z", + "blockNumber": 20864526, + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835", + "apr": 0.09819496796933486, + "apy": 0.10316328977123246, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "2106620506840420495090", "balanceWeight": 1, - "earnings": "2286305332000000000000", - "earningsChange": "291979797000000000000" + "earnings": "5041959486851244418", + "earningsChange": "566350535777581382" }, { - "id": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0:0x0000000000000000000000000000000000000348:2024-11-19", - "timestamp": "2024-11-19T23:59:59.999000Z", - "blockNumber": 21225225, - "strategy": "0x603cdeaec82a60e3c4a10da6ab546459e5f64fa0", - "apr": 0.10420200891107351, - "apy": 0.10980813370471276, - "asset": "0x0000000000000000000000000000000000000348", - "balance": "2691517590811000000000000", + "id": "0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:2024-11-03", + "timestamp": "2024-11-03T23:59:59.999000Z", + "blockNumber": 21944526, + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835", + "apr": 0.027290832530322107, + "apy": 0.02766559047813888, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "6607991851002993864584", "balanceWeight": 1, - "earnings": "14002969579000000000000", - "earningsChange": "767861848000000000000" + "earnings": "10671314692935641034", + "earningsChange": "493737437282249836" + }, + { + "id": "0x80c864704dd06c3693ed5179190786ee38acf835:0x4200000000000000000000000000000000000006:2024-11-28", + "timestamp": "2024-11-28T23:59:59.999000Z", + "blockNumber": 23024526, + "strategy": "0x80c864704dd06c3693ed5179190786ee38acf835", + "apr": 0, + "apy": 0, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "18006784772205931036091", + "balanceWeight": 1, + "earnings": "33021018967822341127", + "earningsChange": "0" + } + ], + "strategyBalances_superoethb_0xf611cc500eee7e4e4763a05fe623e2363c86d2af": [ + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:19050126", + "blockNumber": 19050126, + "timestamp": "2024-08-28T23:59:59.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "0", + "balanceETH": "0", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:19742400", + "blockNumber": 19742400, + "timestamp": "2024-09-14T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "25055311800790397843866", + "balanceETH": "25055311800790397843866", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:20562126", + "blockNumber": 20562126, + "timestamp": "2024-10-02T23:59:59.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "132183603742889597256365", + "balanceETH": "132183603742889597256365", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:21254400", + "blockNumber": 21254400, + "timestamp": "2024-10-19T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "179705833338443518290709", + "balanceETH": "179705833338443518290709", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:22074126", + "blockNumber": 22074126, + "timestamp": "2024-11-06T23:59:59.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640752497", + "balanceETH": "147251149015586640752497", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:22680000", + "blockNumber": 22680000, + "timestamp": "2024-11-21T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640738212", + "balanceETH": "147251149015586640738212", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:22939200", + "blockNumber": 22939200, + "timestamp": "2024-11-27T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640738212", + "balanceETH": "147251149015586640738212", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23176800", + "blockNumber": 23176800, + "timestamp": "2024-12-02T12:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640738212", + "balanceETH": "147251149015586640738212", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23414400", + "blockNumber": 23414400, + "timestamp": "2024-12-08T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640738212", + "balanceETH": "147251149015586640738212", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23625000", + "blockNumber": 23625000, + "timestamp": "2024-12-12T21:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640738212", + "balanceETH": "147251149015586640738212", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23647500", + "blockNumber": 23647500, + "timestamp": "2024-12-13T10:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640738212", + "balanceETH": "147251149015586640738212", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23670000", + "blockNumber": 23670000, + "timestamp": "2024-12-13T22:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23692500", + "blockNumber": 23692500, + "timestamp": "2024-12-14T11:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23715000", + "blockNumber": 23715000, + "timestamp": "2024-12-14T23:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23737500", + "blockNumber": 23737500, + "timestamp": "2024-12-15T12:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23760000", + "blockNumber": 23760000, + "timestamp": "2024-12-16T00:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23782500", + "blockNumber": 23782500, + "timestamp": "2024-12-16T13:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23805000", + "blockNumber": 23805000, + "timestamp": "2024-12-17T01:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23827500", + "blockNumber": 23827500, + "timestamp": "2024-12-17T14:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23850000", + "blockNumber": 23850000, + "timestamp": "2024-12-18T02:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23872500", + "blockNumber": 23872500, + "timestamp": "2024-12-18T15:05:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23888250", + "blockNumber": 23888250, + "timestamp": "2024-12-18T23:50:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23898150", + "blockNumber": 23898150, + "timestamp": "2024-12-19T05:20:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23909400", + "blockNumber": 23909400, + "timestamp": "2024-12-19T11:35:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23920650", + "blockNumber": 23920650, + "timestamp": "2024-12-19T17:50:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + }, + { + "id": "8453:0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:23924910", + "blockNumber": 23924910, + "timestamp": "2024-12-19T20:12:47.000000Z", + "asset": "0x4200000000000000000000000000000000000006", + "balance": "137990057124634510947484", + "balanceETH": "137990057124634510947484", + "chainId": 8453, + "symbol": "WETH", + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af" + } + ], + "strategyDailyYields_superoethb_0xf611cc500eee7e4e4763a05fe623e2363c86d2af": [ + { + "id": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:2024-08-28", + "timestamp": "2024-08-28T23:59:59.999000Z", + "blockNumber": 19050126, + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af", + "apr": 0, + "apy": 0, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "0", + "balanceWeight": 1, + "earnings": "0", + "earningsChange": "0" + }, + { + "id": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:2024-09-22", + "timestamp": "2024-09-22T23:59:59.999000Z", + "blockNumber": 20130126, + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af", + "apr": 0, + "apy": 0, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "71679377293880235579785", + "balanceWeight": 1, + "earnings": "0", + "earningsChange": "0" + }, + { + "id": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:2024-10-17", + "timestamp": "2024-10-17T23:59:59.999000Z", + "blockNumber": 21210126, + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af", + "apr": 0, + "apy": 0, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "175764825355303155155403", + "balanceWeight": 1, + "earnings": "0", + "earningsChange": "0" + }, + { + "id": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:2024-11-11", + "timestamp": "2024-11-11T23:59:59.999000Z", + "blockNumber": 22290126, + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af", + "apr": 0, + "apy": 0, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640738212", + "balanceWeight": 1, + "earnings": "-32454684322856877538212", + "earningsChange": "0" + }, + { + "id": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af:0x4200000000000000000000000000000000000006:2024-12-06", + "timestamp": "2024-12-06T23:59:59.999000Z", + "blockNumber": 23370126, + "strategy": "0xf611cc500eee7e4e4763a05fe623e2363c86d2af", + "apr": 0, + "apy": 0, + "asset": "0x4200000000000000000000000000000000000006", + "balance": "147251149015586640738212", + "balanceWeight": 1, + "earnings": "-32454684322856877538212", + "earningsChange": "0" } ], - "strategyBalances_superoethb_0x80c864704dd06c3693ed5179190786ee38acf835": [], - "strategyDailyYields_superoethb_0x80c864704dd06c3693ed5179190786ee38acf835": [], - "strategyBalances_superoethb_0xf611cc500eee7e4e4763a05fe623e2363c86d2af": [], - "strategyDailyYields_superoethb_0xf611cc500eee7e4e4763a05fe623e2363c86d2af": [], "oeth_oTokens": [ { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-04-18T21:25:35.000Z", @@ -11624,6 +11883,21 @@ "date": "2024-11-24", "rebasingCreditsPerToken": "899852140159689426210274478", "txHash": "0x5d795ebb674964da7f39da799e17b0cbafd1758b73d99c15f896bdf761022dae" + }, + { + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-12-19", + "timestamp": "2024-12-19T15:20:35.000000Z", + "blockNumber": 21437422, + "chainId": 1, + "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", + "apr": 0.011373026619175997, + "apy": 0.011437766274332128, + "apy14DayAvg": 0.02490799409370695, + "apy30DayAvg": 0.027193737566766834, + "apy7DayAvg": 0.02228222785587795, + "date": "2024-12-19", + "rebasingCreditsPerToken": "898277954260345145824271260", + "txHash": "0x6a911838f5c5f10885b06bf459f858e7a2cb2afe8dcf004aff4714a4d22da0f1" } ], "oeth_oTokenHistories": [ @@ -12872,371 +13146,371 @@ ], "oeth_oTokenVaults": [ { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-17135551-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2023-04-27T05:50:35.000000Z", - "blockNumber": 17135551, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-17129112-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2023-04-26T08:07:23.000000Z", + "blockNumber": 17129112, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "436244244475053193" + "totalValue": "322206338304274399" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-18367249-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2023-10-17T02:54:47.000000Z", - "blockNumber": 18367249, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-18384912-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2023-10-19T14:16:47.000000Z", + "blockNumber": 18384912, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "40426617545825712562029" + "totalValue": "36775025242826452807427" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-18864940-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2023-12-25T19:53:11.000000Z", - "blockNumber": 18864940, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-18937464-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-01-05T00:16:47.000000Z", + "blockNumber": 18937464, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "38063397526185342580945" + "totalValue": "34206734543287231856490" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19045092-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-01-20T02:29:11.000000Z", - "blockNumber": 19045092, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19116864-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-01-30T04:13:59.000000Z", + "blockNumber": 19116864, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "39602988417248795915688" + "totalValue": "39628840070910251765373" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19221519-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-02-13T20:40:59.000000Z", - "blockNumber": 19221519, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19296264-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-02-24T08:30:23.000000Z", + "blockNumber": 19296264, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "44244844054567204148901" + "totalValue": "44411158027182944593561" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19405100-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-03-10T13:49:59.000000Z", - "blockNumber": 19405100, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19475664-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-03-20T11:38:59.000000Z", + "blockNumber": 19475664, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "44481330706385337323263" + "totalValue": "44528043731538000814618" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19583876-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-04-04T17:26:47.000000Z", - "blockNumber": 19583876, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19655064-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-04-14T16:48:23.000000Z", + "blockNumber": 19655064, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "44601651342625796780685" + "totalValue": "44629675023580519697474" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19760752-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-04-29T11:44:23.000000Z", - "blockNumber": 19760752, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19834464-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-05-09T19:05:47.000000Z", + "blockNumber": 19834464, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "44683140614416126184999" + "totalValue": "34608394550569771729930" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-19938561-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-05-24T08:30:35.000000Z", - "blockNumber": 19938561, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20013864-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-06-03T21:05:47.000000Z", + "blockNumber": 20013864, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "34325131880002435018228" + "totalValue": "34400008138074279717761" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20113980-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-06-17T20:46:35.000000Z", - "blockNumber": 20113980, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20193264-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-06-28T22:47:11.000000Z", + "blockNumber": 20193264, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "34579439135432142375429" + "totalValue": "36429489392722016364115" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20293061-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-07-12T21:17:47.000000Z", - "blockNumber": 20293061, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20372664-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-07-23T23:57:47.000000Z", + "blockNumber": 20372664, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "36533627364565190107103" + "totalValue": "37710024948074020461188" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20467548-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-08-06T05:50:23.000000Z", - "blockNumber": 20467548, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20552064-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-08-18T00:56:11.000000Z", + "blockNumber": 20552064, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "38373104364473797645701" + "totalValue": "32639001892369467489885" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20649440-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-08-31T15:27:23.000000Z", - "blockNumber": 20649440, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20731464-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-09-12T02:10:59.000000Z", + "blockNumber": 20731464, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "34748165993899784016374" + "totalValue": "33071759768191826181658" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20829780-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-09-25T19:43:47.000000Z", - "blockNumber": 20829780, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-20910864-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-10-07T03:03:11.000000Z", + "blockNumber": 20910864, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "31579220982253521914501" + "totalValue": "30739732725757903654093" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21006146-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-10-20T10:18:59.000000Z", - "blockNumber": 21006146, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21090264-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-11-01T03:59:59.000000Z", + "blockNumber": 21090264, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "30534094244943490644568" + "totalValue": "33516009145459452873247" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21151710-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-11-09T17:52:35.000000Z", - "blockNumber": 21151710, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21235578-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-11-21T10:42:23.000000Z", + "blockNumber": 21235578, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "34664402953580892662702" + "totalValue": "42198029587896157177167" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21196485-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-11-15T23:50:47.000000Z", - "blockNumber": 21196485, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21280428-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-11-27T16:58:23.000000Z", + "blockNumber": 21280428, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "38675783724567118446553" + "totalValue": "41828399793150442727720" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21241260-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-11-22T05:43:47.000000Z", - "blockNumber": 21241260, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21325278-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-03T23:32:35.000000Z", + "blockNumber": 21325278, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42151592131647485532167" + "totalValue": "42009544046764069346855" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21286035-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-11-28T11:54:59.000000Z", - "blockNumber": 21286035, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21370128-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-10T05:50:59.000000Z", + "blockNumber": 21370128, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42116998107226930010337" + "totalValue": "42030972993767303826179" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21306255-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-01T07:46:11.000000Z", - "blockNumber": 21306255, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21390440-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-13T01:54:59.000000Z", + "blockNumber": 21390440, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42006200495734229024267" + "totalValue": "45902331071933715133847" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21309980-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-01T20:14:23.000000Z", - "blockNumber": 21309980, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21394165-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-13T14:23:35.000000Z", + "blockNumber": 21394165, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42006203602785329166604" + "totalValue": "45950441961553907350495" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21313705-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-02T08:42:59.000000Z", - "blockNumber": 21313705, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21397890-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-14T02:52:23.000000Z", + "blockNumber": 21397890, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42008309651979883509004" + "totalValue": "46946310789670181808149" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21317430-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-02T21:12:47.000000Z", - "blockNumber": 21317430, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21401615-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-14T15:21:59.000000Z", + "blockNumber": 21401615, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42010026530275852429513" + "totalValue": "48930994825076346270170" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21321155-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-03T09:42:59.000000Z", - "blockNumber": 21321155, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21405340-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-15T03:49:23.000000Z", + "blockNumber": 21405340, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42013102642981673083825" + "totalValue": "49204604223471665829982" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21324880-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-03T22:12:35.000000Z", - "blockNumber": 21324880, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21409065-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-15T16:19:11.000000Z", + "blockNumber": 21409065, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42009544046764069346855" + "totalValue": "49203881915138481388306" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21328605-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-04T10:41:35.000000Z", - "blockNumber": 21328605, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21412790-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-16T04:47:59.000000Z", + "blockNumber": 21412790, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42014326285521915462621" + "totalValue": "49205586009555406710706" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21332330-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-04T23:10:11.000000Z", - "blockNumber": 21332330, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21416515-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-16T17:16:23.000000Z", + "blockNumber": 21416515, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42009192293248406350071" + "totalValue": "49205586009555406710706" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21336055-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-05T11:39:59.000000Z", - "blockNumber": 21336055, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21420240-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-17T05:43:47.000000Z", + "blockNumber": 21420240, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42013301001127537768309" + "totalValue": "49209169151437614227506" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21339780-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-06T00:09:35.000000Z", - "blockNumber": 21339780, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21423965-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-17T18:11:59.000000Z", + "blockNumber": 21423965, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42017118319899248833485" + "totalValue": "51089679447956616024568" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21343505-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-06T12:38:23.000000Z", - "blockNumber": 21343505, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21427690-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-18T06:40:35.000000Z", + "blockNumber": 21427690, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42017188345349099610285" + "totalValue": "51090773702988631438794" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21347150-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-07T00:51:11.000000Z", - "blockNumber": 21347150, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21431288-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-18T18:45:11.000000Z", + "blockNumber": 21431288, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42490554018198743317592" + "totalValue": "51090776029117135522798" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21349000-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-07T07:03:11.000000Z", - "blockNumber": 21349000, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21433138-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T00:57:23.000000Z", + "blockNumber": 21433138, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42490554018198743317592" + "totalValue": "51093779709433662716398" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21350850-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-07T13:15:47.000000Z", - "blockNumber": 21350850, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21434988-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T07:10:11.000000Z", + "blockNumber": 21434988, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42490554018198743317592" + "totalValue": "51093779709433662716398" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21352725-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-07T19:33:35.000000Z", - "blockNumber": 21352725, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21436838-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T13:23:11.000000Z", + "blockNumber": 21436838, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42043406779386601865880" + "totalValue": "52084914880230263669154" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21354175-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-08T00:25:35.000000Z", - "blockNumber": 21354175, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21438312-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T18:19:35.000000Z", + "blockNumber": 21438312, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42044455326681315779280" + "totalValue": "52070157113185497128529" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21354292-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-08T00:48:59.000000Z", - "blockNumber": 21354292, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21438448-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T18:46:47.000000Z", + "blockNumber": 21438448, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42044455326681315779280" + "totalValue": "52070157113185497128529" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21354392-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-08T01:08:59.000000Z", - "blockNumber": 21354392, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21438548-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T19:06:47.000000Z", + "blockNumber": 21438548, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42044455326681315779280" + "totalValue": "52070157113185497128529" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21354492-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-08T01:29:23.000000Z", - "blockNumber": 21354492, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21438648-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T19:26:47.000000Z", + "blockNumber": 21438648, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42044455326681315779280" + "totalValue": "52070157113185497128529" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21354592-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-08T01:49:23.000000Z", - "blockNumber": 21354592, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21438748-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T19:46:47.000000Z", + "blockNumber": 21438748, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42044455326681315779280" + "totalValue": "52070157113185497128529" }, { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21354715-0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "timestamp": "2024-12-08T02:14:11.000000Z", - "blockNumber": 21354715, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-21438848-0x39254033945aa2e4809cc2977e7087bee48bd7ab", + "timestamp": "2024-12-19T20:06:47.000000Z", + "blockNumber": 21438848, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "address": "0x39254033945aa2e4809cc2977e7087bee48bd7ab", - "totalValue": "42044455326681315779280" + "totalValue": "52070157113185497128529" } ], "oeth_oTokenDailyStats": [ { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-03-29", - "timestamp": "2023-03-29T23:59:59.000000Z", - "blockNumber": 16936360, + "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-04-18", + "timestamp": "2023-04-18T21:25:35.000000Z", + "blockNumber": 17076206, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "0", @@ -13253,315 +13527,290 @@ "cumulativeYield": "0", "dripperWETH": "0", "fees": "0", - "rateETH": "0", - "rateUSD": "0", - "yield": "0", - "marketCapUSD": 0 - }, - { - "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-04-23", - "timestamp": "2023-04-23T23:59:59.000000Z", - "blockNumber": 17112440, - "chainId": 1, - "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "321861997895245400", - "rebasingSupply": "321861997895245400", - "nonRebasingSupply": "0", - "wrappedSupply": "11000000000000000", - "amoSupply": "0", - "apr": 0, - "apy": 0, - "apy14": 0, - "apy30": 0, - "apy7": 0, - "cumulativeFees": "0", - "cumulativeYield": "0", - "dripperWETH": "0", - "fees": "0", "rateETH": "1000000000000000000", - "rateUSD": "1862399400000000000000", + "rateUSD": "2095600000000000000000", "yield": "0", - "marketCapUSD": 599435591762906300000 + "marketCapUSD": 0 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-05-18", - "timestamp": "2023-05-18T23:59:59.000000Z", - "blockNumber": 17289856, + "timestamp": "2023-05-18T12:49:35.000000Z", + "blockNumber": 17286539, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "2777777160065849525063", - "rebasingSupply": "1958492070675104244270", - "nonRebasingSupply": "819285089390745280793", - "wrappedSupply": "14159813053167777732", + "totalSupply": "2308318578849507556882", + "rebasingSupply": "1234300938055426002282", + "nonRebasingSupply": "1074017640794081554600", + "wrappedSupply": "31484986257477743", "amoSupply": "0", - "apr": 0.045688736403502295, - "apy": 0.046745554615847285, - "apy14": 0.13353924963577324, - "apy30": 19.564889149101226, - "apy7": 0.12945507312585244, - "cumulativeFees": "334369755908439075", - "cumulativeYield": "1337479023633756436", + "apr": 0.022745310006770048, + "apy": 0.0230052325093546, + "apy14": 0.13184351234245234, + "apy30": 19.564097805031007, + "apy7": 0.12606359853921065, + "cumulativeFees": "290273659412721370", + "cumulativeYield": "1161094637650885589", "dripperWETH": "0", - "fees": "37945154933759671", - "rateETH": "999353150969924088", - "rateUSD": "1801930000000000000000", - "yield": "151780619735038698", - "marketCapUSD": 5.005359998037456e+24 + "fees": "33693758117112577", + "rateETH": "999598968693416644", + "rateUSD": "1823790000000000000000", + "yield": "134775032468450318", + "marketCapUSD": 4.2098883409199434e+24 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-06-12", - "timestamp": "2023-06-12T23:59:59.000000Z", - "blockNumber": 17467383, + "timestamp": "2023-06-12T22:27:59.000000Z", + "blockNumber": 17466930, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "12993594283580750677230", - "rebasingSupply": "8421851777345969601102", - "nonRebasingSupply": "4571742506234781076128", + "rebasingSupply": "8422851777345969601102", + "nonRebasingSupply": "4570742506234781076128", "wrappedSupply": "590966552082011137824", - "amoSupply": "3120289394964461667672", + "amoSupply": "3119504506688302656597", "apr": 0.06642880615070446, "apy": 0.06867842269365898, "apy14": 0.10609468646698297, "apy30": 0.11151144817059905, "apy7": 0.09998918336613971, - "cumulativeFees": "9333310060405254920", - "cumulativeYield": "37333240241621020093", - "dripperWETH": "1365566210373186936", + "cumulativeFees": "7200108662541132375", + "cumulativeYield": "28800434650164529799", + "dripperWETH": "1242421639353452376", "fees": "381244127261176274", - "rateETH": "999454180947283524", - "rateUSD": "1741825224360000000000", + "rateETH": "999452957206238849", + "rateUSD": "1742441100000000000000", "yield": "1524976509044705098", - "marketCapUSD": 2.2632570278240853e+25 + "marketCapUSD": 2.2640572716436157e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-07-07", - "timestamp": "2023-07-07T23:59:59.000000Z", - "blockNumber": 17645346, + "timestamp": "2023-07-07T06:59:47.000000Z", + "blockNumber": 17640302, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "30064898534738920317163", - "rebasingSupply": "15182687489870589733523", - "nonRebasingSupply": "14882211044868330583640", + "totalSupply": "30062950302944483081445", + "rebasingSupply": "15202195961790894309516", + "nonRebasingSupply": "14860754341153588771929", "wrappedSupply": "1058608915163854548845", - "amoSupply": "11774847317982569688242", - "apr": 0.09039378902704126, - "apy": 0.09459300071689691, - "apy14": 0.09500959204746566, - "apy30": 0.09137426466727512, - "apy7": 0.0891111321127935, - "cumulativeFees": "26486383174392020862", - "cumulativeYield": "105945532697568084086", - "dripperWETH": "2943487260133364496", - "fees": "940296968042066164", - "rateETH": "999613706468163769", - "rateUSD": "1870023800000000000000", - "yield": "3761187872168264659", - "marketCapUSD": 5.6222075804546905e+25 + "amoSupply": "11766366116449385579451", + "apr": 0.13367997810544197, + "apy": 0.14299901256567904, + "apy14": 0.08957291216457244, + "apy30": 0.09376770873144775, + "apy7": 0.08766873212343088, + "cumulativeFees": "22558897331780167822", + "cumulativeYield": "90235589327120671732", + "dripperWETH": "0", + "fees": "841250609154619021", + "rateETH": "999609307705605748", + "rateUSD": "1856345446080000000000", + "yield": "3365002436618476084", + "marketCapUSD": 5.580722089060035e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-08-01", - "timestamp": "2023-08-01T23:59:59.000000Z", - "blockNumber": 17823594, + "timestamp": "2023-08-01T20:42:11.000000Z", + "blockNumber": 17822609, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "28855666351475623724477", - "rebasingSupply": "21941008499490068113300", - "nonRebasingSupply": "6914657851985555611177", + "rebasingSupply": "21987511389359453481200", + "nonRebasingSupply": "6868154962116170243277", "wrappedSupply": "1765303937324402862177", - "amoSupply": "5198892085009390594100", + "amoSupply": "5199318511887550677785", "apr": 0.06575590660882746, "apy": 0.067959681377048, "apy14": 0.07391181806119666, "apy30": 0.08136343805772485, "apy7": 0.07075023566949053, - "cumulativeFees": "53647693096561682491", - "cumulativeYield": "214590772386246730738", - "dripperWETH": "1860629991784112640", + "cumulativeFees": "47869218081270949270", + "cumulativeYield": "191476872325083797618", + "dripperWETH": "1499530489846418880", "fees": "1010371254079388332", - "rateETH": "999897552780925927", - "rateUSD": "1870256052220000000000", + "rateETH": "999897549731489161", + "rateUSD": "1850403516810000000000", "yield": "4041485016317553334", - "marketCapUSD": 5.396748463468829e+25 + "marketCapUSD": 5.339462649666648e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-08-26", - "timestamp": "2023-08-26T23:59:59.000000Z", - "blockNumber": 18002284, + "timestamp": "2023-08-26T09:05:35.000000Z", + "blockNumber": 17997834, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "44421437284279455385238", - "rebasingSupply": "20060426931406797157541", - "nonRebasingSupply": "24361010352872658227697", + "rebasingSupply": "20045420656053640481261", + "nonRebasingSupply": "24376016628225814903977", "wrappedSupply": "2789463964747299009347", - "amoSupply": "19836644929704010074626", + "amoSupply": "19849304223620946044102", "apr": 0.07267295360488796, "apy": 0.07537100694543075, "apy14": 0.08399535382211157, "apy30": 0.07803424579009442, "apy7": 0.08369001088537686, - "cumulativeFees": "80214076764342356071", - "cumulativeYield": "320856307057369425121", - "dripperWETH": "2641871583766878336", + "cumulativeFees": "74164035652441276488", + "cumulativeYield": "296656142609765106549", + "dripperWETH": "322584241284451968", "fees": "988832714543348663", - "rateETH": "1000354937948275245", - "rateUSD": "1646090000000000000000", + "rateETH": "1000359069669198458", + "rateUSD": "1648640000000000000000", "yield": "3955330858173394652", - "marketCapUSD": 7.3121683699279565e+25 + "marketCapUSD": 7.3234958364354485e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-09-20", - "timestamp": "2023-09-20T23:59:59.000000Z", - "blockNumber": 18180541, + "timestamp": "2023-09-20T08:43:23.000000Z", + "blockNumber": 18175983, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "45011304349886012337588", - "rebasingSupply": "23454580995043525208802", - "nonRebasingSupply": "21556723354842487128786", - "wrappedSupply": "3559968299939963732765", - "amoSupply": "18455570359882789498586", + "rebasingSupply": "23646573945273507675942", + "nonRebasingSupply": "21364730404612504661646", + "wrappedSupply": "3469787622446493315816", + "amoSupply": "19026818405272746858448", "apr": 0.08591790330306909, "apy": 0.08970585239716411, "apy14": 0.08197207117873084, "apy30": 0.07987441030708835, "apy7": 0.08283212031386086, - "cumulativeFees": "108340804241920372791", - "cumulativeYield": "433363216967681492057", - "dripperWETH": "4357995765403439232", + "cumulativeFees": "102290763130019293208", + "cumulativeYield": "409163052520077173485", + "dripperWETH": "442548874040184576", "fees": "1395224413380403073", - "rateETH": "999934889156604456", - "rateUSD": "1622742956000000000000", + "rateETH": "1000105844518867296", + "rateUSD": "1634458620710000000000", "yield": "5580897653521612296", - "marketCapUSD": 7.304177707414969e+25 + "marketCapUSD": 7.356911442407271e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-10-15", - "timestamp": "2023-10-15T23:59:59.000000Z", - "blockNumber": 18359212, + "timestamp": "2023-10-15T13:05:47.000000Z", + "blockNumber": 18355961, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "39773473735295748812167", - "rebasingSupply": "25268242215966637953043", - "nonRebasingSupply": "14505231519329110859124", - "wrappedSupply": "3881857796154083587339", - "amoSupply": "9894045754011370957172", + "rebasingSupply": "25283494488198005840603", + "nonRebasingSupply": "14489979247097742971564", + "wrappedSupply": "3879155630362797438828", + "amoSupply": "9896897025556568883292", "apr": 0.0497575191447745, "apy": 0.0510126523899741, "apy14": 0.056731023513177936, "apy30": 0.07510656370073258, "apy7": 0.04930965370229412, - "cumulativeFees": "137763587463829285865", - "cumulativeYield": "551054349855317144467", - "dripperWETH": "1637912334803350596", + "cumulativeFees": "131328837762764986928", + "cumulativeYield": "525315351051059948467", + "dripperWETH": "587606267925922680", "fees": "860265082434636172", - "rateETH": "999722578675828066", - "rateUSD": "1557174517110000000000", + "rateETH": "999724056712970463", + "rateUSD": "1553757473890000000000", "yield": "3441060329738544693", - "marketCapUSD": 6.193423975754642e+25 + "marketCapUSD": 6.179833207878338e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-11-09", - "timestamp": "2023-11-09T23:59:59.000000Z", - "blockNumber": 18537826, + "timestamp": "2023-11-09T10:50:23.000000Z", + "blockNumber": 18533900, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "42704954081078526982190", - "rebasingSupply": "30932462810818639557121", - "nonRebasingSupply": "11772491270259887425069", + "totalSupply": "42701183912474535021031", + "rebasingSupply": "31066865773927910445780", + "nonRebasingSupply": "11634318138546624575251", "wrappedSupply": "3879917285085872064572", - "amoSupply": "8524674972891604058676", - "apr": 0.06574406413368278, - "apy": 0.06794703644220035, - "apy14": 0.044950715134982784, - "apy30": 0.0460698775433156, - "apy7": 0.05058473743631515, - "cumulativeFees": "160790574352437883663", - "cumulativeYield": "643162297409751535739", - "dripperWETH": "1629933306313224360", - "fees": "1394593149355061692", - "rateETH": "1001017634375897861", - "rateUSD": "2130261800000000000000", - "yield": "5578372597420246774", - "marketCapUSD": 9.09727323496757e+25 + "amoSupply": "8408786867811423272269", + "apr": 0.04429462042233612, + "apy": 0.045287466126373355, + "apy14": 0.043332174398138, + "apy30": 0.045314558532788034, + "apy7": 0.04734765596262558, + "cumulativeFees": "152844561084090895801", + "cumulativeYield": "611378244336363584021", + "dripperWETH": "368420525814379080", + "fees": "940559428556669461", + "rateETH": "1000898560514636971", + "rateUSD": "1913562280000000000000", + "yield": "3762237714226677846", + "marketCapUSD": 8.171137484625409e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-12-04", - "timestamp": "2023-12-04T23:59:59.000000Z", - "blockNumber": 18716438, + "timestamp": "2023-12-04T03:31:35.000000Z", + "blockNumber": 18710337, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "39094408250756602613652", - "rebasingSupply": "26062680246979661354775", - "nonRebasingSupply": "13031728003776941258877", + "totalSupply": "39089833858406980521369", + "rebasingSupply": "26104746251622397838779", + "nonRebasingSupply": "12985087606784582682590", "wrappedSupply": "2582556025306315418140", - "amoSupply": "9357360768727421747750", - "apr": 0.0512090527109792, - "apy": 0.052539129148512, - "apy14": 0.05361576490338587, - "apy30": 0.054393574483115756, - "apy7": 0.05466225305291645, - "cumulativeFees": "186233758701420246399", - "cumulativeYield": "744935034805680986762", - "dripperWETH": "1983412740783823332", - "fees": "914878469924418456", - "rateETH": "1002336217292407326", - "rateUSD": "2242826960000000000000", - "yield": "3659513879697673827", - "marketCapUSD": 8.768199281004334e+25 + "amoSupply": "9322556418610432303704", + "apr": 0.05485034692677376, + "apy": 0.056378161694535356, + "apy14": 0.062338275401483956, + "apy30": 0.05426774313461754, + "apy7": 0.05466886175471016, + "cumulativeFees": "177235363028961301442", + "cumulativeYield": "708941452115845206658", + "dripperWETH": "2455129218264784200", + "fees": "0", + "rateETH": "1002274683051082992", + "rateUSD": "2213063300000000000000", + "yield": "0", + "marketCapUSD": 8.650827671513788e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2023-12-29", - "timestamp": "2023-12-29T23:59:59.000000Z", - "blockNumber": 18894649, + "timestamp": "2023-12-29T18:49:59.000000Z", + "blockNumber": 18893118, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "38399485840615998754337", - "rebasingSupply": "30901009873494380121893", - "nonRebasingSupply": "7498475967121618632444", + "totalSupply": "38390195503108675254000", + "rebasingSupply": "30891027648251679588459", + "nonRebasingSupply": "7499167854856995665541", "wrappedSupply": "1888050605692961024590", "amoSupply": "5698350992209462562935", - "apr": 0.048974544637049755, - "apy": 0.05019016947363042, - "apy14": 0.06511762007136239, - "apy30": 0.06757944935968248, - "apy7": 0.0683883734715112, - "cumulativeFees": "215053558433705371897", - "cumulativeYield": "860214233734821488900", - "dripperWETH": "2109582525713169108", - "fees": "1035316070949885019", + "apr": 0.03676803837163101, + "apy": 0.03745042397560683, + "apy14": 0.064207638250075, + "apy30": 0.06715479117641504, + "apy7": 0.0665684098289364, + "cumulativeFees": "203518723885927846693", + "cumulativeYield": "814074895543711387786", + "dripperWETH": "1468560585925791708", + "fees": "777248569485184952", "rateETH": "999825789309822081", - "rateUSD": "2298891490000000000000", - "yield": "4141264283799540086", - "marketCapUSD": 8.827625121936762e+25 + "rateUSD": "2309437529100000000000", + "yield": "3108994277940739816", + "marketCapUSD": 8.865975824436523e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-01-23", - "timestamp": "2024-01-23T23:59:59.000000Z", - "blockNumber": 19072787, + "timestamp": "2024-01-23T21:23:23.000000Z", + "blockNumber": 19072016, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "39590819562012832929742", - "rebasingSupply": "32720051032445185853551", - "nonRebasingSupply": "6870768529567647076191", + "rebasingSupply": "32738940468837193817743", + "nonRebasingSupply": "6851879093175639111999", "wrappedSupply": "1618404906707338175485", - "amoSupply": "4965430907577427848445", + "amoSupply": "4951425900877881222169", "apr": 0.04717057161220667, "apy": 0.04829761140193667, "apy14": 0.045679950193954065, "apy30": 0.05001535657515607, "apy7": 0.04709445899702848, - "cumulativeFees": "239919298186183610221", - "cumulativeYield": "959677192744734442286", - "dripperWETH": "1962035175832845984", + "cumulativeFees": "223348434247498358688", + "cumulativeYield": "893393736989993435831", + "dripperWETH": "1660627770952108608", "fees": "1056993709007265404", - "rateETH": "1000560561664259166", - "rateUSD": "2243070000000000000000", + "rateETH": "1000540525963133985", + "rateUSD": "2195406630000000000000", "yield": "4227974836029061618", - "marketCapUSD": 8.880497963496412e+25 + "marketCapUSD": 8.691794775357667e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-02-17", - "timestamp": "2024-02-17T23:59:59.000000Z", - "blockNumber": 19250997, + "timestamp": "2024-02-17T22:29:11.000000Z", + "blockNumber": 19250550, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "44343232563797673256078", @@ -13574,44 +13823,44 @@ "apy14": 0.0423268290199227, "apy30": 0.04719547895119234, "apy7": 0.03950736160522071, - "cumulativeFees": "265560787096348810716", - "cumulativeYield": "1062243148385395244443", - "dripperWETH": "1912763681393649684", + "cumulativeFees": "242477521902898449784", + "cumulativeYield": "969910087611593800352", + "dripperWETH": "1742523588989666748", "fees": "1034783857578998142", "rateETH": "999870033292339789", - "rateUSD": "2787720000000000000000", + "rateUSD": "2786175700000000000000", "yield": "4139135430315992570", - "marketCapUSD": 1.2361651628275004e+26 + "marketCapUSD": 1.2354803702870177e+26 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-03-13", - "timestamp": "2024-03-13T23:59:59.000000Z", - "blockNumber": 19429555, + "timestamp": "2024-03-13T10:45:35.000000Z", + "blockNumber": 19425641, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "44493699195000166508927", - "rebasingSupply": "33912642221932794747745", - "nonRebasingSupply": "10581056973067371761182", + "rebasingSupply": "33917497202777917376088", + "nonRebasingSupply": "10576201992222249132839", "wrappedSupply": "1281716110091662289968", - "amoSupply": "9028077865071273698388", + "amoSupply": "9023755384790302072306", "apr": 0.04175357538577984, "apy": 0.042635027449095864, "apy14": 0.03809482126544298, "apy30": 0.03989454871564062, "apy7": 0.037711064601861084, - "cumulativeFees": "288370854556811497378", - "cumulativeYield": "1153483418227245991141", - "dripperWETH": "981107360814462216", + "cumulativeFees": "265112071846016591710", + "cumulativeYield": "1060448287384066368102", + "dripperWETH": "217147659352975464", "fees": "969209552137758503", - "rateETH": "1000497122046554193", - "rateUSD": "4013360000000000000000", + "rateETH": "1000493814154160288", + "rateUSD": "4049933950000000000000", "yield": "3876838208551034016", - "marketCapUSD": 1.7856923260124585e+26 + "marketCapUSD": 1.8019654293091884e+26 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-04-07", - "timestamp": "2024-04-07T23:59:59.000000Z", - "blockNumber": 19607241, + "timestamp": "2024-04-07T16:41:59.000000Z", + "blockNumber": 19605071, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "44608835442210888497928", @@ -13624,44 +13873,44 @@ "apy14": 0.0355372888420198, "apy30": 0.0391508360953655, "apy7": 0.03195647998264357, - "cumulativeFees": "311523762935053071680", - "cumulativeYield": "1246095051740212288423", - "dripperWETH": "1000634322484440876", + "cumulativeFees": "286451556059729682951", + "cumulativeYield": "1145806224238918733133", + "dripperWETH": "571034407518566436", "fees": "497118631897735992", "rateETH": "1001901887839927895", - "rateUSD": "3453200000000000000000", + "rateUSD": "3402093120000000000000", "yield": "1988474527590943969", - "marketCapUSD": 1.5404323054904264e+26 + "marketCapUSD": 1.5176341214915782e+26 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-05-02", - "timestamp": "2024-05-02T23:59:59.000000Z", - "blockNumber": 19785869, + "timestamp": "2024-05-02T06:52:47.000000Z", + "blockNumber": 19780771, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "44694721545998421172007", - "rebasingSupply": "28097041985313428275720", - "nonRebasingSupply": "16597679560684992896287", - "wrappedSupply": "1267858546837583637705", - "amoSupply": "15859512548088881116895", - "apr": 0.04576601565413119, - "apy": 0.04682643932688202, - "apy14": 0.038986688577899, - "apy30": 0.03569355598952895, - "apy7": 0.039657591824872336, - "cumulativeFees": "328697755441223881707", - "cumulativeYield": "1314791021764895528582", - "dripperWETH": "1148473684577631528", - "fees": "880031886970255012", - "rateETH": "1003271974115651874", - "rateUSD": "2989809272000000000000", - "yield": "3520127547881020051", - "marketCapUSD": 1.3362869288768426e+26 + "totalSupply": "44690319386563569896944", + "rebasingSupply": "28093472703946394002903", + "nonRebasingSupply": "16596846682617175894041", + "wrappedSupply": "1267856709280529884317", + "amoSupply": "15859558363444582188348", + "apr": 0.018061028736643614, + "apy": 0.018224660818318306, + "apy14": 0.038597528146715625, + "apy30": 0.035321121278140584, + "apy7": 0.039335184359096394, + "cumulativeFees": "301357316907542128535", + "cumulativeYield": "1205429267630168515512", + "dripperWETH": "1611008609528581140", + "fees": "0", + "rateETH": "1003272043581462870", + "rateUSD": "2911016270000000000000", + "yield": "0", + "marketCapUSD": 1.3009424684578297e+26 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-05-27", - "timestamp": "2024-05-27T23:59:59.000000Z", - "blockNumber": 19964643, + "timestamp": "2024-05-27T19:24:11.000000Z", + "blockNumber": 19963272, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "34385572909367640661665", @@ -13674,194 +13923,194 @@ "apy14": 0.03727437411043518, "apy30": 0.03963072350828784, "apy7": 0.03715556686848541, - "cumulativeFees": "346512796966123051914", - "cumulativeYield": "1386051187864492209490", - "dripperWETH": "1190837012674233600", + "cumulativeFees": "316372098403184228001", + "cumulativeYield": "1265488393612736913445", + "dripperWETH": "868844024345259456", "fees": "646821990047152347", "rateETH": "1000707666867987405", - "rateUSD": "3894620817000000000000", + "rateUSD": "3924886150000000000000", "yield": "2587287960188609391", - "marketCapUSD": 1.3391876805729447e+26 + "marketCapUSD": 1.3495945887179225e+26 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-06-21", - "timestamp": "2024-06-21T23:59:59.000000Z", - "blockNumber": 20143530, + "timestamp": "2024-06-21T09:43:11.000000Z", + "blockNumber": 20139273, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "34422847357883300275081", "rebasingSupply": "26385538302275477057106", "nonRebasingSupply": "8037309055607823217975", "wrappedSupply": "2474433781593047910346", - "amoSupply": "7416903950982045857117", + "amoSupply": "7416880472622832432671", "apr": 0.02617593972458543, "apy": 0.02652057571351296, "apy14": 0.040602929493053476, "apy30": 0.03921782927278702, "apy7": 0.03870513762554352, - "cumulativeFees": "364234884740390015258", - "cumulativeYield": "1456939538961560062950", - "dripperWETH": "1451105376487832016", + "cumulativeFees": "326911701878618321596", + "cumulativeYield": "1307646807514473287874", + "dripperWETH": "229542115950619920", "fees": "472711000719470557", - "rateETH": "1001164704655150263", - "rateUSD": "3515830000000000000000", + "rateETH": "1001164673748706716", + "rateUSD": "3503770000000000000000", "yield": "1890844002877882232", - "marketCapUSD": 1.2102487942626684e+26 + "marketCapUSD": 1.2060973988713078e+26 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-07-16", - "timestamp": "2024-07-16T23:59:59.000000Z", - "blockNumber": 20322520, + "timestamp": "2024-07-16T13:12:35.000000Z", + "blockNumber": 20319292, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "37615295374130473565850", - "rebasingSupply": "29386466169588279770508", - "nonRebasingSupply": "8228829204542193795342", - "wrappedSupply": "2898326496248705164554", - "amoSupply": "7521717430726638765931", + "totalSupply": "37615286374130473565850", + "rebasingSupply": "29395758878723163740659", + "nonRebasingSupply": "8219527495407309825191", + "wrappedSupply": "2897407322245087369851", + "amoSupply": "7511894414399636247873", "apr": 0.021797388509324056, "apy": 0.02203602239577762, "apy14": 0.03772311759219867, "apy30": 0.03925598419639135, "apy7": 0.04135402327955896, - "cumulativeFees": "382233943913071243346", - "cumulativeYield": "1528935775652284975403", - "dripperWETH": "1399185894334633200", + "cumulativeFees": "340296210730990909340", + "cumulativeYield": "1361184842923963638908", + "dripperWETH": "511114376695180716", "fees": "423632889796144113", - "rateETH": "1000134386426238968", - "rateUSD": "3446485877590000000000", + "rateETH": "1000126712946828330", + "rateUSD": "3402986605850000000000", "yield": "1694531559184576455", - "marketCapUSD": 1.2964058428831713e+26 + "marketCapUSD": 1.2800431570637802e+26 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-08-10", - "timestamp": "2024-08-10T23:59:59.000000Z", - "blockNumber": 20501654, + "timestamp": "2024-08-10T07:28:35.000000Z", + "blockNumber": 20496719, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "32611113467177836647965", - "rebasingSupply": "27916138209269283255346", - "nonRebasingSupply": "4694975257908553392619", + "rebasingSupply": "27947430834425245375351", + "nonRebasingSupply": "4663682632752591272614", "wrappedSupply": "4002372225886572857134", - "amoSupply": "4130161198111310558966", + "amoSupply": "4100404022316496637319", "apr": 0.034436760349675466, "apy": 0.03503489078875033, "apy14": 0.03816362837400378, "apy30": 0.03428905349380339, "apy7": 0.04632479810661235, - "cumulativeFees": "398050055724351744918", - "cumulativeYield": "1592200222897406981787", - "dripperWETH": "2240108960452769736", + "cumulativeFees": "347595629293959044992", + "cumulativeYield": "1390382517175836181561", + "dripperWETH": "61529380903156320", "fees": "658677641457891020", - "rateETH": "1000027477352903716", - "rateUSD": "2607560000000000000000", + "rateETH": "999986971928500408", + "rateUSD": "2623780000000000000000", "yield": "2634710565831564083", - "marketCapUSD": 8.503543503247424e+25 + "marketCapUSD": 8.556438729291186e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-09-04", - "timestamp": "2024-09-04T23:59:59.000000Z", - "blockNumber": 20680662, + "timestamp": "2024-09-04T08:18:47.000000Z", + "blockNumber": 20675974, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "34719971176553128983473", - "rebasingSupply": "29163136978860001915858", - "nonRebasingSupply": "5556834197693127067615", - "wrappedSupply": "5619028606499433304825", - "amoSupply": "4200252390626266373101", - "apr": 0.039942371753384054, - "apy": 0.04074852301607468, - "apy14": 0.0438052096387122, - "apy30": 0.04590185333117226, - "apy7": 0.044184841063925714, - "cumulativeFees": "419636100942480428934", - "cumulativeYield": "1678544403769921717956", - "dripperWETH": "119024186699320320", - "fees": "797173724050245250", - "rateETH": "999905168263584091", - "rateUSD": "2448480754830000000000", - "yield": "3188694896200981008", - "marketCapUSD": 8.501118123404264e+25 + "totalSupply": "34781888086521955534912", + "rebasingSupply": "29228623858822441030489", + "nonRebasingSupply": "5553264227699514504423", + "wrappedSupply": "5611527540360766429242", + "amoSupply": "4197558862518960234513", + "apr": 0.01661783407988221, + "apy": 0.016756293960342283, + "apy14": 0.04209147899187417, + "apy30": 0.04510211236264785, + "apy7": 0.04075737977024966, + "cumulativeFees": "365628781294814715883", + "cumulativeYield": "1462515125179258865201", + "dripperWETH": "190542651129726768", + "fees": "332439715212704592", + "rateETH": "999901677965096989", + "rateUSD": "2402420000000000000000", + "yield": "1329758860850818370", + "marketCapUSD": 8.356070357682208e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-09-29", - "timestamp": "2024-09-29T23:59:59.000000Z", - "blockNumber": 20859740, + "timestamp": "2024-09-29T10:17:59.000000Z", + "blockNumber": 20855646, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "30898232787049477765422", - "rebasingSupply": "25897676873303192002812", - "nonRebasingSupply": "5000555913746285762610", - "wrappedSupply": "4759598191030824050663", + "rebasingSupply": "25898218506690302686273", + "nonRebasingSupply": "5000014280359175079149", + "wrappedSupply": "4754498241069112317674", "amoSupply": "3650924979499025785186", "apr": 0.05267165274443064, "apy": 0.054079480052602324, "apy14": 0.043845845726796825, "apy30": 0.04288794335910666, "apy7": 0.03681004329743282, - "cumulativeFees": "438179046345845517024", - "cumulativeYield": "1752716185383382070439", - "dripperWETH": "2931403343835941676", + "cumulativeFees": "379108837235256469659", + "cumulativeYield": "1516435348941025880374", + "dripperWETH": "567646674586241796", "fees": "933542514777563738", "rateETH": "1000003038732513647", - "rateUSD": "2656320100000000000000", + "rateUSD": "2649496982400000000000", "yield": "3734170059110254955", - "marketCapUSD": 8.207559680671856e+25 + "marketCapUSD": 8.186477453078032e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-10-24", - "timestamp": "2024-10-24T23:59:59.000000Z", - "blockNumber": 21038905, + "timestamp": "2024-10-24T12:48:11.000000Z", + "blockNumber": 21035557, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "30329095476918955047265", - "rebasingSupply": "26077428968748233880641", - "nonRebasingSupply": "4251666508170721166624", + "rebasingSupply": "26078426974023154626801", + "nonRebasingSupply": "4250668502895800420464", "wrappedSupply": "5150863173715757981702", - "amoSupply": "3682331470431553933482", + "amoSupply": "3677301218227466380772", "apr": 0.02954350511030518, "apy": 0.02998301349286736, "apy14": 0.0339098492359482, "apy30": 0.03676600805017895, "apy7": 0.03253963050032861, - "cumulativeFees": "454053155597471647180", - "cumulativeYield": "1816212622389886591142", - "dripperWETH": "1167386922635809824", + "cumulativeFees": "389905238505343213880", + "cumulativeYield": "1559620954021372857316", + "dripperWETH": "46067885422860096", "fees": "527450178401702391", - "rateETH": "1000006828391787971", - "rateUSD": "2532720000000000000000", + "rateETH": "999999183380275642", + "rateUSD": "2527517300000000000000", "yield": "2109800713606809568", - "marketCapUSD": 7.681510669630217e+25 + "marketCapUSD": 7.665731351126441e+25 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-11-18", - "timestamp": "2024-11-18T23:59:59.000000Z", - "blockNumber": 21218049, + "timestamp": "2024-11-18T06:04:23.000000Z", + "blockNumber": 21212691, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "totalSupply": "42363184214870485395680", - "rebasingSupply": "38143436277043587450404", - "nonRebasingSupply": "4219747937826897945276", - "wrappedSupply": "18682918912657866692083", - "amoSupply": "3674157195868933606474", - "apr": 0.04074583636542606, - "apy": 0.04158497121678817, - "apy14": 0.029789927091732893, - "apy30": 0.030514420055440243, - "apy7": 0.02940509589081706, - "cumulativeFees": "469615620618644970679", - "cumulativeYield": "1878462482474579885255", - "dripperWETH": "694801093652775960", - "fees": "983831500993317249", - "rateETH": "1000012514374210297", - "rateUSD": "3209524109770000000000", - "yield": "3935326003973269016", - "marketCapUSD": 1.3596566110425472e+26 + "totalSupply": "39680763781116110547856", + "rebasingSupply": "35484257350730546496435", + "nonRebasingSupply": "4196506430385564051421", + "wrappedSupply": "16270443129965839393669", + "amoSupply": "3652849113241341700034", + "apr": 0.027947555429378323, + "apy": 0.028340652597765192, + "apy14": 0.02884390433323125, + "apy30": 0.030072942768139477, + "apy7": 0.02751305037381378, + "cumulativeFees": "400245880945059898524", + "cumulativeYield": "1600983523780239595954", + "dripperWETH": "45250381757388288", + "fees": "659677212927771282", + "rateETH": "999980256742054537", + "rateUSD": "3112962500000000000000", + "yield": "2638708851711085129", + "marketCapUSD": 1.2352472962197267e+26 }, { "id": "1-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-2024-12-13", - "timestamp": "2024-12-13T00:11:11.000000Z", - "blockNumber": 21389923, + "timestamp": "2024-12-13T07:34:35.000000Z", + "blockNumber": 21392128, "chainId": 1, "otoken": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", "totalSupply": "45902331071933715133847", @@ -13874,14 +14123,14 @@ "apy14": 0.027602178417554826, "apy30": 0.02909470360600073, "apy7": 0.027533760331535952, - "cumulativeFees": "486867730373995175451", - "cumulativeYield": "1947470921495980704424", - "dripperWETH": "64375612395200616", + "cumulativeFees": "403918662237759509336", + "cumulativeYield": "1615674648951038039242", + "dripperWETH": "1450013793755975040", "fees": "0", "rateETH": "999996217103765383", - "rateUSD": "3882219747700000000000", + "rateUSD": "3884744053060000000000", "yield": "0", - "marketCapUSD": 1.7820293615292437e+26 + "marketCapUSD": 1.7831880765328576e+26 } ], "ousd_oTokens": [ @@ -14326,7 +14575,7 @@ "apr": 0.08788479973408952, "apy": 0.0918507893625049, "apy14DayAvg": 0.11278941462749241, - "apy30DayAvg": 0.23062810624211474, + "apy30DayAvg": 0.2306281062421147, "apy7DayAvg": 0.06663455112600514, "date": "2021-12-24", "rebasingCreditsPerToken": "830955290224562872584302536", @@ -14401,7 +14650,7 @@ "apr": 0.034889251659733, "apy": 0.03550329659651341, "apy14DayAvg": 0.06518970341230168, - "apy30DayAvg": 0.08640416179230555, + "apy30DayAvg": 0.08640416179230558, "apy7DayAvg": 0.03650609658721057, "date": "2022-04-28", "rebasingCreditsPerToken": "798950487153978459760506374", @@ -16134,375 +16383,375 @@ ], "ousd_oTokenVaults": [ { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-11632335-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2021-01-11T07:49:17.000000Z", - "blockNumber": 11632335, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-11603592-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2021-01-06T21:46:22.000000Z", + "blockNumber": 11603592, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "1738871348426898550311970" + "totalValue": "758690382038242618858117" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-12746886-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2021-07-02T07:34:43.000000Z", - "blockNumber": 12746886, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-12859392-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2021-07-19T21:21:27.000000Z", + "blockNumber": 12859392, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "19507542326732879795239113" + "totalValue": "19039937523751089767602881" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-13863414-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2021-12-23T19:52:29.000000Z", - "blockNumber": 13863414, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-14115192-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2022-01-31T18:10:29.000000Z", + "blockNumber": 14115192, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "273395510754732062482084848" + "totalValue": "260074284559775788813948968" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-15047152-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2022-06-29T22:06:32.000000Z", - "blockNumber": 15047152, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-15370992-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2022-08-19T11:23:00.000000Z", + "blockNumber": 15370992, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "66718497316182864243538839" + "totalValue": "48530913619285122474559972" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-16221384-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2022-12-19T21:19:35.000000Z", - "blockNumber": 16221384, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-16626792-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2023-02-14T11:49:11.000000Z", + "blockNumber": 16626792, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "51063814307041916614671210" + "totalValue": "50197198296318104454821062" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-17465058-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2023-06-12T16:08:59.000000Z", - "blockNumber": 17465058, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-17882592-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2023-08-10T06:05:23.000000Z", + "blockNumber": 17882592, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "27893765055004646709168072" + "totalValue": "19025755233476525893431516" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-18700000-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2023-12-02T16:45:59.000000Z", - "blockNumber": 18700000, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-18865704-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2023-12-25T22:27:47.000000Z", + "blockNumber": 18865704, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "14740536490420421679188720" + "totalValue": "14311931314498553348469117" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-18916032-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-01-02T00:06:23.000000Z", - "blockNumber": 18916032, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19045104-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-01-20T02:31:35.000000Z", + "blockNumber": 19045104, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "13964104982097894034918256" + "totalValue": "14396545500776246051836720" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19094911-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-01-27T02:22:59.000000Z", - "blockNumber": 19094911, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19224504-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-02-14T06:44:23.000000Z", + "blockNumber": 19224504, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "14415040125746679996999472" + "totalValue": "13376650535794500405170531" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19271408-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-02-20T20:51:59.000000Z", - "blockNumber": 19271408, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19403904-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-03-10T09:49:23.000000Z", + "blockNumber": 19403904, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "13396306056418810330826250" + "totalValue": "12004443737182542481542269" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19455150-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-03-17T14:27:35.000000Z", - "blockNumber": 19455150, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19583304-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-04-04T15:31:23.000000Z", + "blockNumber": 19583304, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "11643651548735515348612455" + "totalValue": "9950260196014451574603532" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19628735-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-04-11T00:13:35.000000Z", - "blockNumber": 19628735, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19762704-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-04-29T18:18:35.000000Z", + "blockNumber": 19762704, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "8722952223121186404393050" + "totalValue": "8538774972891880211526121" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19808270-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-05-06T03:09:47.000000Z", - "blockNumber": 19808270, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19942104-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-05-24T20:24:35.000000Z", + "blockNumber": 19942104, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "8061181653272184060986295" + "totalValue": "8095840167158342185370057" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-19988604-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-05-31T08:24:35.000000Z", - "blockNumber": 19988604, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20121504-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-06-18T22:05:11.000000Z", + "blockNumber": 20121504, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "8105095239651091523905036" + "totalValue": "7988327696961072375386746" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20164086-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-06-24T21:00:11.000000Z", - "blockNumber": 20164086, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20300904-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-07-13T23:36:23.000000Z", + "blockNumber": 20300904, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "7998612970534000634257066" + "totalValue": "7414038868006310445469855" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20341560-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-07-19T15:45:23.000000Z", - "blockNumber": 20341560, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20480304-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-08-08T00:32:59.000000Z", + "blockNumber": 20480304, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "7420843311967381190989715" + "totalValue": "7062147164987629282375826" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20516258-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-08-13T00:55:35.000000Z", - "blockNumber": 20516258, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20659704-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-09-02T01:49:35.000000Z", + "blockNumber": 20659704, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "7066971178156465254915740" + "totalValue": "6098499341661098041558726" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20692400-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-09-06T15:18:59.000000Z", - "blockNumber": 20692400, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20839104-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-09-27T02:54:59.000000Z", + "blockNumber": 20839104, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6105159736541930704250381" + "totalValue": "6124120610529850379331324" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-20865570-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-09-30T19:29:35.000000Z", - "blockNumber": 20865570, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21018504-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-10-22T03:42:35.000000Z", + "blockNumber": 21018504, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6127962425825567213651797" + "totalValue": "6154604982351761560484326" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21049118-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-10-26T10:11:35.000000Z", - "blockNumber": 21049118, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21197904-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-11-16T04:35:47.000000Z", + "blockNumber": 21197904, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6161982722934906841513795" + "totalValue": "6174218920186301878072957" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21164247-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-11-11T11:48:59.000000Z", - "blockNumber": 21164247, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21262488-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-11-25T04:49:23.000000Z", + "blockNumber": 21262488, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6157241597726026797591263" + "totalValue": "6198665653290058107943247" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21209022-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-11-17T17:48:47.000000Z", - "blockNumber": 21209022, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21307338-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-01T11:23:35.000000Z", + "blockNumber": 21307338, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6178940610429465698408773" + "totalValue": "6408787529642762338495821" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21253797-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-11-23T23:43:35.000000Z", - "blockNumber": 21253797, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21352188-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-07T17:45:23.000000Z", + "blockNumber": 21352188, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6196037635195750840467213" + "totalValue": "6431178266656012268779968" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21298045-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-11-30T04:15:23.000000Z", - "blockNumber": 21298045, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21388950-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-12T20:55:23.000000Z", + "blockNumber": 21388950, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6406390228130778947771319" + "totalValue": "6453802556648001015911820" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21309086-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-01T17:14:23.000000Z", - "blockNumber": 21309086, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21392675-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-13T09:24:35.000000Z", + "blockNumber": 21392675, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6409266782987170928519272" + "totalValue": "6469929788985391782844925" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21312811-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-02T05:42:59.000000Z", - "blockNumber": 21312811, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21396400-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-13T21:53:11.000000Z", + "blockNumber": 21396400, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6414375101468497198945137" + "totalValue": "6471863674292591693357341" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21316536-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-02T18:12:47.000000Z", - "blockNumber": 21316536, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21400125-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-14T10:21:47.000000Z", + "blockNumber": 21400125, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6415544421172661134562520" + "totalValue": "6473079309638498878476665" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21320261-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-03T06:43:11.000000Z", - "blockNumber": 21320261, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21403850-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-14T22:50:47.000000Z", + "blockNumber": 21403850, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6416671039410119247472830" + "totalValue": "6474340944138020025983786" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21323986-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-03T19:12:23.000000Z", - "blockNumber": 21323986, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21407575-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-15T11:19:11.000000Z", + "blockNumber": 21407575, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6417890700302476841521530" + "totalValue": "6475586485115577865003027" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21327711-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-04T07:42:23.000000Z", - "blockNumber": 21327711, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21411300-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-15T23:48:47.000000Z", + "blockNumber": 21411300, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6422363290113907023698613" + "totalValue": "6476694695293947016083874" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21331436-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-04T20:10:35.000000Z", - "blockNumber": 21331436, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21415025-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-16T12:17:35.000000Z", + "blockNumber": 21415025, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6423658494338706531465679" + "totalValue": "6478021755252379565757230" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21335161-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-05T08:40:11.000000Z", - "blockNumber": 21335161, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21418750-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-17T00:44:35.000000Z", + "blockNumber": 21418750, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6425058915781359132991623" + "totalValue": "6479314056466482459176655" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21338886-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-05T21:09:11.000000Z", - "blockNumber": 21338886, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21422475-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-17T13:11:59.000000Z", + "blockNumber": 21422475, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6426334008890837671702667" + "totalValue": "6480535914527580032068614" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21342611-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-06T09:38:23.000000Z", - "blockNumber": 21342611, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21426200-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-18T01:41:23.000000Z", + "blockNumber": 21426200, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6427458738240939686087660" + "totalValue": "6481676889303418024222631" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21346336-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-06T22:07:11.000000Z", - "blockNumber": 21346336, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21429925-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-18T14:10:47.000000Z", + "blockNumber": 21429925, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6428796995851314908344656" + "totalValue": "6482817707990940472430382" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21349500-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-07T08:43:35.000000Z", - "blockNumber": 21349500, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21432398-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-18T22:28:35.000000Z", + "blockNumber": 21432398, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6430666071321270540210089" + "totalValue": "6483826247343833161268357" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21351375-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-07T15:01:35.000000Z", - "blockNumber": 21351375, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21434248-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-19T04:41:47.000000Z", + "blockNumber": 21434248, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6430991192184754813351610" + "totalValue": "6484421212961723083328390" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21353250-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-07T21:19:47.000000Z", - "blockNumber": 21353250, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21436098-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-19T10:54:11.000000Z", + "blockNumber": 21436098, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6431500952944260098186984" + "totalValue": "6484886188861167943437997" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21355125-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-08T03:36:11.000000Z", - "blockNumber": 21355125, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21437948-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-19T17:05:59.000000Z", + "blockNumber": 21437948, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6432091405258616584280345" + "totalValue": "6485335855309197537746167" }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21356080-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "timestamp": "2024-12-08T06:48:11.000000Z", - "blockNumber": 21356080, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-21438408-0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", + "timestamp": "2024-12-19T18:38:47.000000Z", + "blockNumber": 21438408, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "address": "0xe75d77b1865ae93c7eaa3040b038d7aa7bc02f70", - "totalValue": "6432390960300403204030510" + "totalValue": "6485437158165387798651207" } ], "ousd_oTokenDailyStats": [ { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-01-04", - "timestamp": "2021-01-04T23:59:42.000000Z", - "blockNumber": 11591157, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-01-05", + "timestamp": "2021-01-05T21:14:21.000000Z", + "blockNumber": 11596942, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "0", - "rebasingSupply": "0", + "totalSupply": "70000000000000000000", + "rebasingSupply": "70000000000000000000", "nonRebasingSupply": "0", "wrappedSupply": "0", "amoSupply": "0", @@ -16516,19 +16765,19 @@ "dripperWETH": "0", "fees": "0", "rateETH": "0", - "rateUSD": "0", + "rateUSD": "1000000000000000000", "yield": "0", - "marketCapUSD": 0 + "marketCapUSD": 70000000000000000000 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-01-29", - "timestamp": "2021-01-29T23:59:59.000000Z", - "blockNumber": 11753911, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-01-30", + "timestamp": "2021-01-30T06:33:41.000000Z", + "blockNumber": 11755709, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "4341242358337829498780808", - "rebasingSupply": "2454166149669424343216383", - "nonRebasingSupply": "1887076208668405155564425", + "rebasingSupply": "2453110469632642989242324", + "nonRebasingSupply": "1888131888705186509538484", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16546,9 +16795,9 @@ "marketCapUSD": 4.3412423583378294e+24 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-02-23", - "timestamp": "2021-02-23T23:59:25.000000Z", - "blockNumber": 11916477, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-02-24", + "timestamp": "2021-02-24T00:38:18.000000Z", + "blockNumber": 11916660, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "6723988796670422955766834", @@ -16571,14 +16820,14 @@ "marketCapUSD": 6.723988796670423e+24 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-03-20", - "timestamp": "2021-03-20T23:59:56.000000Z", - "blockNumber": 12078832, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-03-21", + "timestamp": "2021-03-21T00:34:34.000000Z", + "blockNumber": 12078992, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "7131271213763441478261084", - "rebasingSupply": "3936179842983953816881401", - "nonRebasingSupply": "3195091370779487661379683", + "rebasingSupply": "3940650620268829999380561", + "nonRebasingSupply": "3190620593494611478880523", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16596,14 +16845,14 @@ "marketCapUSD": 7.131271213763442e+24 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-04-14", - "timestamp": "2021-04-14T23:59:47.000000Z", - "blockNumber": 12241311, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-04-15", + "timestamp": "2021-04-15T07:01:52.000000Z", + "blockNumber": 12243182, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "7311198032904797022000270", - "rebasingSupply": "4180966019130348580099182", - "nonRebasingSupply": "3130232013774448441901088", + "totalSupply": "7461503720826273151261472", + "rebasingSupply": "4330966019130348580099182", + "nonRebasingSupply": "3130537701695924571162290", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16618,17 +16867,17 @@ "rateETH": "0", "rateUSD": "1000000000000000000", "yield": "0", - "marketCapUSD": 7.311198032904797e+24 + "marketCapUSD": 7.461503720826273e+24 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-05-09", - "timestamp": "2021-05-09T23:59:45.000000Z", - "blockNumber": 12403257, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-05-10", + "timestamp": "2021-05-10T05:23:18.000000Z", + "blockNumber": 12404710, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "7614200525538813152421719", - "rebasingSupply": "4448385234911968426931942", - "nonRebasingSupply": "3165815290626844725489777", + "totalSupply": "7854394276195521496812869", + "rebasingSupply": "4688361234911968426931942", + "nonRebasingSupply": "3166033041283553069880927", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16643,17 +16892,17 @@ "rateETH": "0", "rateUSD": "1000000000000000000", "yield": "0", - "marketCapUSD": 7.614200525538813e+24 + "marketCapUSD": 7.854394276195522e+24 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-06-03", - "timestamp": "2021-06-03T23:59:59.000000Z", - "blockNumber": 12564606, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-06-04", + "timestamp": "2021-06-04T02:24:48.000000Z", + "blockNumber": 12565242, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "18205307054468339736844742", - "rebasingSupply": "5809023017411778222772853", - "nonRebasingSupply": "12396284037056561514071889", + "rebasingSupply": "5809450479445854427778106", + "nonRebasingSupply": "12395856575022485309066636", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16671,14 +16920,14 @@ "marketCapUSD": 1.820530705446834e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-06-28", - "timestamp": "2021-06-28T23:59:35.000000Z", - "blockNumber": 12725647, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-06-29", + "timestamp": "2021-06-29T00:40:19.000000Z", + "blockNumber": 12725838, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "18936094549100727248660520", - "rebasingSupply": "6504873793033185518898801", - "nonRebasingSupply": "12431220756067541729761719", + "rebasingSupply": "6504958600172824611209269", + "nonRebasingSupply": "12431135948927902637451251", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16696,14 +16945,14 @@ "marketCapUSD": 1.8936094549100727e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-07-23", - "timestamp": "2021-07-23T23:59:35.000000Z", - "blockNumber": 12885654, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-07-24", + "timestamp": "2021-07-24T02:11:10.000000Z", + "blockNumber": 12886252, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "18242811762904623407775831", - "rebasingSupply": "5931376489870041918334779", - "nonRebasingSupply": "12311435273034581489441052", + "totalSupply": "18262763691085623407775831", + "rebasingSupply": "5951634643567452350964017", + "nonRebasingSupply": "12311129047518171056811814", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16718,17 +16967,17 @@ "rateETH": "0", "rateUSD": "1000000000000000000", "yield": "0", - "marketCapUSD": 1.8242811762904623e+25 + "marketCapUSD": 1.8262763691085623e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-08-17", - "timestamp": "2021-08-17T23:59:58.000000Z", - "blockNumber": 13045895, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-08-18", + "timestamp": "2021-08-18T02:12:39.000000Z", + "blockNumber": 13046477, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "18972655367033264589152503", - "rebasingSupply": "6387108788471935719440095", - "nonRebasingSupply": "12585546578561328869712408", + "rebasingSupply": "6387123807354092059027782", + "nonRebasingSupply": "12585531559679172530124721", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16740,20 +16989,20 @@ "cumulativeYield": "0", "dripperWETH": "0", "fees": "0", - "rateETH": "331659333037621", + "rateETH": "329474285419755", "rateUSD": "1000000000000000000", "yield": "0", "marketCapUSD": 1.8972655367033264e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-09-11", - "timestamp": "2021-09-11T23:59:52.000000Z", - "blockNumber": 13207538, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-09-12", + "timestamp": "2021-09-12T09:56:21.000000Z", + "blockNumber": 13210254, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "26512342614259636825125325", - "rebasingSupply": "11876843951216114314650313", - "nonRebasingSupply": "14635498663043522510475012", + "rebasingSupply": "11974574782786282151474565", + "nonRebasingSupply": "14537767831473354673650760", "wrappedSupply": "0", "amoSupply": "0", "apr": 0, @@ -16765,15 +17014,15 @@ "cumulativeYield": "0", "dripperWETH": "0", "fees": "0", - "rateETH": "306259015499768", + "rateETH": "291877713475967", "rateUSD": "1000000000000000000", "yield": "0", "marketCapUSD": 2.6512342614259638e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-10-06", - "timestamp": "2021-10-06T23:59:46.000000Z", - "blockNumber": 13368529, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-10-07", + "timestamp": "2021-10-07T06:34:55.000000Z", + "blockNumber": 13370243, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "26540342614259636825125325", @@ -16790,15 +17039,15 @@ "cumulativeYield": "0", "dripperWETH": "0", "fees": "0", - "rateETH": "278914903427001", + "rateETH": "282424550989403", "rateUSD": "1000000000000000000", "yield": "0", "marketCapUSD": 2.6540342614259636e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-10-31", - "timestamp": "2021-10-31T23:59:20.000000Z", - "blockNumber": 13527858, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-11-01", + "timestamp": "2021-11-01T06:49:43.000000Z", + "blockNumber": 13529725, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "26549596484224407906906877", @@ -16815,45 +17064,45 @@ "cumulativeYield": "0", "dripperWETH": "0", "fees": "0", - "rateETH": "232959872763880", + "rateETH": "236030453226604", "rateUSD": "1000000000000000000", "yield": "0", "marketCapUSD": 2.6549596484224408e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-11-25", - "timestamp": "2021-11-25T23:59:48.000000Z", - "blockNumber": 13686520, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-11-26", + "timestamp": "2021-11-26T22:46:27.000000Z", + "blockNumber": 13692461, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "156699091180821821389446310", - "rebasingSupply": "15520466849374226854159039", - "nonRebasingSupply": "141178624331447594535287271", + "totalSupply": "157709706550582199978674559", + "rebasingSupply": "15574123347789360852262925", + "nonRebasingSupply": "142135583202792839126411634", "wrappedSupply": "0", "amoSupply": "0", - "apr": 0.17299974924345557, - "apy": 0.1888171149738982, - "apy14": 0.26864223621794825, - "apy30": 0.18935266997971717, - "apy7": 0.34140206745200136, - "cumulativeFees": "19118175246220078031801", - "cumulativeYield": "172063577215980702286496", + "apr": 0.22833535584343978, + "apy": 0.25641699315310795, + "apy14": 0.2816142916795199, + "apy30": 0.19789990308482075, + "apy7": 0.34430966729560947, + "cumulativeFees": "7142696086411117518884", + "cumulativeYield": "64284264777700057670066", "dripperWETH": "0", - "fees": "827499891280374555716", - "rateETH": "221172390608135", + "fees": "1061536976037858922824", + "rateETH": "244059602866451", "rateUSD": "1000000000000000000", - "yield": "7447499021523371001470", - "marketCapUSD": 1.5669909118082183e+26 + "yield": "9553832784340730305425", + "marketCapUSD": 1.577097065505822e+26 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-12-20", - "timestamp": "2021-12-20T23:59:47.000000Z", - "blockNumber": 13845238, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2021-12-21", + "timestamp": "2021-12-21T00:58:36.000000Z", + "blockNumber": 13845523, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "273328621803139319882861772", - "rebasingSupply": "52249646184545213327777033", - "nonRebasingSupply": "221078975618594106555084739", + "rebasingSupply": "52204860994545213327777033", + "nonRebasingSupply": "221123760808594106555084739", "wrappedSupply": "0", "amoSupply": "0", "apr": 0.10918406823918386, @@ -16861,44 +17110,44 @@ "apy14": 0.23729591793014077, "apy30": 0.2922916041222004, "apy7": 0.14755515869032587, - "cumulativeFees": "61632828261269927373323", - "cumulativeYield": "554695454351429346360436", + "cumulativeFees": "24391924688655130965842", + "cumulativeYield": "219527322197896178692756", "dripperWETH": "0", "fees": "0", - "rateETH": "254066331637864", + "rateETH": "253863532713670", "rateUSD": "1000000000000000000", "yield": "0", "marketCapUSD": 2.7332862180313932e+26 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-01-14", - "timestamp": "2022-01-14T23:59:53.000000Z", - "blockNumber": 14006709, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-01-15", + "timestamp": "2022-01-15T11:25:21.000000Z", + "blockNumber": 14009717, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "278880269052418500487759016", - "rebasingSupply": "66875314685507436870331115", - "nonRebasingSupply": "212004954366911063617427901", + "totalSupply": "278882427351561263190245715", + "rebasingSupply": "67076647866049374497509853", + "nonRebasingSupply": "211805779485511888692735862", "wrappedSupply": "0", "amoSupply": "0", - "apr": 0.4502501380503309, - "apy": 0.5682696067831241, - "apy14": 0.6360539886784881, - "apy30": 0.33932899652540854, - "apy7": 0.13333674710180277, - "cumulativeFees": "161946824006587987863033", - "cumulativeYield": "1457521416059291890767970", + "apr": 0.010571827157069114, + "apy": 0.010627751748507608, + "apy14": 0.632797535587463, + "apy30": 0.3347968337000546, + "apy7": 0.13350750340176795, + "cumulativeFees": "33095937374136533500434", + "cumulativeYield": "297863436367228801504122", "dripperWETH": "0", - "fees": "9133702019747659663345", - "rateETH": "301836970206486", + "fees": "215829914276270248669", + "rateETH": "300493410179514", "rateUSD": "1000000000000000000", - "yield": "82203318177728936970109", - "marketCapUSD": 2.788802690524185e+26 + "yield": "1942469228486432238030", + "marketCapUSD": 2.7888242735156126e+26 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-02-08", - "timestamp": "2022-02-08T23:58:55.000000Z", - "blockNumber": 14168511, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-02-09", + "timestamp": "2022-02-09T00:07:55.000000Z", + "blockNumber": 14168555, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "260303393661997836830531863", @@ -16911,99 +17160,99 @@ "apy14": 0.08637830329662902, "apy30": 0.12652278613313575, "apy7": 0.12920643611665264, - "cumulativeFees": "230346340115521622140302", - "cumulativeYield": "2073117061039694599263548", + "cumulativeFees": "57461450918552637294553", + "cumulativeYield": "517153058266973735651244", "dripperWETH": "0", - "fees": "315805078096574550004", + "fees": "0", "rateETH": "320125433292852", "rateUSD": "1000000000000000000", - "yield": "2842245702869170950037", + "yield": "0", "marketCapUSD": 2.6030339366199785e+26 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-03-05", - "timestamp": "2022-03-05T23:59:52.000000Z", - "blockNumber": 14329980, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-03-06", + "timestamp": "2022-03-06T23:43:54.000000Z", + "blockNumber": 14336327, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "158811388436082878880712919", - "rebasingSupply": "74001000831915836147660319", - "nonRebasingSupply": "84810387604167042733052600", + "totalSupply": "158827071470234870042457410", + "rebasingSupply": "73914250329336858143901092", + "nonRebasingSupply": "84912821140898011898556318", "wrappedSupply": "0", "amoSupply": "0", - "apr": 0.0720858494415284, - "apy": 0.07473996246294079, - "apy14": 0.10347937664979821, - "apy30": 0.10201529407136353, - "apy7": 0.12059035978499051, - "cumulativeFees": "284020963785999401619002", - "cumulativeYield": "2556188674073994614572112", - "dripperWETH": "3981387442", - "fees": "1625032353487872999265", - "rateETH": "375194207814333", + "apr": 0.06981055304921047, + "apy": 0.07229786417254758, + "apy14": 0.10561335087938169, + "apy30": 0.0947462204780443, + "apy7": 0.10360784712239106, + "cumulativeFees": "80014818029475861779439", + "cumulativeYield": "720133362265282756015365", + "dripperWETH": "3726368408", + "fees": "1568303415199116174449", + "rateETH": "391375646259035", "rateUSD": "1000000000000000000", - "yield": "14625291181390856993388", - "marketCapUSD": 1.588113884360829e+26 + "yield": "14114730736792045570042", + "marketCapUSD": 1.5882707147023486e+26 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-03-30", - "timestamp": "2022-03-30T23:59:33.000000Z", - "blockNumber": 14490619, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-03-31", + "timestamp": "2022-03-31T13:37:35.000000Z", + "blockNumber": 14494266, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "142760435389001763955117356", - "rebasingSupply": "65377835196045604694782775", - "nonRebasingSupply": "77382600192956159260334581", + "totalSupply": "142771922639548629384125994", + "rebasingSupply": "65388173721537783580890550", + "nonRebasingSupply": "77383748918010845803235444", "wrappedSupply": "0", "amoSupply": "0", - "apr": 0.05858434734451612, - "apy": 0.06032943706491678, - "apy14": 0.06346127990683269, - "apy30": 0.0707594976800002, - "apy7": 0.0707201933944579, - "cumulativeFees": "318252420725054217887793", - "cumulativeYield": "2864271786525487960991406", - "dripperWETH": "869367620", - "fees": "1176003866661994484465", - "rateETH": "295124987972369", + "apr": 0.057763308618674736, + "apy": 0.059459361344792905, + "apy14": 0.06400162283360136, + "apy30": 0.06787092238512002, + "apy7": 0.06431153276236702, + "cumulativeFees": "93340922368006394755841", + "cumulativeYield": "840068301312057552803062", + "dripperWETH": "1119833844", + "fees": "1148725054686542900863", + "rateETH": "293034282080660", "rateUSD": "1000000000000000000", - "yield": "10584034799957950360191", - "marketCapUSD": 1.4276043538900176e+26 + "yield": "10338525492178886107775", + "marketCapUSD": 1.4277192263954863e+26 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-04-24", - "timestamp": "2022-04-24T23:59:56.000000Z", - "blockNumber": 14650514, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-04-25", + "timestamp": "2022-04-25T13:10:01.000000Z", + "blockNumber": 14653981, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "87949011554566723297643551", - "rebasingSupply": "52949388185796479123069820", - "nonRebasingSupply": "34999623368770244174573731", + "totalSupply": "87954625650162642579955469", + "rebasingSupply": "52994216212325085338071864", + "nonRebasingSupply": "34960409437837557241883605", "wrappedSupply": "100000000000000000000", "amoSupply": "0", - "apr": 0.03696448918755485, - "apy": 0.037654231405123584, - "apy14": 0.06885611263327097, - "apy30": 0.09024572789578729, - "apy7": 0.08980333939297218, - "cumulativeFees": "356303203091150152140397", - "cumulativeYield": "3206728827820351369264997", - "dripperWETH": "159909252", - "fees": "598728968939712259323", - "rateETH": "342214272000060", + "apr": 0.03479557535083394, + "apy": 0.0354063082647007, + "apy14": 0.0680090283348069, + "apy30": 0.0887149512031162, + "apy7": 0.0714310872565018, + "cumulativeFees": "104091914680202949437184", + "cumulativeYield": "936827232121826544935214", + "dripperWETH": "49741624", + "fees": "561409559591928231191", + "rateETH": "349829245222131", "rateUSD": "1000000000000000000", - "yield": "5388560720457410333912", - "marketCapUSD": 8.794901155456673e+25 + "yield": "5052686036327354080727", + "marketCapUSD": 8.795462565016264e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-05-19", - "timestamp": "2022-05-19T23:59:52.000000Z", - "blockNumber": 14807907, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-05-20", + "timestamp": "2022-05-20T00:39:20.000000Z", + "blockNumber": 14808073, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "63567348581822333287023371", - "rebasingSupply": "35557514524452738588602953", - "nonRebasingSupply": "28009834057369594698420418", + "rebasingSupply": "35557414524452738588602953", + "nonRebasingSupply": "28009934057369594698420418", "wrappedSupply": "4187971919756904717924", "amoSupply": "0", "apr": 0.03451546283180734, @@ -17011,74 +17260,74 @@ "apy14": 0.1523685643495021, "apy30": 0.09866624275177577, "apy7": 0.04667845783923297, - "cumulativeFees": "384761728737451169953508", - "cumulativeYield": "3462855558637060529583214", - "dripperWETH": "149739207", - "fees": "372976475126830126221", - "rateETH": "494798291478211", + "cumulativeFees": "111774021850561565863789", + "cumulativeYield": "1005966196655054092774729", + "dripperWETH": "155538439", + "fees": "0", + "rateETH": "497448091291673", "rateUSD": "1000000000000000000", - "yield": "3356788276141471135994", + "yield": "0", "marketCapUSD": 6.356734858182233e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-06-13", - "timestamp": "2022-06-13T23:59:42.000000Z", - "blockNumber": 14958805, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-06-14", + "timestamp": "2022-06-14T08:26:41.000000Z", + "blockNumber": 14960796, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "64563566831065091198975014", - "rebasingSupply": "35680925936816339085728001", - "nonRebasingSupply": "28882640894248752113247013", + "totalSupply": "64565124738016638419377164", + "rebasingSupply": "35338877749247601652116356", + "nonRebasingSupply": "29226246988769036767260808", "wrappedSupply": "4210169934504180315072", "amoSupply": "0", - "apr": 0.12251486462038941, - "apy": 0.1303127019047412, - "apy14": 0.03728021795278326, - "apy30": 0.036231155439695316, - "apy7": 0.0421347458926063, - "cumulativeFees": "393581863766570210345661", - "cumulativeYield": "3542236773899131893112740", - "dripperWETH": "253076838", - "fees": "1321797324620957176287", - "rateETH": "831051260526030", + "apr": 0.014360151576439883, + "apy": 0.014463467507003225, + "apy14": 0.03585457390968513, + "apy30": 0.03421712300152655, + "apy7": 0.039768725716258634, + "cumulativeFees": "116377803525811632126092", + "cumulativeYield": "1047400231732304689135530", + "dripperWETH": "18444400", + "fees": "155790695154722040215", + "rateETH": "814708673323255", "rateUSD": "1000000000000000000", - "yield": "11896175921588614586595", - "marketCapUSD": 6.4563566831065095e+25 + "yield": "1402116256392498361935", + "marketCapUSD": 6.456512473801664e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-07-08", - "timestamp": "2022-07-08T23:59:47.000000Z", - "blockNumber": 15105072, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-07-09", + "timestamp": "2022-07-09T19:25:21.000000Z", + "blockNumber": 15110266, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "66737873402962798260513394", - "rebasingSupply": "29910136728955173223367436", - "nonRebasingSupply": "36827736674007625037145958", + "totalSupply": "66739873088978501356641058", + "rebasingSupply": "29911415046369306009882334", + "nonRebasingSupply": "36828458042609195346758724", "wrappedSupply": "25018759191477044709048", "amoSupply": "0", - "apr": 0.023360785267033557, - "apy": 0.02363502096120551, - "apy14": 0.02512489099124991, - "apy30": 0.032614682524708886, - "apy7": 0.024170230734789775, - "cumulativeFees": "400826228147923882598852", - "cumulativeYield": "3607436053331314943391575", - "dripperWETH": "585733824", - "fees": "213574253462929712248", - "rateETH": "818572917811627", + "apr": 0.021981127361603514, + "apy": 0.022223816119106177, + "apy14": 0.023634939506784223, + "apy30": 0.032366104824744564, + "apy7": 0.0225481164558275, + "cumulativeFees": "119051508878431882738818", + "cumulativeYield": "1071463579905886944650120", + "dripperWETH": "505271406", + "fees": "199968601570309612766", + "rateETH": "821833532792948", "rateUSD": "1000000000000000000", - "yield": "1922168281166367410238", - "marketCapUSD": 6.673787340296279e+25 + "yield": "1799717414132786514898", + "marketCapUSD": 6.67398730889785e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-08-02", - "timestamp": "2022-08-02T23:59:39.000000Z", - "blockNumber": 15266192, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-08-03", + "timestamp": "2022-08-03T05:48:05.000000Z", + "blockNumber": 15267710, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "49790249852697405661308133", - "rebasingSupply": "34472169517206534183707756", - "nonRebasingSupply": "15318080335490871477600377", + "rebasingSupply": "34470668926560576002460109", + "nonRebasingSupply": "15319580926136829658848024", "wrappedSupply": "35856638756174566395803", "amoSupply": "0", "apr": 0.012659830706285957, @@ -17086,74 +17335,74 @@ "apy14": 0.05150552276634771, "apy30": 0.03549032684837349, "apy7": 0.027207123394646197, - "cumulativeFees": "410165263082361208586463", - "cumulativeYield": "3691487367741250877280244", - "dripperWETH": "494149644", - "fees": "132719465399901453229", - "rateETH": "612167885217819", + "cumulativeFees": "122269804958932151652492", + "cumulativeYield": "1100428244630389364873266", + "dripperWETH": "663111936", + "fees": "0", + "rateETH": "615598264418209", "rateUSD": "1000000000000000000", - "yield": "1194475188599113079063", + "yield": "0", "marketCapUSD": 4.97902498526974e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-08-27", - "timestamp": "2022-08-27T23:59:39.000000Z", - "blockNumber": 15424590, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-08-28", + "timestamp": "2022-08-28T15:43:47.000000Z", + "blockNumber": 15428673, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "48542991243089598762040569", - "rebasingSupply": "33269936406735793126955833", - "nonRebasingSupply": "15273054836353805635084736", + "totalSupply": "48544571416005254902166298", + "rebasingSupply": "33265604866609914879131608", + "nonRebasingSupply": "15278966549395340023034690", "wrappedSupply": "37463648839955063778074", "amoSupply": "0", - "apr": 0.01399171688606421, - "apy": 0.014089787319177205, - "apy14": 0.01764988400927414, - "apy30": 0.01962952361137492, - "apy7": 0.015022081576726163, - "cumulativeFees": "414678320116348923986408", - "cumulativeYield": "3732104881047140315879898", - "dripperWETH": "472525200", - "fees": "142008473021570068140", - "rateETH": "669145506689872", + "apr": 0.015615350590194588, + "apy": 0.015737568226881438, + "apy14": 0.016300844591258832, + "apy30": 0.01943603757592873, + "apy7": 0.015194483712428899, + "cumulativeFees": "125031439036903519623511", + "cumulativeYield": "1125282951332131676612536", + "dripperWETH": "208116246", + "fees": "158017291565614012572", + "rateETH": "674818473830539", "rateUSD": "1000000000000000000", - "yield": "1278076257194130613264", - "marketCapUSD": 4.85429912430896e+25 + "yield": "1422155624090526113157", + "marketCapUSD": 4.854457141600525e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-09-21", - "timestamp": "2022-09-21T23:59:59.000000Z", - "blockNumber": 15585172, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-09-22", + "timestamp": "2022-09-22T06:59:59.000000Z", + "blockNumber": 15587250, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "41931962284134287941050161", - "rebasingSupply": "25502891659512880818681727", - "nonRebasingSupply": "16429070624621407122368434", + "totalSupply": "41933035620879832168988367", + "rebasingSupply": "25503857662583870623826113", + "nonRebasingSupply": "16429177958295961545162254", "wrappedSupply": "31516290119550560634419", "amoSupply": "0", - "apr": 0.014259970625890683, - "apy": 0.014361846664236122, - "apy14": 0.02867740030376604, - "apy30": 0.020865838798128533, - "apy7": 0.04410404816206981, - "cumulativeFees": "419395872857184275574384", - "cumulativeYield": "3774562855714658480171811", - "dripperWETH": "20750868", - "fees": "110595371425538420323", - "rateETH": "798890947630860", + "apr": 0.013837762774824458, + "apy": 0.013933681991153746, + "apy14": 0.02888159213023283, + "apy30": 0.02082588425468915, + "apy7": 0.04024555675626822, + "cumulativeFees": "128479952355462635180152", + "cumulativeYield": "1156319571199163716622369", + "dripperWETH": "0", + "fees": "107333674554422793820", + "rateETH": "788171127715249", "rateUSD": "1000000000000000000", - "yield": "995358342829845782912", - "marketCapUSD": 4.193196228413429e+25 + "yield": "966003070989805144386", + "marketCapUSD": 4.193303562087983e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-10-16", - "timestamp": "2022-10-16T23:59:59.000000Z", - "blockNumber": 15764113, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-10-17", + "timestamp": "2022-10-17T02:26:11.000000Z", + "blockNumber": 15764841, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "40925562356008332087859811", - "rebasingSupply": "24030508912717427010622697", - "nonRebasingSupply": "16895053443290905077237114", + "rebasingSupply": "24025508912717427010622697", + "nonRebasingSupply": "16900053443290905077237114", "wrappedSupply": "31571948998134564730035", "amoSupply": "0", "apr": 0.0257443956546915, @@ -17161,74 +17410,74 @@ "apy14": 0.024115082460049262, "apy30": 0.024811394938956892, "apy7": 0.030317106043597608, - "cumulativeFees": "423003510683516305069609", - "cumulativeYield": "3807031596151646745628943", - "dripperWETH": "571975200", - "fees": "188159301777319280392", - "rateETH": "764824205156444", + "cumulativeFees": "130793367400489184471843", + "cumulativeYield": "1177140306604402660247657", + "dripperWETH": "653958312", + "fees": "0", + "rateETH": "767813267813267", "rateUSD": "1000000000000000000", - "yield": "1693433715995873523532", + "yield": "0", "marketCapUSD": 4.092556235600834e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-11-10", - "timestamp": "2022-11-10T23:59:59.000000Z", - "blockNumber": 15943060, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-11-11", + "timestamp": "2022-11-11T23:15:35.000000Z", + "blockNumber": 15949990, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "49166562968571192956982464", - "rebasingSupply": "18845191502709446860824869", - "nonRebasingSupply": "30321371465861746096157595", + "totalSupply": "49351189477229674144376114", + "rebasingSupply": "18871574018842020083909703", + "nonRebasingSupply": "30479615458387654060466411", "wrappedSupply": "27149399820681942742728", "amoSupply": "0", - "apr": 0.7157052700835657, - "apy": 1.0441968512436866, - "apy14": 0.1189244980784119, - "apy30": 0.06955795465641863, - "apy7": 0.18093696649282492, - "cumulativeFees": "432508231654689622833168", - "cumulativeYield": "3892574084892206605501204", - "dripperWETH": "470046948", - "fees": "4039151298655067541560", - "rateETH": "770042275320915", + "apr": 0.08218969038421936, + "apy": 0.08565169201264755, + "apy14": 0.12235901345370134, + "apy30": 0.0705265938585507, + "apy7": 0.18842069913853304, + "cumulativeFees": "135173570248675330678809", + "cumulativeYield": "1216562132238077976110475", + "dripperWETH": "385362936", + "fees": "470865461178678739364", + "rateETH": "784421472626999", "rateUSD": "1000000000000000000", - "yield": "36352361687895607874096", - "marketCapUSD": 4.916656296857119e+25 + "yield": "4237789150608108654286", + "marketCapUSD": 4.935118947722967e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-12-05", - "timestamp": "2022-12-05T23:59:59.000000Z", - "blockNumber": 16122024, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-12-06", + "timestamp": "2022-12-06T12:56:47.000000Z", + "blockNumber": 16125895, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "52410546820763335456517442", - "rebasingSupply": "18075414046380560805221978", - "nonRebasingSupply": "34335132774382774651295464", + "totalSupply": "52412946232543806098858453", + "rebasingSupply": "18051639046538501732764351", + "nonRebasingSupply": "34361307186005304366094102", "wrappedSupply": "27149399820681942742728", "amoSupply": "0", - "apr": 0.04306970827830858, - "apy": 0.04400801759705475, - "apy14": 0.06374243420819867, - "apy30": 0.1015223542210609, - "apy7": 0.052100862482042744, - "cumulativeFees": "442071871899379016318625", - "cumulativeYield": "3978646847094411146870451", - "dripperWETH": "1030442808", - "fees": "237299427176341872647", - "rateETH": "794571487596739", + "apr": 0.04371387169230734, + "apy": 0.044680666079621734, + "apy14": 0.054471104886522355, + "apy30": 0.10175892175890326, + "apy7": 0.049847773232703875, + "cumulativeFees": "142161413898509641635912", + "cumulativeYield": "1279452725086586774724474", + "dripperWETH": "309069180", + "fees": "239941178047064234101", + "rateETH": "794572046721558", "rateUSD": "1000000000000000000", - "yield": "2135694844587076853830", - "marketCapUSD": 5.2410546820763336e+25 + "yield": "2159470602423578106910", + "marketCapUSD": 5.241294623254381e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-12-30", - "timestamp": "2022-12-30T23:59:59.000000Z", - "blockNumber": 16301023, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2022-12-31", + "timestamp": "2022-12-31T02:56:47.000000Z", + "blockNumber": 16301906, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "49061057073794426963248614", - "rebasingSupply": "18885848132891327121859997", - "nonRebasingSupply": "30175208940903099841388617", + "rebasingSupply": "18687649146774882179794470", + "nonRebasingSupply": "30373407927019544783454144", "wrappedSupply": "27149399820681942742728", "amoSupply": "0", "apr": 0.05730680331759613, @@ -17236,99 +17485,99 @@ "apy14": 0.04039626902086627, "apy30": 0.04016613598696717, "apy7": 0.04291328031924192, - "cumulativeFees": "447639249490067828776606", - "cumulativeYield": "4028753245410610458992432", - "dripperWETH": "503713548", - "fees": "329218411662621253300", - "rateETH": "834405574451663", + "cumulativeFees": "145335871286434933085656", + "cumulativeYield": "1308022841577914397772225", + "dripperWETH": "591006780", + "fees": "0", + "rateETH": "835805925864014", "rateUSD": "1000000000000000000", - "yield": "2962965704963591279710", + "yield": "0", "marketCapUSD": 4.906105707379443e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-01-24", - "timestamp": "2023-01-24T23:59:59.000000Z", - "blockNumber": 16480111, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-01-25", + "timestamp": "2023-01-25T11:38:47.000000Z", + "blockNumber": 16483589, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "51656541760923068049703844", - "rebasingSupply": "17315356245915046489812371", - "nonRebasingSupply": "34341185515008021559891473", + "totalSupply": "51659655494351990597667733", + "rebasingSupply": "17303147167510260993840653", + "nonRebasingSupply": "34356508326841729603827080", "wrappedSupply": "27633225727601451459113", "amoSupply": "0", - "apr": 0.04797603319586158, - "apy": 0.0491422049471999, - "apy14": 0.04643815978351099, - "apy30": 0.04343982047965932, - "apy7": 0.05009430658191711, - "cumulativeFees": "453409621016684431803442", - "cumulativeYield": "4080686589150159886234109", - "dripperWETH": "831952800", - "fees": "254081679591967363833", - "rateETH": "643297801851411", + "apr": 0.059130322889368925, + "apy": 0.06090841574863193, + "apy14": 0.04883297784036632, + "apy30": 0.044248642247500664, + "apy7": 0.048644494512701204, + "cumulativeFees": "149266075744098654678503", + "cumulativeYield": "1343394681696887892107935", + "dripperWETH": "247366980", + "fees": "311373342892254796388", + "rateETH": "646291594846461", "rateUSD": "1000000000000000000", - "yield": "2286735116327706274505", - "marketCapUSD": 5.165654176092307e+25 + "yield": "2802360086030293167501", + "marketCapUSD": 5.165965549435199e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-02-18", - "timestamp": "2023-02-18T23:59:59.000000Z", - "blockNumber": 16658938, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-02-19", + "timestamp": "2023-02-19T12:43:47.000000Z", + "blockNumber": 16662713, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "52442604635325372863646791", - "rebasingSupply": "18683973605960768035624432", - "nonRebasingSupply": "33758631029364604828022359", + "totalSupply": "52445545807619891872908696", + "rebasingSupply": "18686630662151757273235051", + "nonRebasingSupply": "33758915145468134599673645", "wrappedSupply": "27633233511048528990032", "amoSupply": "0", - "apr": 0.0507667445663304, - "apy": 0.05207375041271223, - "apy14": 0.05287919987368842, - "apy30": 0.05193289801611515, - "apy7": 0.052855399556047934, - "cumulativeFees": "460786601769464156410820", - "cumulativeYield": "4147079415925177407700681", - "dripperWETH": "1230299988", - "fees": "288427915087327475864", - "rateETH": "590438456173011", + "apr": 0.0517609372375854, + "apy": 0.05312008761290765, + "apy14": 0.052976400928079426, + "apy30": 0.05148075710606258, + "apy7": 0.05399534603203108, + "cumulativeFees": "154991745078464473846218", + "cumulativeYield": "1394925705706180264617485", + "dripperWETH": "462790080", + "fees": "294117229451900926190", + "rateETH": "589725495755686", "rateUSD": "1000000000000000000", - "yield": "2595851235785947282785", - "marketCapUSD": 5.2442604635325375e+25 + "yield": "2647055065067108335715", + "marketCapUSD": 5.2445545807619895e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-03-15", - "timestamp": "2023-03-15T23:59:59.000000Z", - "blockNumber": 16836710, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-03-16", + "timestamp": "2023-03-16T17:25:59.000000Z", + "blockNumber": 16841879, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "30801771517035694045808992", - "rebasingSupply": "15691879973733599982532088", - "nonRebasingSupply": "15109891543302094063276904", + "totalSupply": "30805913111162528503147215", + "rebasingSupply": "15684813804284410727828266", + "nonRebasingSupply": "15121099306878117775318949", "wrappedSupply": "27181718760850092682420", "amoSupply": "0", - "apr": 0.12168713367402312, - "apy": 0.12937780660673281, - "apy14": 0.28829179158430274, - "apy30": 0.1669373918360764, - "apy7": 0.5197742315227513, - "cumulativeFees": "479708097956005850502789", - "cumulativeYield": "4317372881604052654528787", - "dripperWETH": "1145460156", - "fees": "583315561291039945404", - "rateETH": "604624115327138", + "apr": 0.08684348238220163, + "apy": 0.09071468955641726, + "apy14": 0.2904616551955875, + "apy30": 0.16748667040355064, + "apy7": 0.5246021355831643, + "cumulativeFees": "171591867190972973782032", + "cumulativeYield": "1544326804718756764040159", + "dripperWETH": "602617308", + "fees": "414159412683445733822", + "rateETH": "601197019071062", "rateUSD": "1000000000000000000", - "yield": "5249840051619359508637", - "marketCapUSD": 3.0801771517035694e+25 + "yield": "3727434714151011604401", + "marketCapUSD": 3.080591311116253e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-04-09", - "timestamp": "2023-04-09T23:59:59.000000Z", - "blockNumber": 17014116, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-04-10", + "timestamp": "2023-04-10T01:22:35.000000Z", + "blockNumber": 17014526, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "34906686412343322445579480", - "rebasingSupply": "17621030047118419785460739", - "nonRebasingSupply": "17285656365224902660118741", + "rebasingSupply": "17620029174319495864138093", + "nonRebasingSupply": "17286657238023826581441387", "wrappedSupply": "59194605677906646990421", "amoSupply": "0", "apr": 0.04914546955380655, @@ -17336,24 +17585,24 @@ "apy14": 0.052945343557430004, "apy30": 0.16438861597326374, "apy7": 0.05261590760385478, - "cumulativeFees": "486952991412603044640904", - "cumulativeYield": "4382576922713427401771948", - "dripperWETH": "773413620", - "fees": "263012980915623188048", - "rateETH": "537836820308718", + "cumulativeFees": "176807909979770792034851", + "cumulativeYield": "1591271189817937128315620", + "dripperWETH": "836032680", + "fees": "0", + "rateETH": "536894138963347", "rateUSD": "1000000000000000000", - "yield": "2367116828240608692436", + "yield": "0", "marketCapUSD": 3.4906686412343322e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-05-04", - "timestamp": "2023-05-04T23:59:59.000000Z", - "blockNumber": 17190729, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-05-05", + "timestamp": "2023-05-05T03:27:11.000000Z", + "blockNumber": 17191755, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "38764301629156271948656769", - "rebasingSupply": "17015996119434322275077146", - "nonRebasingSupply": "21748305509721949673579623", + "rebasingSupply": "17015951119434322275077146", + "nonRebasingSupply": "21748350509721949673579623", "wrappedSupply": "59675608382508525943648", "amoSupply": "0", "apr": 0.0640399788539458, @@ -17361,74 +17610,74 @@ "apy14": 0.0641096722181198, "apy30": 0.058925676012468314, "apy7": 0.07084761936323052, - "cumulativeFees": "494814899877885349032376", - "cumulativeYield": "4453334098900968141295325", - "dripperWETH": "840949200", - "fees": "331315564232366134069", - "rateETH": "532694884451173", + "cumulativeFees": "182464747561195226461053", + "cumulativeYield": "1642182728050757038151530", + "dripperWETH": "1011777312", + "fees": "0", + "rateETH": "525839470520163", "rateUSD": "1000000000000000000", - "yield": "2981840078091295206630", + "yield": "0", "marketCapUSD": 3.876430162915627e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-05-29", - "timestamp": "2023-05-29T23:59:59.000000Z", - "blockNumber": 17368060, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-05-30", + "timestamp": "2023-05-30T13:36:11.000000Z", + "blockNumber": 17372080, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "27364550914304926494536950", - "rebasingSupply": "15736985187788043962528011", - "nonRebasingSupply": "11627565726516882532008939", + "totalSupply": "27370004636540566640491706", + "rebasingSupply": "14277469978118733157979184", + "nonRebasingSupply": "13092534658421833482512522", "wrappedSupply": "201342082977953506009657", "amoSupply": "0", - "apr": 0.10996044471378758, - "apy": 0.11621544449310495, - "apy14": 0.04787814785129564, - "apy30": 0.04992718628153942, - "apy7": 0.05481394720871797, - "cumulativeFees": "507584653812937180587989", - "cumulativeYield": "4504413114641175467517833", - "dripperWETH": "2491942488", - "fees": "1183686707440079033079", - "rateETH": "528178312998468", + "apr": 0.11171344175189973, + "apy": 0.11817328828965623, + "apy14": 0.05340578038227491, + "apy30": 0.05168177413315565, + "apy7": 0.05633141564418758, + "cumulativeFees": "191890747701379703029139", + "cumulativeYield": "1679886728611494944423906", + "dripperWETH": "830299440", + "fees": "1090744447128029190951", + "rateETH": "523700045561903", "rateUSD": "1000000000000000000", - "yield": "4734746829760316132317", - "marketCapUSD": 2.7364550914304928e+25 + "yield": "4362977788512116763805", + "marketCapUSD": 2.7370004636540566e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-06-23", - "timestamp": "2023-06-23T23:59:59.000000Z", - "blockNumber": 17545688, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-06-24", + "timestamp": "2023-06-24T12:01:47.000000Z", + "blockNumber": 17549250, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "21725929192976077511741816", - "rebasingSupply": "14198584492351695184765962", - "nonRebasingSupply": "7527344700624382326975854", + "totalSupply": "21730158789155945764450406", + "rebasingSupply": "14198968169295589786932834", + "nonRebasingSupply": "7531190619860355977517572", "wrappedSupply": "1003236583023008223291672", "amoSupply": "0", - "apr": 0.06744560684304551, - "apy": 0.06976540897876848, - "apy14": 0.051417588007849, - "apy30": 0.05346648370858001, - "apy7": 0.04846175763678048, - "cumulativeFees": "520753993059756541360733", - "cumulativeYield": "4557090471628452910608862", - "dripperWETH": "444459732", - "fees": "0", - "rateETH": "528801154901722", + "apr": 0.043537108905348704, + "apy": 0.04449333420452639, + "apy14": 0.04759594710529274, + "apy30": 0.05319023158337261, + "apy7": 0.049732689770955005, + "cumulativeFees": "202002797174011428209599", + "cumulativeYield": "1720334926502021845145785", + "dripperWETH": "38958000", + "fees": "845919235973650541718", + "rateETH": "528847243222912", "rateUSD": "1000000000000000000", - "yield": "0", - "marketCapUSD": 2.1725929192976075e+25 + "yield": "3383676943894602166872", + "marketCapUSD": 2.1730158789155945e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-07-18", - "timestamp": "2023-07-18T23:59:59.000000Z", - "blockNumber": 17723537, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-07-19", + "timestamp": "2023-07-19T00:05:35.000000Z", + "blockNumber": 17723565, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", "totalSupply": "22632613848615314364752892", - "rebasingSupply": "12674490794325300037689773", - "nonRebasingSupply": "9958123054290014327063119", + "rebasingSupply": "12672790794325300037689773", + "nonRebasingSupply": "9959823054290014327063119", "wrappedSupply": "1003236583023008223291672", "amoSupply": "0", "apr": 0.04083285976894818, @@ -17436,64 +17685,64 @@ "apy14": 0.04130002360201969, "apy30": 0.04615738327817636, "apy7": 0.04739088390433764, - "cumulativeFees": "530963216948871329916713", - "cumulativeYield": "4597927367184912064832850", - "dripperWETH": "47561724", - "fees": "354052229129960038168", + "cumulativeFees": "211366101827152566223861", + "cumulativeYield": "1757788145114586397202901", + "dripperWETH": "47822796", + "fees": "0", "rateETH": "527016421252990", "rateUSD": "1000000000000000000", - "yield": "1416208916519840152676", + "yield": "0", "marketCapUSD": 2.2632613848615314e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-08-12", - "timestamp": "2023-08-12T23:59:59.000000Z", - "blockNumber": 17902216, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-08-13", + "timestamp": "2023-08-13T19:55:35.000000Z", + "blockNumber": 17908162, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "19034553268864783479640457", - "rebasingSupply": "11461949625816493190486789", - "nonRebasingSupply": "7572603643048290289153668", + "totalSupply": "19036734857359917114653940", + "rebasingSupply": "11459967537423088919076133", + "nonRebasingSupply": "7576767319936828195577807", "wrappedSupply": "1017546043119705451857112", "amoSupply": "0", - "apr": 0.1549134358371393, - "apy": 0.16751854337968153, - "apy14": 0.04309210304661337, - "apy30": 0.04567698800768394, - "apy7": 0.05948047420957609, - "cumulativeFees": "540176607932773459748159", - "cumulativeYield": "4634780931120520584158670", - "dripperWETH": "57754620", - "fees": "1213527465167771420356", - "rateETH": "540841657787849", + "apr": 0.055642926489708366, + "apy": 0.057215630599686707, + "apy14": 0.041483256393369854, + "apy30": 0.045804322740616694, + "apy7": 0.06679993283389221, + "cumulativeFees": "219219187083164473798850", + "cumulativeYield": "1789200486138634027502881", + "dripperWETH": "37558080", + "fees": "436317699026727002696", + "rateETH": "539519827353655", "rateUSD": "1000000000000000000", - "yield": "4854109860671085681425", - "marketCapUSD": 1.9034553268864783e+25 + "yield": "1745270796106908010787", + "marketCapUSD": 1.9036734857359917e+25 }, { - "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-09-06", - "timestamp": "2023-09-06T23:59:59.000000Z", - "blockNumber": 18080834, + "id": "1-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-2023-09-07", + "timestamp": "2023-09-07T14:29:59.000000Z", + "blockNumber": 18085151, "chainId": 1, "otoken": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "totalSupply": "15937966551216414689179027", - "rebasingSupply": "9778401045562023069065692", - "nonRebasingSupply": "6159565505654391620113335", + "totalSupply": "15939580079514720850764900", + "rebasingSupply": "9754691868200667998334391", + "nonRebasingSupply": "6184888211314052852430509", "wrappedSupply": "74004208501520830767083", "amoSupply": "0", - "apr": 0.048462464803428584, - "apy": 0.04965259762145546, - "apy14": 0.06599612484729818, - "apy30": 0.0647964869199565, - "apy7": 0.051102877544507964, - "cumulativeFees": "550920667987250881084817", - "cumulativeYield": "4677757171338430269505372", - "dripperWETH": "8692104", - "fees": "324100516689877316794", - "rateETH": "611718833851729", + "apr": 0.048240831505846626, + "apy": 0.04942001621880543, + "apy14": 0.06454633470458253, + "apy30": 0.06472006600770618, + "apy7": 0.05084211939434567, + "cumulativeFees": "226109999998252814812383", + "cumulativeYield": "1816763737798987391557057", + "dripperWETH": "3295464", + "fees": "322705659661232317174", + "rateETH": "614075284815768", "rateUSD": "998787310000000000", - "yield": "1296402066759509267180", - "marketCapUSD": 1.591863873855942e+25 + "yield": "1290822638644929268699", + "marketCapUSD": 1.5920250310148095e+25 } ], "superoethb_oTokens": [ @@ -19275,317 +19524,200 @@ "totalValue": "185915824756357415496366" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-22183200-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-11-09T12:35:47.000000Z", - "blockNumber": 22183200, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-22376526-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-11-13T23:59:59.000000Z", + "blockNumber": 22376526, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "162117128439823163502976" + "totalValue": "162692380382085037630552" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-22420800-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-11-15T00:35:47.000000Z", - "blockNumber": 22420800, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-22777200-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-11-23T06:35:47.000000Z", + "blockNumber": 22777200, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "163628066467345160081214" + "totalValue": "166368400102007220471554" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-22678927-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-11-21T00:00:01.000000Z", - "blockNumber": 22678927, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23014800-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-11-28T18:35:47.000000Z", + "blockNumber": 23014800, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "165875611199590612817553" + "totalValue": "167371938352325910074896" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-22928400-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-11-26T18:35:47.000000Z", - "blockNumber": 22928400, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23283726-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-04T23:59:59.000000Z", + "blockNumber": 23283726, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "167261370099259878256321" + "totalValue": "167837788656135718676450" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23116500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-01T03:05:47.000000Z", - "blockNumber": 23116500, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23522400-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-10T12:35:47.000000Z", + "blockNumber": 23522400, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "167560504666849482816644" + "totalValue": "168309550521801132956937" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23139000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-01T15:35:47.000000Z", - "blockNumber": 23139000, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23634000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-13T02:35:47.000000Z", + "blockNumber": 23634000, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "167936515262640613448036" + "totalValue": "170001649208291907346375" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23161500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-02T04:05:47.000000Z", - "blockNumber": 23161500, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23656500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-13T15:05:47.000000Z", + "blockNumber": 23656500, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "167953517557347512754761" + "totalValue": "163787273754441581617993" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23184000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-02T16:35:47.000000Z", - "blockNumber": 23184000, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23679000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-14T03:35:47.000000Z", + "blockNumber": 23679000, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168028344788075920296081" + "totalValue": "163876239548211950492810" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23206500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-03T05:05:47.000000Z", - "blockNumber": 23206500, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23701500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-14T16:05:47.000000Z", + "blockNumber": 23701500, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168036901188272696352448" + "totalValue": "163911424631381157551475" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23229000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-03T17:35:47.000000Z", - "blockNumber": 23229000, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23724000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-15T04:35:47.000000Z", + "blockNumber": 23724000, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168142323340503994724301" + "totalValue": "163929473072835619167551" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23251500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-04T06:05:47.000000Z", - "blockNumber": 23251500, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23746500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-15T17:05:47.000000Z", + "blockNumber": 23746500, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168331850287140390367784" + "totalValue": "164019160069580507704423" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23274000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-04T18:35:47.000000Z", - "blockNumber": 23274000, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23769000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-16T05:35:47.000000Z", + "blockNumber": 23769000, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "167835451608501708019770" + "totalValue": "164628179414127171509146" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23293800-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-05T05:35:47.000000Z", - "blockNumber": 23293800, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23791500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-16T18:05:47.000000Z", + "blockNumber": 23791500, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "167842323987348610711521" + "totalValue": "164885522337982911085545" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23316300-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-05T18:05:47.000000Z", - "blockNumber": 23316300, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23814000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-17T06:35:47.000000Z", + "blockNumber": 23814000, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "167925805530009763105689" + "totalValue": "164929553060376946384437" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23338800-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-06T06:35:47.000000Z", - "blockNumber": 23338800, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23836500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-17T19:05:47.000000Z", + "blockNumber": 23836500, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "167961938553452066880399" + "totalValue": "164975357495856704569176" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23361300-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-06T19:05:47.000000Z", - "blockNumber": 23361300, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23859000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-18T07:35:47.000000Z", + "blockNumber": 23859000, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168019938501543995962966" + "totalValue": "165606526973012854859140" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23377500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-07T04:05:47.000000Z", - "blockNumber": 23377500, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23881500-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-18T20:05:47.000000Z", + "blockNumber": 23881500, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168133297942954918988086" + "totalValue": "165641304620199460523011" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23388750-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-07T10:20:47.000000Z", - "blockNumber": 23388750, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23891400-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-19T01:35:47.000000Z", + "blockNumber": 23891400, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168163589136036311353601" + "totalValue": "166012551486081110577814" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23400000-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-07T16:35:47.000000Z", - "blockNumber": 23400000, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23902650-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-19T07:50:47.000000Z", + "blockNumber": 23902650, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168163705136036311353601" + "totalValue": "166016733186286661733885" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23411250-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-07T22:50:47.000000Z", - "blockNumber": 23411250, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23913900-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-19T14:05:47.000000Z", + "blockNumber": 23913900, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168181751674651529416514" + "totalValue": "166036830289269639581999" }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23414550-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T00:40:47.000000Z", - "blockNumber": 23414550, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23923950-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", + "timestamp": "2024-12-19T19:40:47.000000Z", + "blockNumber": 23923950, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168199916516507773386814" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23415300-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T01:05:47.000000Z", - "blockNumber": 23415300, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168201293387726720153928" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23416050-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T01:30:47.000000Z", - "blockNumber": 23416050, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168201300387726720153928" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23416800-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T01:55:47.000000Z", - "blockNumber": 23416800, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168201309387726720153928" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23417550-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T02:20:47.000000Z", - "blockNumber": 23417550, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168201309387726720153928" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23418300-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T02:45:47.000000Z", - "blockNumber": 23418300, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168201309387726720153928" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23419050-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T03:10:47.000000Z", - "blockNumber": 23419050, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168201309387726720153928" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23419800-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T03:35:47.000000Z", - "blockNumber": 23419800, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168201309387726720153928" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23420550-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T04:00:47.000000Z", - "blockNumber": 23420550, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168201309387726720153928" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23421300-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T04:25:47.000000Z", - "blockNumber": 23421300, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168098022049006818496511" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23422050-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T04:50:47.000000Z", - "blockNumber": 23422050, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168098023249673254025871" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23422800-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T05:15:47.000000Z", - "blockNumber": 23422800, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168098027449673254025871" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23423550-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T05:40:47.000000Z", - "blockNumber": 23423550, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168098017833254450604376" - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-23424300-0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "timestamp": "2024-12-08T06:05:47.000000Z", - "blockNumber": 23424300, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "address": "0x98a0cbef61bd2d21435f433be4cd42b56b38cc93", - "totalValue": "168098017833254450604376" + "totalValue": "166061645052575817638774" } ], "superoethb_oTokenDailyStats": [ { "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-08-28", - "timestamp": "2023-08-28T21:23:07.000000Z", - "blockNumber": 3234220, + "timestamp": "2023-08-28T05:01:31.000000Z", + "blockNumber": 3204772, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19609,8 +19741,8 @@ }, { "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-09-22", - "timestamp": "2023-09-22T23:54:15.000000Z", - "blockNumber": 4318754, + "timestamp": "2023-09-22T11:37:23.000000Z", + "blockNumber": 4296648, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19633,9 +19765,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-10-17", - "timestamp": "2023-10-17T23:49:37.000000Z", - "blockNumber": 5398615, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-10-20", + "timestamp": "2023-10-20T03:31:25.000000Z", + "blockNumber": 5491669, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19658,9 +19790,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-11-11", - "timestamp": "2023-11-11T15:08:15.000000Z", - "blockNumber": 6462974, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-11-17", + "timestamp": "2023-11-17T02:57:53.000000Z", + "blockNumber": 6700263, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19683,9 +19815,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-12-06", - "timestamp": "2023-12-06T22:32:03.000000Z", - "blockNumber": 7556288, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-12-17", + "timestamp": "2023-12-17T13:01:55.000000Z", + "blockNumber": 8014384, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19708,9 +19840,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2023-12-31", - "timestamp": "2023-12-31T16:00:35.000000Z", - "blockNumber": 8624544, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-01-16", + "timestamp": "2024-01-16T06:36:17.000000Z", + "blockNumber": 9298815, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19733,9 +19865,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-01-25", - "timestamp": "2024-01-25T18:07:01.000000Z", - "blockNumber": 9708337, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-02-13", + "timestamp": "2024-02-13T15:33:31.000000Z", + "blockNumber": 10524532, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19758,9 +19890,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-02-19", - "timestamp": "2024-02-19T19:32:45.000000Z", - "blockNumber": 10790909, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-03-10", + "timestamp": "2024-03-10T19:20:53.000000Z", + "blockNumber": 11654553, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19783,9 +19915,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-03-15", - "timestamp": "2024-03-15T21:58:25.000000Z", - "blockNumber": 11875279, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-04-04", + "timestamp": "2024-04-04T15:53:57.000000Z", + "blockNumber": 12728345, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19808,9 +19940,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-04-09", - "timestamp": "2024-04-09T23:25:59.000000Z", - "blockNumber": 12957906, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-04-29", + "timestamp": "2024-04-29T21:55:41.000000Z", + "blockNumber": 13819197, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19833,9 +19965,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-05-04", - "timestamp": "2024-05-04T22:44:49.000000Z", - "blockNumber": 14036671, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-05-24", + "timestamp": "2024-05-24T23:36:35.000000Z", + "blockNumber": 14902224, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19858,9 +19990,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-05-29", - "timestamp": "2024-05-29T23:19:27.000000Z", - "blockNumber": 15117710, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-06-18", + "timestamp": "2024-06-18T22:05:57.000000Z", + "blockNumber": 15979505, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19883,9 +20015,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-06-23", - "timestamp": "2024-06-23T23:59:59.000000Z", - "blockNumber": 16198926, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-07-13", + "timestamp": "2024-07-13T23:30:01.000000Z", + "blockNumber": 17062027, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "0", @@ -19908,34 +20040,9 @@ "marketCapUSD": 0 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-07-18", - "timestamp": "2024-07-18T23:59:59.000000Z", - "blockNumber": 17278926, - "chainId": 8453, - "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "totalSupply": "0", - "rebasingSupply": "0", - "nonRebasingSupply": "0", - "wrappedSupply": "0", - "amoSupply": "0", - "apr": 0, - "apy": 0, - "apy14": 0, - "apy30": 0, - "apy7": 0, - "cumulativeFees": "0", - "cumulativeYield": "0", - "dripperWETH": "0", - "fees": "0", - "rateETH": "0", - "rateUSD": "0", - "yield": "0", - "marketCapUSD": 0 - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-08-12", - "timestamp": "2024-08-12T23:59:59.000000Z", - "blockNumber": 18358926, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-08-07", + "timestamp": "2024-08-07T18:13:09.000000Z", + "blockNumber": 18132521, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", "totalSupply": "42000000000000000", @@ -19953,109 +20060,134 @@ "dripperWETH": "0", "fees": "0", "rateETH": "1000000000000000000", - "rateUSD": "2722660000000000000000", + "rateUSD": "2366530000000000000000", "yield": "0", - "marketCapUSD": 114351720000000000000 + "marketCapUSD": 99394260000000000000 }, { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-09-06", - "timestamp": "2024-09-06T23:59:59.000000Z", - "blockNumber": 19438926, + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-09-01", + "timestamp": "2024-09-01T18:24:53.000000Z", + "blockNumber": 19212873, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "totalSupply": "3260307568869857910258", - "rebasingSupply": "524308474728825253356", - "nonRebasingSupply": "2735999094141032656902", + "totalSupply": "831193078493823152036", + "rebasingSupply": "109936379248719273845", + "nonRebasingSupply": "721256699245103878191", "wrappedSupply": "94025550786327106", - "amoSupply": "2434933426717553092471", - "apr": 0.10821804235060328, - "apy": 0.11427282117529969, - "apy14": 0.09555279438600003, - "apy30": 0.044591304046800014, - "apy7": 0.12906916038146496, - "cumulativeFees": "149988432618239059", - "cumulativeYield": "599953730472956252", - "dripperWETH": "782210272130712", - "fees": "38740647177448453", - "rateETH": "1000019866263652272", - "rateUSD": "2221954600000000000000", - "yield": "154962588709793815", - "marketCapUSD": 7.244255400065197e+24 - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-10-01", - "timestamp": "2024-10-01T23:59:59.000000Z", - "blockNumber": 20518926, + "amoSupply": "416552495716775510132", + "apr": 0.11642182090265696, + "apy": 0.12344883442608023, + "apy14": 0.04956849306227451, + "apy30": 0.023131963429061438, + "apy7": 0.09913698612454902, + "cumulativeFees": "27189608628918995", + "cumulativeYield": "108758434515675989", + "dripperWETH": "7259838978441156", + "fees": "8569139435257626", + "rateETH": "1000020028476529007", + "rateUSD": "2479187250600000000000", + "yield": "34276557741030504", + "marketCapUSD": 2.0606832829888514e+24 + }, + { + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-09-26", + "timestamp": "2024-09-26T23:44:45.000000Z", + "blockNumber": 20302469, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "totalSupply": "136238731064936149341828", - "rebasingSupply": "20067038124685790866710", - "nonRebasingSupply": "116171692940250358475118", - "wrappedSupply": "1781422642780435412055", - "amoSupply": "112737237043307526097075", - "apr": 0.1234738412228833, - "apy": 0.131396800009278, - "apy14": 0.13864117266868844, - "apy30": 0.15364147783787926, - "apy7": 0.14202379763730513, - "cumulativeFees": "17762212151581262218", - "cumulativeYield": "71048848606325049279", - "dripperWETH": "367863377519471400", - "fees": "1442915061866803372", - "rateETH": "1000014710692044086", - "rateUSD": "2448906326810000000000", - "yield": "5771660247467213490", - "marketCapUSD": 3.336358904614882e+26 - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-10-26", - "timestamp": "2024-10-26T23:59:59.000000Z", - "blockNumber": 21598926, + "totalSupply": "91309890651560796457542", + "rebasingSupply": "12737919398503972253031", + "nonRebasingSupply": "78571971253056824204511", + "wrappedSupply": "1340381492830005674010", + "amoSupply": "75215916577753191279730", + "apr": 0.09846694582137261, + "apy": 0.10346328578394526, + "apy14": 0.16471167068009349, + "apy30": 0.15058095260219023, + "apy7": 0.12934975332982912, + "cumulativeFees": "10325153190288086625", + "cumulativeYield": "41300612761152346864", + "dripperWETH": "170031876877218760", + "fees": "783758457211473428", + "rateETH": "1000015030019750250", + "rateUSD": "2626470000000000000000", + "yield": "3135033828845893752", + "marketCapUSD": 2.3982268849960487e+26 + }, + { + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-10-21", + "timestamp": "2024-10-21T23:03:11.000000Z", + "blockNumber": 21381222, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "totalSupply": "186115985654905570018814", - "rebasingSupply": "35469242507721465951998", - "nonRebasingSupply": "150646743147184104066816", - "wrappedSupply": "5918703439744478695364", - "amoSupply": "146041909605547815625652", - "apr": 0.10856608818981589, - "apy": 0.11466059159623043, - "apy14": 0.11633750751158524, - "apy30": 0.12374304261987398, - "apy7": 0.1138405536920591, - "cumulativeFees": "72207279477242238294", - "cumulativeYield": "288829117908968953998", - "dripperWETH": "667238355335703450", - "fees": "2624354319222977047", - "rateETH": "1000018731652402784", - "rateUSD": "2481330626980000000000", - "yield": "10497417276891908207", - "marketCapUSD": 4.6181529537608754e+26 - }, - { - "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-11-20", - "timestamp": "2024-11-20T23:59:59.000000Z", - "blockNumber": 22678926, + "totalSupply": "184442643013409769991232", + "rebasingSupply": "33790186606998462221817", + "nonRebasingSupply": "150652456406411307769415", + "wrappedSupply": "6041212298359396166208", + "amoSupply": "145501174381198463540215", + "apr": 0.09797115084988373, + "apy": 0.1029164768412909, + "apy14": 0.11890761494801048, + "apy30": 0.12886720602171806, + "apy7": 0.11614251152671486, + "cumulativeFees": "56290339645984686555", + "cumulativeYield": "225161358583938746904", + "dripperWETH": "331375367269377678", + "fees": "2216219935077549410", + "rateETH": "1000019032538565901", + "rateUSD": "2669301093670000000000", + "yield": "8864879740310197657", + "marketCapUSD": 4.923329487150801e+26 + }, + { + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-11-15", + "timestamp": "2024-11-15T22:26:17.000000Z", + "blockNumber": 22460115, "chainId": 8453, "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "totalSupply": "165875611199590612817553", - "rebasingSupply": "41159255136662616371831", - "nonRebasingSupply": "124716356062927996445722", - "wrappedSupply": "8835864742532667137462", - "amoSupply": "121201761436262419879369", - "apr": 0.07954133506834354, - "apy": 0.082780939225225, - "apy14": 0.10622988497805914, - "apy30": 0.10868799561407458, - "apy7": 0.10609230897961804, - "cumulativeFees": "139441285229295470585", - "cumulativeYield": "557765140917181883429", - "dripperWETH": "3044402001239803792", - "fees": "2236449158093907656", - "rateETH": "1000017689355759479", - "rateUSD": "3070985023000000000000", - "yield": "8945796632375630637", - "marketCapUSD": 5.0940151767491386e+26 + "totalSupply": "164324173236093143240187", + "rebasingSupply": "40310950448547929139349", + "nonRebasingSupply": "124013222787545214100838", + "wrappedSupply": "8340240692127319332997", + "amoSupply": "120225811161378240666905", + "apr": 0.0932686913211106, + "apy": 0.09774358316449128, + "apy14": 0.10643651424582574, + "apy30": 0.10944302874972228, + "apy7": 0.10356585695829988, + "cumulativeFees": "120111659338253031475", + "cumulativeYield": "480446637353012126916", + "dripperWETH": "2828594304650849656", + "fees": "2567842541730808003", + "rateETH": "1000018352103364765", + "rateUSD": "3106034344550000000000", + "yield": "10271370166923232014", + "marketCapUSD": 5.1039652571108924e+26 + }, + { + "id": "8453-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-2024-12-10", + "timestamp": "2024-12-10T21:47:51.000000Z", + "blockNumber": 23538962, + "chainId": 8453, + "otoken": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", + "totalSupply": "168320233832222635033583", + "rebasingSupply": "38766494804619255394274", + "nonRebasingSupply": "129553739027603379639309", + "wrappedSupply": "8423974208009368729926", + "amoSupply": "127461043495994170157876", + "apr": 0.06800717568953574, + "apy": 0.07036621318220804, + "apy14": 0.08824631655580502, + "apy30": 0.0976175379498148, + "apy7": 0.08799289396818666, + "cumulativeFees": "178768664074251348150", + "cumulativeYield": "715074656297005393745", + "dripperWETH": "864943856140771200", + "fees": "1814006057022212094", + "rateETH": "1000013438822697994", + "rateUSD": "3649960000000000000000", + "yield": "7256024228088848390", + "marketCapUSD": 6.143621206782593e+26 } ], "ogn_erc20Balances": [ @@ -20422,364 +20554,364 @@ ], "ousd_erc20Balances": [ { - "id": "1-11596942-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x89ebcb7714bd0d2f33ce3a35c12dbeb7b94af169", - "timestamp": "2021-01-05T21:14:21.000000Z", + "id": "1-11596942-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x0000000000000000000000000000000000000000", + "timestamp": "2021-01-06T01:57:16.000000Z", "blockNumber": 11596942, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x89ebcb7714bd0d2f33ce3a35c12dbeb7b94af169", + "account": "0x0000000000000000000000000000000000000000", "balance": "0" }, { - "id": "1-11598096-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x96feb7b6f808dd2bbd09c9e5ccde77cabd58d019", - "timestamp": "2021-01-06T01:31:44.000000Z", - "blockNumber": 11598096, + "id": "1-11606452-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x0a6932d24d1a8a9f27bab14cf36afc4008b2c398", + "timestamp": "2021-01-07T08:26:17.000000Z", + "blockNumber": 11606452, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x96feb7b6f808dd2bbd09c9e5ccde77cabd58d019", - "balance": "1109639664776151262599" + "account": "0x0a6932d24d1a8a9f27bab14cf36afc4008b2c398", + "balance": "100000000000000000000" }, { - "id": "1-11598636-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x5b2a5d1ab8a5b83c0f22cb1df372d23946aa7d8f", - "timestamp": "2021-01-06T03:43:16.000000Z", - "blockNumber": 11598636, + "id": "1-11620262-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xe926af75632a6d0d2cdafa2a3f6f1362427bb85d", + "timestamp": "2021-01-09T11:21:55.000000Z", + "blockNumber": 11620262, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x5b2a5d1ab8a5b83c0f22cb1df372d23946aa7d8f", - "balance": "1006012206318213548" + "account": "0xe926af75632a6d0d2cdafa2a3f6f1362427bb85d", + "balance": "1000000000000000000000" }, { - "id": "1-11599194-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x68703d68bdbae0190c5ea577e34a4ad67221c0b9", - "timestamp": "2021-01-06T05:43:15.000000Z", - "blockNumber": 11599194, + "id": "1-11648874-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xe222e11129a5fefdebcc0572a10a6deacc35e6c0", + "timestamp": "2021-01-13T20:27:50.000000Z", + "blockNumber": 11648874, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x68703d68bdbae0190c5ea577e34a4ad67221c0b9", - "balance": "20013997926696237405" + "account": "0xe222e11129a5fefdebcc0572a10a6deacc35e6c0", + "balance": "9000000000000000000000" }, { - "id": "1-11599633-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x96feb7b6f808dd2bbd09c9e5ccde77cabd58d019", - "timestamp": "2021-01-06T07:23:48.000000Z", - "blockNumber": 11599633, + "id": "1-11661356-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xe2bb94210b41ce4c01b9b97f3ac62e728e472f9c", + "timestamp": "2021-01-15T18:25:44.000000Z", + "blockNumber": 11661356, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x96feb7b6f808dd2bbd09c9e5ccde77cabd58d019", - "balance": "1112768880324209329577" + "account": "0xe2bb94210b41ce4c01b9b97f3ac62e728e472f9c", + "balance": "1101811020999999999999" }, { - "id": "1-11600443-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd15f105e2667fd52313877585d4a0b316c7d8a20", - "timestamp": "2021-01-06T10:19:54.000000Z", - "blockNumber": 11600443, + "id": "1-11675250-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x9e5688cd8787ac24f296f373ad706021ab62948c", + "timestamp": "2021-01-17T21:49:12.000000Z", + "blockNumber": 11675250, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xd15f105e2667fd52313877585d4a0b316c7d8a20", - "balance": "21002167439951222962" + "account": "0x9e5688cd8787ac24f296f373ad706021ab62948c", + "balance": "1007093870999999999999" }, { - "id": "1-11601248-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x03df3e4dc8fbe086099242b6dd7c58118a33ad23", - "timestamp": "2021-01-06T13:20:47.000000Z", - "blockNumber": 11601248, + "id": "1-11690975-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x5f2f9921567f64a96fb5bbe1e892401e7fca1f6f", + "timestamp": "2021-01-21T01:57:52.000000Z", + "blockNumber": 11690975, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x03df3e4dc8fbe086099242b6dd7c58118a33ad23", + "account": "0x5f2f9921567f64a96fb5bbe1e892401e7fca1f6f", "balance": "1" }, { - "id": "1-11601277-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x50b71fa550d646f3b0942a4c16baed0260b77039", - "timestamp": "2021-01-06T13:25:34.000000Z", - "blockNumber": 11601277, + "id": "1-11691279-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x44e7331f04689eb96c0787467a0ee0eafcac875b", + "timestamp": "2021-01-20T08:49:34.000000Z", + "blockNumber": 11691279, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x50b71fa550d646f3b0942a4c16baed0260b77039", - "balance": "1491722989449814997361" + "account": "0x44e7331f04689eb96c0787467a0ee0eafcac875b", + "balance": "539682741799526727679" }, { - "id": "1-11603974-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x9ccb3ef6632538dccf464c82bbdd7ff33cb70266", - "timestamp": "2021-01-06T23:14:27.000000Z", - "blockNumber": 11603974, + "id": "1-11691602-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x9cebbe3a0bb2b508e9a29c8c9f10a503ed7299ce", + "timestamp": "2021-01-20T09:58:19.000000Z", + "blockNumber": 11691602, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x9ccb3ef6632538dccf464c82bbdd7ff33cb70266", - "balance": "985992288233137307061" + "account": "0x9cebbe3a0bb2b508e9a29c8c9f10a503ed7299ce", + "balance": "1159564395980750389247" }, { - "id": "1-11606582-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x9ccb3ef6632538dccf464c82bbdd7ff33cb70266", - "timestamp": "2021-01-07T08:52:40.000000Z", - "blockNumber": 11606582, + "id": "1-11692454-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xe2dcfb3621fd1970b4289f1f8251c6d1efb9d0af", + "timestamp": "2021-01-20T13:08:13.000000Z", + "blockNumber": 11692454, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x9ccb3ef6632538dccf464c82bbdd7ff33cb70266", - "balance": "986665854140807995264" + "account": "0xe2dcfb3621fd1970b4289f1f8251c6d1efb9d0af", + "balance": "109353573616276684799" }, { - "id": "1-11606738-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x8224a40c8fcb20c5e20d3971431dfd3e3629b426", - "timestamp": "2021-01-07T09:26:45.000000Z", - "blockNumber": 11606738, + "id": "1-11692835-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xc47c4c896afe31e0c37ecdb54df7836313b6504c", + "timestamp": "2021-01-20T22:47:12.000000Z", + "blockNumber": 11692835, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x8224a40c8fcb20c5e20d3971431dfd3e3629b426", - "balance": "100111510699935631860" + "account": "0xc47c4c896afe31e0c37ecdb54df7836313b6504c", + "balance": "632880030280059877306" }, { - "id": "1-11606802-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x8224a40c8fcb20c5e20d3971431dfd3e3629b426", - "timestamp": "2021-01-07T09:43:21.000000Z", - "blockNumber": 11606802, + "id": "1-11693461-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xf71d161fdc3895f21612d79f15aa819b7a3d296a", + "timestamp": "2021-01-20T16:41:59.000000Z", + "blockNumber": 11693461, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x8224a40c8fcb20c5e20d3971431dfd3e3629b426", - "balance": "100168599953961484886" + "account": "0xf71d161fdc3895f21612d79f15aa819b7a3d296a", + "balance": "13272550539620785848319" }, { - "id": "1-11607291-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x5b2a5d1ab8a5b83c0f22cb1df372d23946aa7d8f", - "timestamp": "2021-01-07T11:30:59.000000Z", - "blockNumber": 11607291, + "id": "1-11693956-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x3d614677aaa130d32ba1d2d41a9b4ae66cb4fb8e", + "timestamp": "2021-01-20T18:21:38.000000Z", + "blockNumber": 11693956, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x5b2a5d1ab8a5b83c0f22cb1df372d23946aa7d8f", - "balance": "1008618784340541919" + "account": "0x3d614677aaa130d32ba1d2d41a9b4ae66cb4fb8e", + "balance": "304190240413868949503" }, { - "id": "1-11607340-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x467927774b59f7cb023863b07960669f958ec19a", - "timestamp": "2021-01-07T11:41:11.000000Z", - "blockNumber": 11607340, + "id": "1-11694663-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xde765353a18a4b4c632efc3842069e927df75082", + "timestamp": "2021-01-20T20:57:52.000000Z", + "blockNumber": 11694663, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x467927774b59f7cb023863b07960669f958ec19a", - "balance": "15250466144712941471547" + "account": "0xde765353a18a4b4c632efc3842069e927df75082", + "balance": "145298604250714144767" }, { - "id": "1-11607386-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x0d341d16a207ffb066ca102cdf37c89f56a5018b", - "timestamp": "2021-01-07T11:51:28.000000Z", - "blockNumber": 11607386, + "id": "1-11695618-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x18f8020f3bca2c20525ebbbade8f6446b5654d6b", + "timestamp": "2021-01-21T00:33:11.000000Z", + "blockNumber": 11695618, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x0d341d16a207ffb066ca102cdf37c89f56a5018b", - "balance": "20051937529330748273" + "account": "0x18f8020f3bca2c20525ebbbade8f6446b5654d6b", + "balance": "608476993502046846975" }, { - "id": "1-11607386-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd85a569f3c26f81070544451131c742283360400", - "timestamp": "2021-01-07T11:51:28.000000Z", - "blockNumber": 11607386, + "id": "1-11696595-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x004098bb5b1d5285e4347bfebfe65b36d20fc697", + "timestamp": "2021-01-21T04:10:33.000000Z", + "blockNumber": 11696595, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xd85a569f3c26f81070544451131c742283360400", - "balance": "4301887948422405999" + "account": "0x004098bb5b1d5285e4347bfebfe65b36d20fc697", + "balance": "2002793737315841736703" }, { - "id": "1-11607788-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xc6e4ad3ccdfc65687d2d60a454a8bddc1f4d6c06", - "timestamp": "2021-01-07T13:22:06.000000Z", - "blockNumber": 11607788, + "id": "1-11700791-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xb08cde7897e02c670865fafeeb96527efdb37c2b", + "timestamp": "2021-01-21T19:50:32.000000Z", + "blockNumber": 11700791, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xc6e4ad3ccdfc65687d2d60a454a8bddc1f4d6c06", - "balance": "1924884304224230485566" + "account": "0xb08cde7897e02c670865fafeeb96527efdb37c2b", + "balance": "130041378751808684031" }, { - "id": "1-11608093-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x80f5fc0bdb33aa0f6572e06cdc726095c15b6204", - "timestamp": "2021-01-07T14:26:41.000000Z", - "blockNumber": 11608093, + "id": "1-11704954-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x20b958bbeb833f79bd7e4b4165d4123b2f904cc8", + "timestamp": "2021-01-22T11:09:57.000000Z", + "blockNumber": 11704954, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x80f5fc0bdb33aa0f6572e06cdc726095c15b6204", - "balance": "30007044148745858896464" + "account": "0x20b958bbeb833f79bd7e4b4165d4123b2f904cc8", + "balance": "205393034328496930815" }, { - "id": "1-11609724-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x2ed7afa17473e17ac59908f088b4371d28585476", - "timestamp": "2021-01-07T20:38:27.000000Z", - "blockNumber": 11609724, + "id": "1-11714355-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x0e861f1d1a0d4fdc90fe18cacae65bb750105dbc", + "timestamp": "2021-01-23T21:42:10.000000Z", + "blockNumber": 11714355, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x2ed7afa17473e17ac59908f088b4371d28585476", - "balance": "53325988598915695352" + "account": "0x0e861f1d1a0d4fdc90fe18cacae65bb750105dbc", + "balance": "2901018944772376100863" }, { - "id": "1-11609724-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd15f105e2667fd52313877585d4a0b316c7d8a20", - "timestamp": "2021-01-07T20:38:27.000000Z", - "blockNumber": 11609724, + "id": "1-11720840-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x09e07add8bffb4f8f130f5c5b76aba96648f9f43", + "timestamp": "2021-01-26T01:56:16.000000Z", + "blockNumber": 11720840, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xd15f105e2667fd52313877585d4a0b316c7d8a20", - "balance": "21043483432764626746" + "account": "0x09e07add8bffb4f8f130f5c5b76aba96648f9f43", + "balance": "0" }, { - "id": "1-11619126-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x0d341d16a207ffb066ca102cdf37c89f56a5018b", - "timestamp": "2021-01-09T07:00:10.000000Z", - "blockNumber": 11619126, + "id": "1-11729284-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x9e8c608392cec747ebd989fc1e237fc5abe51bc5", + "timestamp": "2021-01-26T04:48:53.000000Z", + "blockNumber": 11729284, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x0d341d16a207ffb066ca102cdf37c89f56a5018b", - "balance": "20067636228730034812" + "account": "0x9e8c608392cec747ebd989fc1e237fc5abe51bc5", + "balance": "987886705821094117375" }, { - "id": "1-11619126-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xb0d13fe86b693475edc362d60c8bca6f477e707f", - "timestamp": "2021-01-09T07:00:10.000000Z", - "blockNumber": 11619126, + "id": "1-11761053-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x973b1e385659e317dd43b49c29e45e66c0275696", + "timestamp": "2021-01-31T04:04:30.000000Z", + "blockNumber": 11761053, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xb0d13fe86b693475edc362d60c8bca6f477e707f", - "balance": "100058747362827039143" + "account": "0x973b1e385659e317dd43b49c29e45e66c0275696", + "balance": "304729070192" }, { - "id": "1-11619213-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x4d935d9f2da4e3f924a41ce64085d01bc00424aa", - "timestamp": "2021-01-09T07:19:40.000000Z", - "blockNumber": 11619213, + "id": "1-11763150-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x3f06440e317c3600873ab24868b51697eb2d2ed5", + "timestamp": "2021-01-31T10:09:46.000000Z", + "blockNumber": 11763150, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x4d935d9f2da4e3f924a41ce64085d01bc00424aa", - "balance": "3859090612468829762" + "account": "0x3f06440e317c3600873ab24868b51697eb2d2ed5", + "balance": "47795352479999999999" }, { - "id": "1-11619213-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xcc01d9d54d06b6a0b6d09a9f79c3a6438e505f71", - "timestamp": "2021-01-09T07:19:40.000000Z", - "blockNumber": 11619213, + "id": "1-11780967-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xf72cd97a579fb4b06588812ad3bf3f9c739f02a3", + "timestamp": "2021-02-03T03:50:48.000000Z", + "blockNumber": 11780967, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xcc01d9d54d06b6a0b6d09a9f79c3a6438e505f71", - "balance": "550069100418646355705712" + "account": "0xf72cd97a579fb4b06588812ad3bf3f9c739f02a3", + "balance": "1181609824280532877311" }, { - "id": "1-11619405-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x7567b763043257cfb6cc106a2c0f8dee9253a3c7", - "timestamp": "2021-01-09T08:03:57.000000Z", - "blockNumber": 11619405, + "id": "1-11796118-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x409a4c19b89f18207d58f0e6bcbbebaf77daae67", + "timestamp": "2021-02-05T12:01:36.000000Z", + "blockNumber": 11796118, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x7567b763043257cfb6cc106a2c0f8dee9253a3c7", - "balance": "100074732291313321652" + "account": "0x409a4c19b89f18207d58f0e6bcbbebaf77daae67", + "balance": "334555881679999999999" }, { - "id": "1-11619405-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd15f105e2667fd52313877585d4a0b316c7d8a20", - "timestamp": "2021-01-09T08:03:57.000000Z", - "blockNumber": 11619405, + "id": "1-11810124-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x375319e687ca18615cc2efbc58edc7f4c79fbf98", + "timestamp": "2021-02-07T15:29:17.000000Z", + "blockNumber": 11810124, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xd15f105e2667fd52313877585d4a0b316c7d8a20", - "balance": "21056100047723664668" + "account": "0x375319e687ca18615cc2efbc58edc7f4c79fbf98", + "balance": "1051236134999999999999" }, { - "id": "1-11619563-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x7d5b6ecd614816c81e778c0ffaf5bf8c81fc9867", - "timestamp": "2021-01-09T08:35:11.000000Z", - "blockNumber": 11619563, + "id": "1-11822983-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xb0792a68183ae2d58ad984f49b302db09e09f3fb", + "timestamp": "2021-02-09T15:09:59.000000Z", + "blockNumber": 11822983, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x7d5b6ecd614816c81e778c0ffaf5bf8c81fc9867", - "balance": "100061126722523562958" + "account": "0xb0792a68183ae2d58ad984f49b302db09e09f3fb", + "balance": "29410365999999999999" }, { - "id": "1-11619563-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd85a569f3c26f81070544451131c742283360400", - "timestamp": "2021-01-09T08:35:11.000000Z", - "blockNumber": 11619563, + "id": "1-11834527-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x2b1bbfa5ae8781b86e689fb879a394a111466cbb", + "timestamp": "2021-02-11T09:45:05.000000Z", + "blockNumber": 11834527, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xd85a569f3c26f81070544451131c742283360400", - "balance": "4302906924404688091" + "account": "0x2b1bbfa5ae8781b86e689fb879a394a111466cbb", + "balance": "20000000000000000000" }, { - "id": "1-11620262-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x7d5b6ecd614816c81e778c0ffaf5bf8c81fc9867", - "timestamp": "2021-01-09T11:21:55.000000Z", - "blockNumber": 11620262, + "id": "1-11834527-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x967f9d580e3c3c381904b9857498da17cfe9de85", + "timestamp": "2021-02-11T09:45:05.000000Z", + "blockNumber": 11834527, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x7d5b6ecd614816c81e778c0ffaf5bf8c81fc9867", - "balance": "100064470066011313256" + "account": "0x967f9d580e3c3c381904b9857498da17cfe9de85", + "balance": "20000000000000000000" }, { - "id": "1-11620262-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd440e7ead01720a33f2c888d2eddd76595491eb6", - "timestamp": "2021-01-09T11:21:55.000000Z", - "blockNumber": 11620262, + "id": "1-11834527-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xf2ca216235e60f3bd21551903802a3f9f4f970f3", + "timestamp": "2021-02-11T09:45:05.000000Z", + "blockNumber": 11834527, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xd440e7ead01720a33f2c888d2eddd76595491eb6", - "balance": "14346452887544231693454" + "account": "0xf2ca216235e60f3bd21551903802a3f9f4f970f3", + "balance": "20000000000000000000" }, { - "id": "1-11622750-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x7d5b6ecd614816c81e778c0ffaf5bf8c81fc9867", - "timestamp": "2021-01-09T20:31:39.000000Z", - "blockNumber": 11622750, + "id": "1-11834550-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x241e8e4bfdaaa5a101a7de0074a45be5574a5bef", + "timestamp": "2021-02-11T09:49:35.000000Z", + "blockNumber": 11834550, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x7d5b6ecd614816c81e778c0ffaf5bf8c81fc9867", - "balance": "100092951791129270765" + "account": "0x241e8e4bfdaaa5a101a7de0074a45be5574a5bef", + "balance": "20000000000000000000" }, { - "id": "1-11622750-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd440e7ead01720a33f2c888d2eddd76595491eb6", - "timestamp": "2021-01-09T20:31:39.000000Z", - "blockNumber": 11622750, + "id": "1-11834550-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x4875c8fc7276a10a7bced19f5eaef5b53ed98fff", + "timestamp": "2021-02-11T09:49:35.000000Z", + "blockNumber": 11834550, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xd440e7ead01720a33f2c888d2eddd76595491eb6", - "balance": "0" + "account": "0x4875c8fc7276a10a7bced19f5eaef5b53ed98fff", + "balance": "20000000000000000000" }, { - "id": "1-11623093-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x80f5fc0bdb33aa0f6572e06cdc726095c15b6204", - "timestamp": "2021-01-09T21:43:32.000000Z", - "blockNumber": 11623093, + "id": "1-11834550-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x77cad8d17d92c86c91da44e4bdc943f327cad06b", + "timestamp": "2021-02-11T09:49:35.000000Z", + "blockNumber": 11834550, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x80f5fc0bdb33aa0f6572e06cdc726095c15b6204", - "balance": "30039707508090311630726" + "account": "0x77cad8d17d92c86c91da44e4bdc943f327cad06b", + "balance": "20000000000000000000" }, { - "id": "1-11623093-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xe4455fdec181561e9ffe909dde46aaeaedc55283", - "timestamp": "2021-01-09T21:43:32.000000Z", - "blockNumber": 11623093, + "id": "1-11834550-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xa919482d645684817409e3d3ce15108fb3925382", + "timestamp": "2021-02-11T09:49:35.000000Z", + "blockNumber": 11834550, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xe4455fdec181561e9ffe909dde46aaeaedc55283", - "balance": "20399434521742545093407" + "account": "0xa919482d645684817409e3d3ce15108fb3925382", + "balance": "20000000000000000000" }, { - "id": "1-11623582-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x80f5fc0bdb33aa0f6572e06cdc726095c15b6204", - "timestamp": "2021-01-09T23:36:29.000000Z", - "blockNumber": 11623582, + "id": "1-11834550-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd442975d13c7c1180a15f06d21882707f435e7fa", + "timestamp": "2021-02-11T09:49:35.000000Z", + "blockNumber": 11834550, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x80f5fc0bdb33aa0f6572e06cdc726095c15b6204", - "balance": "30040216171178049856948" + "account": "0xd442975d13c7c1180a15f06d21882707f435e7fa", + "balance": "20000000000000000000" }, { - "id": "1-11623582-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xe4455fdec181561e9ffe909dde46aaeaedc55283", - "timestamp": "2021-01-09T23:36:29.000000Z", - "blockNumber": 11623582, + "id": "1-11834558-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x104fba193abca40a1770b5cfc9d2831caeb9a932", + "timestamp": "2021-02-11T09:52:26.000000Z", + "blockNumber": 11834558, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xe4455fdec181561e9ffe909dde46aaeaedc55283", - "balance": "20399434521742545093407" + "account": "0x104fba193abca40a1770b5cfc9d2831caeb9a932", + "balance": "20000000000000000000" }, { - "id": "1-11626289-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x7d5b6ecd614816c81e778c0ffaf5bf8c81fc9867", - "timestamp": "2021-01-10T09:34:55.000000Z", - "blockNumber": 11626289, + "id": "1-11834558-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xa34c8558b22bced464a4c0cf222457bdc632d1d8", + "timestamp": "2021-02-11T09:52:26.000000Z", + "blockNumber": 11834558, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x7d5b6ecd614816c81e778c0ffaf5bf8c81fc9867", - "balance": "100110747058861887461" + "account": "0xa34c8558b22bced464a4c0cf222457bdc632d1d8", + "balance": "20000000000000000000" }, { - "id": "1-11626289-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xd85a569f3c26f81070544451131c742283360400", - "timestamp": "2021-01-10T09:34:55.000000Z", - "blockNumber": 11626289, + "id": "1-11834587-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x15e23a3fb37ee2e857c36dd4e097ee9344c24265", + "timestamp": "2021-02-11T09:58:25.000000Z", + "blockNumber": 11834587, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xd85a569f3c26f81070544451131c742283360400", - "balance": "4305040736963220924" + "account": "0x15e23a3fb37ee2e857c36dd4e097ee9344c24265", + "balance": "5000000000000000000" }, { - "id": "1-11628759-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x7567b763043257cfb6cc106a2c0f8dee9253a3c7", - "timestamp": "2021-01-10T18:31:21.000000Z", - "blockNumber": 11628759, + "id": "1-11834587-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xcb9a81f4445d3fd7ea64a727391bedef4cd6fe12", + "timestamp": "2021-02-11T09:58:25.000000Z", + "blockNumber": 11834587, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0x7567b763043257cfb6cc106a2c0f8dee9253a3c7", - "balance": "100140390568054938351" + "account": "0xcb9a81f4445d3fd7ea64a727391bedef4cd6fe12", + "balance": "5000000000000000000" }, { - "id": "1-11628759-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0xcd9d04635eed93f64a07baecab7bd5a5e8274ff1", - "timestamp": "2021-01-10T18:31:21.000000Z", - "blockNumber": 11628759, + "id": "1-11850880-0x2a8e1e676ec238d8a992307b495b45b3feaa5e86-0x52c3bb96451b97861f3cb89c6c86ff0a90170afc", + "timestamp": "2021-02-13T22:10:37.000000Z", + "blockNumber": 11850880, "chainId": 1, "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "account": "0xcd9d04635eed93f64a07baecab7bd5a5e8274ff1", - "balance": "21660278252716785877" + "account": "0x52c3bb96451b97861f3cb89c6c86ff0a90170afc", + "balance": "1000000000000000000000" } ], "oeth_erc20Balances": [ @@ -20793,355 +20925,355 @@ "balance": "0" }, { - "id": "1-17130451-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x69e078ebc4631e1947f0c38ef0357de7ed064644", - "timestamp": "2023-04-26T12:38:47.000000Z", - "blockNumber": 17130451, + "id": "1-17188013-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x45e5eef376a1cd55d0d068d9b103e7e07c315fc7", + "timestamp": "2023-05-04T14:57:35.000000Z", + "blockNumber": 17188013, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x69e078ebc4631e1947f0c38ef0357de7ed064644", - "balance": "30014332720446238" + "account": "0x45e5eef376a1cd55d0d068d9b103e7e07c315fc7", + "balance": "1" }, { - "id": "1-17141121-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x69e078ebc4631e1947f0c38ef0357de7ed064644", - "timestamp": "2023-04-28T00:39:11.000000Z", - "blockNumber": 17141121, + "id": "1-17274722-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x33c16456f30e8d826fbf3278317a834f29c2e317", + "timestamp": "2023-05-16T20:47:47.000000Z", + "blockNumber": 17274722, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x69e078ebc4631e1947f0c38ef0357de7ed064644", - "balance": "50044371333450231" + "account": "0x33c16456f30e8d826fbf3278317a834f29c2e317", + "balance": "5000037039298752065" }, { - "id": "1-17147776-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x0546af2f351e70a9e2a43d81f8098b6a572eef0c", - "timestamp": "2023-04-28T23:04:23.000000Z", - "blockNumber": 17147776, + "id": "1-17279172-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xeba5de6f29dbc5db91e796be2b736356a75b0709", + "timestamp": "2023-05-17T11:50:47.000000Z", + "blockNumber": 17279172, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x0546af2f351e70a9e2a43d81f8098b6a572eef0c", - "balance": "256524671344473209" + "account": "0xeba5de6f29dbc5db91e796be2b736356a75b0709", + "balance": "40003951076771154" }, { - "id": "1-17148294-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x9858e47bcbbe6fbac040519b02d7cd4b2c470c66", - "timestamp": "2023-04-29T00:49:11.000000Z", - "blockNumber": 17148294, + "id": "1-17295103-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x1ef4f862c487c9c8377b14163c7dd573617f5018", + "timestamp": "2023-05-19T17:45:59.000000Z", + "blockNumber": 17295103, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x9858e47bcbbe6fbac040519b02d7cd4b2c470c66", - "balance": "0" + "account": "0x1ef4f862c487c9c8377b14163c7dd573617f5018", + "balance": "1000209037734819039" }, { - "id": "1-17148515-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x70fce97d671e81080ca3ab4cc7a59aac2e117137", - "timestamp": "2023-04-29T01:33:35.000000Z", - "blockNumber": 17148515, + "id": "1-17305821-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x9b201d33a9db75c86cacfbe358255872e1118520", + "timestamp": "2023-05-21T05:58:11.000000Z", + "blockNumber": 17305821, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x70fce97d671e81080ca3ab4cc7a59aac2e117137", - "balance": "22065781896121485307" + "account": "0x9b201d33a9db75c86cacfbe358255872e1118520", + "balance": "358112309080725106" }, { - "id": "1-17150533-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "timestamp": "2023-04-29T08:21:11.000000Z", - "blockNumber": 17150533, + "id": "1-17335527-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xbf2ddb52688d13254b90d0f9fa7e8822af0d2e47", + "timestamp": "2023-05-25T10:20:23.000000Z", + "blockNumber": 17335527, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "balance": "70000000000000000" + "account": "0xbf2ddb52688d13254b90d0f9fa7e8822af0d2e47", + "balance": "4000130621936611276" }, { - "id": "1-17154006-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x89ebcb7714bd0d2f33ce3a35c12dbeb7b94af169", - "timestamp": "2023-04-29T20:06:59.000000Z", - "blockNumber": 17154006, + "id": "1-17376716-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xddf2f1896224fd357161216dac3331e203cc3541", + "timestamp": "2023-05-31T05:15:47.000000Z", + "blockNumber": 17376716, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x89ebcb7714bd0d2f33ce3a35c12dbeb7b94af169", - "balance": "5088627092531997266" + "account": "0xddf2f1896224fd357161216dac3331e203cc3541", + "balance": "40004587305459034" }, { - "id": "1-17166319-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xdcee70654261af21c44c093c300ed3bb97b78192", - "timestamp": "2023-05-01T13:37:35.000000Z", - "blockNumber": 17166319, + "id": "1-17395736-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xd29061b76101c5fa086694bd034a88e43594d30f", + "timestamp": "2023-06-02T21:58:11.000000Z", + "blockNumber": 17395736, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xdcee70654261af21c44c093c300ed3bb97b78192", - "balance": "16215647662027689" + "account": "0xd29061b76101c5fa086694bd034a88e43594d30f", + "balance": "0" }, { - "id": "1-17171469-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "timestamp": "2023-05-02T06:59:47.000000Z", - "blockNumber": 17171469, + "id": "1-17419854-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x220db3eaffc504dd84f63487378fe3e178f03619", + "timestamp": "2023-06-06T07:25:11.000000Z", + "blockNumber": 17419854, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "balance": "1020310181276099" + "account": "0x220db3eaffc504dd84f63487378fe3e178f03619", + "balance": "0" }, { - "id": "1-17183670-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x94b17476a93b3262d87b9a326965d1e91f9c13e7", - "timestamp": "2023-05-04T00:12:59.000000Z", - "blockNumber": 17183670, + "id": "1-17449769-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x6525df93df7499929045340026d2f4d0a9960004", + "timestamp": "2023-06-10T12:27:35.000000Z", + "blockNumber": 17449769, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x94b17476a93b3262d87b9a326965d1e91f9c13e7", - "balance": "263929625210430088136" + "account": "0x6525df93df7499929045340026d2f4d0a9960004", + "balance": "150006974996603737" }, { - "id": "1-17185684-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x89ebcb7714bd0d2f33ce3a35c12dbeb7b94af169", - "timestamp": "2023-05-04T06:59:59.000000Z", - "blockNumber": 17185684, + "id": "1-17486441-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x69c8ff18e42b3a7952e88483a705c64c471025f5", + "timestamp": "2023-06-15T16:23:11.000000Z", + "blockNumber": 17486441, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x89ebcb7714bd0d2f33ce3a35c12dbeb7b94af169", - "balance": "5095945742624972158" + "account": "0x69c8ff18e42b3a7952e88483a705c64c471025f5", + "balance": "300030960869330939" }, { - "id": "1-17185932-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xdf38df58ea95afb7e754837c055c9a43cd94e62d", - "timestamp": "2023-05-04T07:49:59.000000Z", - "blockNumber": 17185932, + "id": "1-17514361-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x5a477cf891d4603cd40679155d09b5d37c48cf2c", + "timestamp": "2023-06-19T14:24:23.000000Z", + "blockNumber": 17514361, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xdf38df58ea95afb7e754837c055c9a43cd94e62d", - "balance": "1199938146622280" + "account": "0x5a477cf891d4603cd40679155d09b5d37c48cf2c", + "balance": "0" }, { - "id": "1-17186939-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "timestamp": "2023-05-04T11:14:23.000000Z", - "blockNumber": 17186939, + "id": "1-17530423-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x818b9082947c3462559444a3f6f1220f4ff565a9", + "timestamp": "2023-06-21T20:45:35.000000Z", + "blockNumber": 17530423, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "balance": "1020984993064101" + "account": "0x818b9082947c3462559444a3f6f1220f4ff565a9", + "balance": "1" }, { - "id": "1-17188848-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x9858e47bcbbe6fbac040519b02d7cd4b2c470c66", - "timestamp": "2023-05-04T17:41:35.000000Z", - "blockNumber": 17188848, + "id": "1-17557111-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x834374e98175524ffecdcc73e344a8123896d29a", + "timestamp": "2023-06-25T14:32:35.000000Z", + "blockNumber": 17557111, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x9858e47bcbbe6fbac040519b02d7cd4b2c470c66", - "balance": "0" + "account": "0x834374e98175524ffecdcc73e344a8123896d29a", + "balance": "4000055901450485687" }, - { - "id": "1-17192805-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x2afcbbacf80dd060bf41b5ec8c420ad85aeb1b9e", - "timestamp": "2023-05-05T06:59:47.000000Z", - "blockNumber": 17192805, + { + "id": "1-17583937-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x23dd978a22f81e29941358dbb0eade9f53389eb2", + "timestamp": "2023-06-29T09:02:35.000000Z", + "blockNumber": 17583937, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x2afcbbacf80dd060bf41b5ec8c420ad85aeb1b9e", - "balance": "100030028802784" + "account": "0x23dd978a22f81e29941358dbb0eade9f53389eb2", + "balance": "15000532024758628" }, { - "id": "1-17193191-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x0693e566e00d95edea67deb414e49c17768d6596", - "timestamp": "2023-05-05T08:17:59.000000Z", - "blockNumber": 17193191, + "id": "1-17608539-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xbda12588c11ab8bcf2c47f3190a1078d8aadc5bc", + "timestamp": "2023-07-02T19:55:47.000000Z", + "blockNumber": 17608539, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x0693e566e00d95edea67deb414e49c17768d6596", - "balance": "25000888905573031" + "account": "0xbda12588c11ab8bcf2c47f3190a1078d8aadc5bc", + "balance": "4250923685510910827" }, { - "id": "1-17193191-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "timestamp": "2023-05-05T08:17:59.000000Z", - "blockNumber": 17193191, + "id": "1-17661204-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xe21a8b8fa966e8b5f31e60c77b1ffd0e175d049a", + "timestamp": "2023-07-10T05:37:23.000000Z", + "blockNumber": 17661204, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "balance": "1021298581222045" + "account": "0xe21a8b8fa966e8b5f31e60c77b1ffd0e175d049a", + "balance": "0" }, { - "id": "1-17199927-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x8e02247d3ee0e6153495c971ffd45aa131f4d7cb", - "timestamp": "2023-05-06T06:59:47.000000Z", - "blockNumber": 17199927, + "id": "1-17687205-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xfa150d1e08284efb1da35d6175217b9a7083baa7", + "timestamp": "2023-07-13T21:19:11.000000Z", + "blockNumber": 17687205, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x8e02247d3ee0e6153495c971ffd45aa131f4d7cb", - "balance": "121756283215804326438" + "account": "0xfa150d1e08284efb1da35d6175217b9a7083baa7", + "balance": "1048789591126628687" }, { - "id": "1-17207051-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x70fce97d671e81080ca3ab4cc7a59aac2e117137", - "timestamp": "2023-05-07T07:01:11.000000Z", - "blockNumber": 17207051, + "id": "1-17731096-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xfd0000000100069ad1670066004306009b487ad7", + "timestamp": "2023-07-20T01:26:35.000000Z", + "blockNumber": 17731096, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x70fce97d671e81080ca3ab4cc7a59aac2e117137", - "balance": "22143223130910475272" + "account": "0xfd0000000100069ad1670066004306009b487ad7", + "balance": "4" }, { - "id": "1-17214150-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "timestamp": "2023-05-08T06:59:59.000000Z", - "blockNumber": 17214150, + "id": "1-17761451-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x4885719ba34be4ca4a3219d907514fa6a44087c3", + "timestamp": "2023-07-24T07:23:35.000000Z", + "blockNumber": 17761451, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "balance": "229747071968735828" + "account": "0x4885719ba34be4ca4a3219d907514fa6a44087c3", + "balance": "106854296564412767" }, { - "id": "1-17214461-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xf05c12fa7d8548be726844067a0e63fa6234f0bb", - "timestamp": "2023-05-08T08:02:47.000000Z", - "blockNumber": 17214461, + "id": "1-17807996-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xc7ad94376b7117dfd68e0e5c50ce189dd3fb55e9", + "timestamp": "2023-07-30T19:41:47.000000Z", + "blockNumber": 17807996, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xf05c12fa7d8548be726844067a0e63fa6234f0bb", - "balance": "29999999999999998" + "account": "0xc7ad94376b7117dfd68e0e5c50ce189dd3fb55e9", + "balance": "2714730756054255163" }, { - "id": "1-17221281-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xdf38df58ea95afb7e754837c055c9a43cd94e62d", - "timestamp": "2023-05-09T07:01:47.000000Z", - "blockNumber": 17221281, + "id": "1-17867572-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x487102f05490a4dceb6859c14626f7a1e149a956", + "timestamp": "2023-08-08T03:38:11.000000Z", + "blockNumber": 17867572, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xdf38df58ea95afb7e754837c055c9a43cd94e62d", - "balance": "1202056430764501" + "account": "0x487102f05490a4dceb6859c14626f7a1e149a956", + "balance": "553046842668368945" }, { - "id": "1-17228384-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x94b17476a93b3262d87b9a326965d1e91f9c13e7", - "timestamp": "2023-05-10T06:59:59.000000Z", - "blockNumber": 17228384, + "id": "1-17947953-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xfa9dbab87da24fa3716c084cc8f9cc4f5e573849", + "timestamp": "2023-08-19T09:36:11.000000Z", + "blockNumber": 17947953, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x94b17476a93b3262d87b9a326965d1e91f9c13e7", - "balance": "263854659290431274602" + "account": "0xfa9dbab87da24fa3716c084cc8f9cc4f5e573849", + "balance": "0" }, { - "id": "1-17234703-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x69e078ebc4631e1947f0c38ef0357de7ed064644", - "timestamp": "2023-05-11T04:21:11.000000Z", - "blockNumber": 17234703, + "id": "1-18060095-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x48183e086ec1b49fad7f6cfb3de0b42f364c6d60", + "timestamp": "2023-09-04T02:30:59.000000Z", + "blockNumber": 18060095, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x69e078ebc4631e1947f0c38ef0357de7ed064644", - "balance": "51131012944067979" + "account": "0x48183e086ec1b49fad7f6cfb3de0b42f364c6d60", + "balance": "0" }, { - "id": "1-17235487-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x57b0dd7967955c92b6e34a038b47fee63e1efd1a", - "timestamp": "2023-05-11T06:59:47.000000Z", - "blockNumber": 17235487, + "id": "1-18111147-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x7dd68ccc7eadbe17120f9be5dbc7d69b28614145", + "timestamp": "2023-09-11T05:52:35.000000Z", + "blockNumber": 18111147, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x57b0dd7967955c92b6e34a038b47fee63e1efd1a", - "balance": "10049113721604024537" + "account": "0x7dd68ccc7eadbe17120f9be5dbc7d69b28614145", + "balance": "2000752070741659364" }, { - "id": "1-17242511-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x1a3bbee573a19930fc73cacf4216fe8a06839a49", - "timestamp": "2023-05-12T06:59:59.000000Z", - "blockNumber": 17242511, + "id": "1-18176842-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x5ef7f250f74d4f11a68054ae4e150705474a6d4a", + "timestamp": "2023-09-20T11:35:59.000000Z", + "blockNumber": 18176842, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x1a3bbee573a19930fc73cacf4216fe8a06839a49", - "balance": "1002850693975242" + "account": "0x5ef7f250f74d4f11a68054ae4e150705474a6d4a", + "balance": "1999999999999999" }, { - "id": "1-17242511-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "timestamp": "2023-05-12T06:59:59.000000Z", - "blockNumber": 17242511, + "id": "1-18240076-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x9bfb3c8f18137e4a8dc3656aa160ee6c9b17befd", + "timestamp": "2023-09-29T08:13:23.000000Z", + "blockNumber": 18240076, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "balance": "1023895508832641" + "account": "0x9bfb3c8f18137e4a8dc3656aa160ee6c9b17befd", + "balance": "61048585275" }, { - "id": "1-17249441-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xf05c12fa7d8548be726844067a0e63fa6234f0bb", - "timestamp": "2023-05-13T07:00:11.000000Z", - "blockNumber": 17249441, + "id": "1-18271524-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x68512d66e6386369686f58a912c86b390b9299d0", + "timestamp": "2023-10-04T00:32:23.000000Z", + "blockNumber": 18271524, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xf05c12fa7d8548be726844067a0e63fa6234f0bb", - "balance": "30055284787090112" + "account": "0x68512d66e6386369686f58a912c86b390b9299d0", + "balance": "1" }, { - "id": "1-17256504-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xd6415162f48140d6090959cb8068174c68e81705", - "timestamp": "2023-05-14T06:59:47.000000Z", - "blockNumber": 17256504, + "id": "1-18325805-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x542c8e112523fa9c4d92cf2e1da4e7f76903144d", + "timestamp": "2023-10-11T07:50:47.000000Z", + "blockNumber": 18325805, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xd6415162f48140d6090959cb8068174c68e81705", - "balance": "100328205938787" + "account": "0x542c8e112523fa9c4d92cf2e1da4e7f76903144d", + "balance": "2124330524869111487" }, { - "id": "1-17263557-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x8e02247d3ee0e6153495c971ffd45aa131f4d7cb", - "timestamp": "2023-05-15T06:59:47.000000Z", - "blockNumber": 17263557, + "id": "1-18365647-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xc0d9edde65b443c5b9a634dfdf8e5ba91289c8a1", + "timestamp": "2023-10-16T21:32:59.000000Z", + "blockNumber": 18365647, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x8e02247d3ee0e6153495c971ffd45aa131f4d7cb", - "balance": "122152825014900665346" + "account": "0xc0d9edde65b443c5b9a634dfdf8e5ba91289c8a1", + "balance": "1009798920671872535" }, { - "id": "1-17266168-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x70fce97d671e81080ca3ab4cc7a59aac2e117137", - "timestamp": "2023-05-15T15:49:11.000000Z", - "blockNumber": 17266168, + "id": "1-18419562-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x0c8c1aa358b03ef0aaae0f01f781a59622ff6573", + "timestamp": "2023-10-24T10:37:23.000000Z", + "blockNumber": 18419562, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x70fce97d671e81080ca3ab4cc7a59aac2e117137", - "balance": "22210769363237728424" + "account": "0x0c8c1aa358b03ef0aaae0f01f781a59622ff6573", + "balance": "313741309537392825" }, { - "id": "1-17266841-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x9858e47bcbbe6fbac040519b02d7cd4b2c470c66", - "timestamp": "2023-05-15T18:04:59.000000Z", - "blockNumber": 17266841, + "id": "1-18505297-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x2cf9d4bee0f1875e1957e18eb62b46b488975ed4", + "timestamp": "2023-11-05T10:45:23.000000Z", + "blockNumber": 18505297, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x9858e47bcbbe6fbac040519b02d7cd4b2c470c66", - "balance": "0" + "account": "0x2cf9d4bee0f1875e1957e18eb62b46b488975ed4", + "balance": "247771470227673731" }, { - "id": "1-17269766-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x70fce97d671e81080ca3ab4cc7a59aac2e117137", - "timestamp": "2023-05-16T03:59:11.000000Z", - "blockNumber": 17269766, + "id": "1-18565847-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x9fa7bb759641fcd37fe4ae41f725e0f653f2c726", + "timestamp": "2023-11-13T22:14:59.000000Z", + "blockNumber": 18565847, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x70fce97d671e81080ca3ab4cc7a59aac2e117137", - "balance": "22214060516662819401" + "account": "0x9fa7bb759641fcd37fe4ae41f725e0f653f2c726", + "balance": "1" }, { - "id": "1-17270007-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xdcee70654261af21c44c093c300ed3bb97b78192", - "timestamp": "2023-05-16T04:48:11.000000Z", - "blockNumber": 17270007, + "id": "1-18672463-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xccf6e34c8896220a80421bd189c781e0a7fcbfb4", + "timestamp": "2023-11-28T20:19:59.000000Z", + "blockNumber": 18672463, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xdcee70654261af21c44c093c300ed3bb97b78192", - "balance": "32283182272134899" + "account": "0xccf6e34c8896220a80421bd189c781e0a7fcbfb4", + "balance": "40100437061677354314" }, { - "id": "1-17270658-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xab7c7e7ac51f70dd959f3541316dbd715773158b", - "timestamp": "2023-05-16T07:00:23.000000Z", - "blockNumber": 17270658, + "id": "1-18758999-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x8e3d5ff070def2d04463b73030a18df3dacb6502", + "timestamp": "2023-12-10T23:10:35.000000Z", + "blockNumber": 18758999, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xab7c7e7ac51f70dd959f3541316dbd715773158b", - "balance": "5021489888340600" + "account": "0x8e3d5ff070def2d04463b73030a18df3dacb6502", + "balance": "16972551380768528" }, { - "id": "1-17272838-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "timestamp": "2023-05-16T14:25:47.000000Z", - "blockNumber": 17272838, + "id": "1-18803508-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xd2c40b8cc8bcac74ee00c030f209b3b3ff1deaad", + "timestamp": "2023-12-17T04:54:59.000000Z", + "blockNumber": 18803508, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "balance": "230448274475306190" + "account": "0xd2c40b8cc8bcac74ee00c030f209b3b3ff1deaad", + "balance": "100020667743228914" }, { - "id": "1-17273002-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xc14cc371d1fa035945ff2c0995fefaef4b6997fe", - "timestamp": "2023-05-16T14:58:47.000000Z", - "blockNumber": 17273002, + "id": "1-18814380-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0xda494ca64cc7c878a51de303764c64c2402f146b", + "timestamp": "2023-12-18T17:32:59.000000Z", + "blockNumber": 18814380, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0xc14cc371d1fa035945ff2c0995fefaef4b6997fe", - "balance": "699999999999999999" + "account": "0xda494ca64cc7c878a51de303764c64c2402f146b", + "balance": "500009681463601359" }, { - "id": "1-17273398-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x882651817bc443fabc95c7cc9124367082470d66", - "timestamp": "2023-05-16T16:19:23.000000Z", - "blockNumber": 17273398, + "id": "1-18815525-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x22145532180494d08425b2c189338f9f982889e1", + "timestamp": "2023-12-18T21:24:47.000000Z", + "blockNumber": 18815525, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x882651817bc443fabc95c7cc9124367082470d66", - "balance": "190137994872117909" + "account": "0x22145532180494d08425b2c189338f9f982889e1", + "balance": "1" }, { - "id": "1-17273646-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x17768cfd6030e2b65eb5086e34a512fde5dc1f1f", - "timestamp": "2023-05-16T17:09:35.000000Z", - "blockNumber": 17273646, + "id": "1-18822012-0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3-0x0b655fcea0314fc45a6767d19febf1c3178ee9b3", + "timestamp": "2023-12-19T19:29:23.000000Z", + "blockNumber": 18822012, "chainId": 1, "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "account": "0x17768cfd6030e2b65eb5086e34a512fde5dc1f1f", - "balance": "1034070290528202969" + "account": "0x0b655fcea0314fc45a6767d19febf1c3178ee9b3", + "balance": "0" } ], "superoethb_erc20Balances": [ @@ -21155,355 +21287,355 @@ "balance": "0" }, { - "id": "8453-18776385-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6446021f4e396da3df4235c62537431372195d38", - "timestamp": "2024-08-22T15:55:17.000000Z", - "blockNumber": 18776385, + "id": "8453-19050774-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6cb442acf35158d5eda88fe602221b67b400be3e", + "timestamp": "2024-08-29T01:28:21.000000Z", + "blockNumber": 19050774, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6446021f4e396da3df4235c62537431372195d38", - "balance": "15200022757190663" + "account": "0x6cb442acf35158d5eda88fe602221b67b400be3e", + "balance": "0" }, { - "id": "8453-18891227-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6446021f4e396da3df4235c62537431372195d38", - "timestamp": "2024-08-25T07:43:21.000000Z", - "blockNumber": 18891227, + "id": "8453-19352816-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x4d3869e2451d28bb4f03aeda60322eaf01e912db", + "timestamp": "2024-09-05T00:09:39.000000Z", + "blockNumber": 19352816, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6446021f4e396da3df4235c62537431372195d38", - "balance": "16700028029866075" + "account": "0x4d3869e2451d28bb4f03aeda60322eaf01e912db", + "balance": "571912371" }, { - "id": "8453-18934461-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x96feb7b6f808dd2bbd09c9e5ccde77cabd58d019", - "timestamp": "2024-08-26T07:44:29.000000Z", - "blockNumber": 18934461, + "id": "8453-19354061-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x21484a41b00c014c4ad5c92bbb7661fd7c1c9a2b", + "timestamp": "2024-09-05T00:51:09.000000Z", + "blockNumber": 19354061, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x96feb7b6f808dd2bbd09c9e5ccde77cabd58d019", - "balance": "12347877297960820" + "account": "0x21484a41b00c014c4ad5c92bbb7661fd7c1c9a2b", + "balance": "377415094" }, { - "id": "8453-18986862-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x717c75ad42619e3c592a4e29a70cf160bacb4532", - "timestamp": "2024-08-27T12:51:11.000000Z", - "blockNumber": 18986862, + "id": "8453-19358832-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x64a541629ee3089b513aff1cda971f417ed58e32", + "timestamp": "2024-09-05T03:30:57.000000Z", + "blockNumber": 19358832, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x717c75ad42619e3c592a4e29a70cf160bacb4532", - "balance": "9999999999999999" + "account": "0x64a541629ee3089b513aff1cda971f417ed58e32", + "balance": "89922863" }, { - "id": "8453-19017474-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "timestamp": "2024-08-28T05:51:35.000000Z", - "blockNumber": 19017474, + "id": "8453-19363906-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x3f6364f662b0127a3430bb9a9fc16b602da9a188", + "timestamp": "2024-09-05T06:19:19.000000Z", + "blockNumber": 19363906, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "balance": "10202228573886314" + "account": "0x3f6364f662b0127a3430bb9a9fc16b602da9a188", + "balance": "183522716" }, { - "id": "8453-19033653-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6446021f4e396da3df4235c62537431372195d38", - "timestamp": "2024-08-28T14:50:53.000000Z", - "blockNumber": 19033653, + "id": "8453-19369300-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x04795cdee2b677b46878896dae76be5cb174dac6", + "timestamp": "2024-09-05T09:19:07.000000Z", + "blockNumber": 19369300, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6446021f4e396da3df4235c62537431372195d38", - "balance": "19343031382759167" + "account": "0x04795cdee2b677b46878896dae76be5cb174dac6", + "balance": "224711844" }, { - "id": "8453-19036788-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "timestamp": "2024-08-28T16:35:23.000000Z", - "blockNumber": 19036788, + "id": "8453-19391929-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x7487f31e9342b39b2a1d8819fb49de77e2f39f48", + "timestamp": "2024-09-05T21:53:25.000000Z", + "blockNumber": 19391929, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "balance": "25201101215802806" + "account": "0x7487f31e9342b39b2a1d8819fb49de77e2f39f48", + "balance": "6600000000000000000" }, { - "id": "8453-19059409-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6cb442acf35158d5eda88fe602221b67b400be3e", - "timestamp": "2024-08-29T05:09:25.000000Z", - "blockNumber": 19059409, + "id": "8453-19559483-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x2f054d822a80f7387998c4de552ec758b949295d", + "timestamp": "2024-09-09T18:58:33.000000Z", + "blockNumber": 19559483, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6cb442acf35158d5eda88fe602221b67b400be3e", - "balance": "0" + "account": "0x2f054d822a80f7387998c4de552ec758b949295d", + "balance": "14839999999999999999" }, { - "id": "8453-19062329-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6446021f4e396da3df4235c62537431372195d38", - "timestamp": "2024-08-29T06:46:45.000000Z", - "blockNumber": 19062329, + "id": "8453-19638969-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x7ebe03abe8bc11f821fea40b0206ea27335b7e50", + "timestamp": "2024-09-11T15:08:05.000000Z", + "blockNumber": 19638969, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6446021f4e396da3df4235c62537431372195d38", - "balance": "20103884158031171963" + "account": "0x7ebe03abe8bc11f821fea40b0206ea27335b7e50", + "balance": "2437477" }, { - "id": "8453-19074752-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x3c112e20141b65041c252a68a611ef145f58b7bc", - "timestamp": "2024-08-29T13:40:51.000000Z", - "blockNumber": 19074752, + "id": "8453-19654987-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xceff98a045a3732f3e26247a29ba5e7d52fe84b2", + "timestamp": "2024-09-12T00:06:53.000000Z", + "blockNumber": 19654987, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x3c112e20141b65041c252a68a611ef145f58b7bc", - "balance": "224377329206260483447" + "account": "0xceff98a045a3732f3e26247a29ba5e7d52fe84b2", + "balance": "0" }, { - "id": "8453-19104831-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xf92aaa76e61af8dd5e1efc888eaceb229d4a6795", - "timestamp": "2024-08-30T06:23:29.000000Z", - "blockNumber": 19104831, + "id": "8453-19655247-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xa0eba15eda152fcdc38fb32e3c50f73e3a2ea965", + "timestamp": "2024-09-12T00:12:43.000000Z", + "blockNumber": 19655247, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0xf92aaa76e61af8dd5e1efc888eaceb229d4a6795", - "balance": "500752931205668" + "account": "0xa0eba15eda152fcdc38fb32e3c50f73e3a2ea965", + "balance": "0" }, { - "id": "8453-19148031-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x22b7ca19f57c8dbbcb49452aa865cac1f3d3ba44", - "timestamp": "2024-08-31T06:23:29.000000Z", - "blockNumber": 19148031, + "id": "8453-19656117-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x8fb22c37bee6e64a787942da05cba1fffeb72f91", + "timestamp": "2024-09-12T00:55:37.000000Z", + "blockNumber": 19656117, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x22b7ca19f57c8dbbcb49452aa865cac1f3d3ba44", - "balance": "1001343954849177" + "account": "0x8fb22c37bee6e64a787942da05cba1fffeb72f91", + "balance": "0" }, { - "id": "8453-19180456-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x0000000000000000000000000000000000000001", - "timestamp": "2024-09-01T00:24:19.000000Z", - "blockNumber": 19180456, + "id": "8453-19657506-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xca686974913389d42f3c5f61010503daccdb487a", + "timestamp": "2024-09-12T01:25:59.000000Z", + "blockNumber": 19657506, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x0000000000000000000000000000000000000001", - "balance": "1001673318889497" + "account": "0xca686974913389d42f3c5f61010503daccdb487a", + "balance": "515000184305911058852" }, { - "id": "8453-19191231-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x0000000000000000000000000000000000000001", - "timestamp": "2024-09-01T06:23:29.000000Z", - "blockNumber": 19191231, + "id": "8453-19659841-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xc315f794b2b2f988d15feaa380f0b36f1842a806", + "timestamp": "2024-09-12T02:45:29.000000Z", + "blockNumber": 19659841, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x0000000000000000000000000000000000000001", - "balance": "1001841495193020" + "account": "0xc315f794b2b2f988d15feaa380f0b36f1842a806", + "balance": "85380556763683501" }, { - "id": "8453-19224360-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xe6e99e711d604c6341a5adaa28dbb7a00e2a7616", - "timestamp": "2024-09-02T00:47:47.000000Z", - "blockNumber": 19224360, + "id": "8453-19663508-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x5bf2b6b176b98d20eace5d996568f4f1e69cff24", + "timestamp": "2024-09-12T04:46:17.000000Z", + "blockNumber": 19663508, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0xe6e99e711d604c6341a5adaa28dbb7a00e2a7616", - "balance": "250743617972946" + "account": "0x5bf2b6b176b98d20eace5d996568f4f1e69cff24", + "balance": "110809746534005802" }, { - "id": "8453-19234431-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x69405c3e69569859ca43833125bc7aba0e5a3414", - "timestamp": "2024-09-02T06:23:29.000000Z", - "blockNumber": 19234431, + "id": "8453-19665955-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6aaefbe8564aa2719139bb7a4335f94a380c6476", + "timestamp": "2024-09-12T06:11:33.000000Z", + "blockNumber": 19665955, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x69405c3e69569859ca43833125bc7aba0e5a3414", - "balance": "2004940737272217" + "account": "0x6aaefbe8564aa2719139bb7a4335f94a380c6476", + "balance": "1" }, { - "id": "8453-19255589-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "timestamp": "2024-09-02T18:08:45.000000Z", - "blockNumber": 19255589, + "id": "8453-19668450-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xf7ce05cb95d321c7f22aefd1defb99e54e087b15", + "timestamp": "2024-09-12T07:33:15.000000Z", + "blockNumber": 19668450, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "balance": "10021615553947337" + "account": "0xf7ce05cb95d321c7f22aefd1defb99e54e087b15", + "balance": "0" }, { - "id": "8453-19277494-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x2d42d6bb3d18a7be35d76b599aee9d3358b22b3e", - "timestamp": "2024-09-03T06:18:55.000000Z", - "blockNumber": 19277494, + "id": "8453-19671319-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x302757fe1990e6558e03d05036bb88c3129a22c8", + "timestamp": "2024-09-12T09:11:53.000000Z", + "blockNumber": 19671319, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x2d42d6bb3d18a7be35d76b599aee9d3358b22b3e", + "account": "0x302757fe1990e6558e03d05036bb88c3129a22c8", "balance": "1" }, { - "id": "8453-19277632-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x22169e0694de4a74133bd06f01857556408f2ba2", - "timestamp": "2024-09-03T06:23:31.000000Z", - "blockNumber": 19277632, + "id": "8453-19676261-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x8d4cf1176c1fd141840af5d830b5d92bfb6826b1", + "timestamp": "2024-09-12T11:52:13.000000Z", + "blockNumber": 19676261, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x22169e0694de4a74133bd06f01857556408f2ba2", - "balance": "1" + "account": "0x8d4cf1176c1fd141840af5d830b5d92bfb6826b1", + "balance": "0" }, { - "id": "8453-19283159-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xe32e3bd2ec560513cab4757564ca50d13caf9f7f", - "timestamp": "2024-09-03T09:27:45.000000Z", - "blockNumber": 19283159, + "id": "8453-19682426-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x1a40b1f0d0bbec72e27f014deb2dc78930582006", + "timestamp": "2024-09-12T15:20:07.000000Z", + "blockNumber": 19682426, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0xe32e3bd2ec560513cab4757564ca50d13caf9f7f", + "account": "0x1a40b1f0d0bbec72e27f014deb2dc78930582006", "balance": "0" }, { - "id": "8453-19319234-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x717c75ad42619e3c592a4e29a70cf160bacb4532", - "timestamp": "2024-09-04T05:30:15.000000Z", - "blockNumber": 19319234, + "id": "8453-19690310-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xdf3e46a485204ce48fa0908177edf52abcda9eaf", + "timestamp": "2024-09-12T19:39:27.000000Z", + "blockNumber": 19690310, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x717c75ad42619e3c592a4e29a70cf160bacb4532", - "balance": "20532542788845916" + "account": "0xdf3e46a485204ce48fa0908177edf52abcda9eaf", + "balance": "40201769135333370" }, { - "id": "8453-19320831-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "timestamp": "2024-09-04T06:23:29.000000Z", - "blockNumber": 19320831, + "id": "8453-19699451-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x0b1944f159fcbdef37880fb27503052a8605acf9", + "timestamp": "2024-09-13T01:03:33.000000Z", + "blockNumber": 19699451, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x58890a9cb27586e83cb51d2d26bbe18a1a647245", - "balance": "10028876130805063" + "account": "0x0b1944f159fcbdef37880fb27503052a8605acf9", + "balance": "54025606" }, { - "id": "8453-19332497-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x22169e0694de4a74133bd06f01857556408f2ba2", - "timestamp": "2024-09-04T12:52:21.000000Z", - "blockNumber": 19332497, + "id": "8453-19731855-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x9ea39813af1fb23003e90880230873634196dacd", + "timestamp": "2024-09-13T18:44:17.000000Z", + "blockNumber": 19731855, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x22169e0694de4a74133bd06f01857556408f2ba2", - "balance": "1" + "account": "0x9ea39813af1fb23003e90880230873634196dacd", + "balance": "19998500000000000000" }, { - "id": "8453-19332497-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "timestamp": "2024-09-04T12:52:21.000000Z", - "blockNumber": 19332497, + "id": "8453-19787499-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x7ff27249c4fbcf642e5310d9771c5e08b2d49856", + "timestamp": "2024-09-15T01:39:05.000000Z", + "blockNumber": 19787499, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0xfd9e6005187f448957a0972a7d0c0a6da2911236", - "balance": "25271802167057802" + "account": "0x7ff27249c4fbcf642e5310d9771c5e08b2d49856", + "balance": "10000000000000000000" }, { - "id": "8453-19352691-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x9f1ccb5da202d445fb59cfebf6eec72975e7ed4e", - "timestamp": "2024-09-05T00:05:29.000000Z", - "blockNumber": 19352691, + "id": "8453-19851191-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x3a155cc3d105a8b0aa9e62ef4cad543abf69fb0f", + "timestamp": "2024-09-16T13:02:09.000000Z", + "blockNumber": 19851191, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x9f1ccb5da202d445fb59cfebf6eec72975e7ed4e", - "balance": "211447470497" + "account": "0x3a155cc3d105a8b0aa9e62ef4cad543abf69fb0f", + "balance": "9597867166849787" }, { - "id": "8453-19352885-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6446021f4e396da3df4235c62537431372195d38", - "timestamp": "2024-09-05T00:11:57.000000Z", - "blockNumber": 19352885, + "id": "8453-19896809-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x4be7c6c4156ae64cf38d9e3d2396dbe78f15b35f", + "timestamp": "2024-09-17T14:22:45.000000Z", + "blockNumber": 19896809, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6446021f4e396da3df4235c62537431372195d38", - "balance": "1730411536601830571812" + "account": "0x4be7c6c4156ae64cf38d9e3d2396dbe78f15b35f", + "balance": "10000000000000000000" }, { - "id": "8453-19353136-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6cb442acf35158d5eda88fe602221b67b400be3e", - "timestamp": "2024-09-05T00:20:19.000000Z", - "blockNumber": 19353136, + "id": "8453-19932105-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x9c4b88fbe06b6b1e461d9d294ecb7fb0c841db4f", + "timestamp": "2024-09-18T09:59:17.000000Z", + "blockNumber": 19932105, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6cb442acf35158d5eda88fe602221b67b400be3e", - "balance": "0" + "account": "0x9c4b88fbe06b6b1e461d9d294ecb7fb0c841db4f", + "balance": "5227140040911121" }, { - "id": "8453-19353256-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6fb655476fdcfb9712dd200308d941a1c6d1119e", - "timestamp": "2024-09-05T00:24:19.000000Z", - "blockNumber": 19353256, + "id": "8453-19951454-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xf8f629239414e21cd8682174b6ae2557201f19c6", + "timestamp": "2024-09-18T20:44:15.000000Z", + "blockNumber": 19951454, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6fb655476fdcfb9712dd200308d941a1c6d1119e", - "balance": "144475827112829272742" + "account": "0xf8f629239414e21cd8682174b6ae2557201f19c6", + "balance": "20322211373719115787" }, { - "id": "8453-19353530-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x525320d8712aeab3f3fc6195102abd477ad998ff", - "timestamp": "2024-09-05T00:33:27.000000Z", - "blockNumber": 19353530, + "id": "8453-19957712-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x5b15cbd32ca5e9f9f484fb1f9788d7ff08e4e6a9", + "timestamp": "2024-09-19T00:12:51.000000Z", + "blockNumber": 19957712, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x525320d8712aeab3f3fc6195102abd477ad998ff", - "balance": "193287140" + "account": "0x5b15cbd32ca5e9f9f484fb1f9788d7ff08e4e6a9", + "balance": "396770840270216911" }, { - "id": "8453-19353879-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x341c18d764d0843698122ae5b5d2dee20067645d", - "timestamp": "2024-09-05T00:45:05.000000Z", - "blockNumber": 19353879, + "id": "8453-19959154-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xf45a4c6e742683c3db5a487dbdf91a056553c78e", + "timestamp": "2024-09-19T01:01:51.000000Z", + "blockNumber": 19959154, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x341c18d764d0843698122ae5b5d2dee20067645d", - "balance": "902036866" + "account": "0xf45a4c6e742683c3db5a487dbdf91a056553c78e", + "balance": "0" }, { - "id": "8453-19354573-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x9f1ccb5da202d445fb59cfebf6eec72975e7ed4e", - "timestamp": "2024-09-05T01:08:13.000000Z", - "blockNumber": 19354573, + "id": "8453-19962967-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xd91c77f34880441bf2ad568a8feab6ac117f9916", + "timestamp": "2024-09-19T03:24:19.000000Z", + "blockNumber": 19962967, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x9f1ccb5da202d445fb59cfebf6eec72975e7ed4e", - "balance": "430245374093275" + "account": "0xd91c77f34880441bf2ad568a8feab6ac117f9916", + "balance": "103745081675" }, { - "id": "8453-19355116-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x9f1ccb5da202d445fb59cfebf6eec72975e7ed4e", - "timestamp": "2024-09-05T01:26:19.000000Z", - "blockNumber": 19355116, + "id": "8453-19967462-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x12dad3425d0ec383ebd9e86139a103ce119aa0b2", + "timestamp": "2024-09-19T05:41:35.000000Z", + "blockNumber": 19967462, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x9f1ccb5da202d445fb59cfebf6eec72975e7ed4e", - "balance": "430244444848322" + "account": "0x12dad3425d0ec383ebd9e86139a103ce119aa0b2", + "balance": "1" }, { - "id": "8453-19356485-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xead3f1e420d6c29bf5a0e0e240441a4fe4b85193", - "timestamp": "2024-09-05T02:11:57.000000Z", - "blockNumber": 19356485, + "id": "8453-19972834-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x9e59edf20d62acbc689d5e72b8f72fedd7a3d282", + "timestamp": "2024-09-19T08:44:25.000000Z", + "blockNumber": 19972834, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0xead3f1e420d6c29bf5a0e0e240441a4fe4b85193", - "balance": "14311950223" + "account": "0x9e59edf20d62acbc689d5e72b8f72fedd7a3d282", + "balance": "1" }, { - "id": "8453-19357022-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6cb442acf35158d5eda88fe602221b67b400be3e", - "timestamp": "2024-09-05T02:29:51.000000Z", - "blockNumber": 19357022, + "id": "8453-19983680-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x58b08bd3b495994439a16cbd6effbeccfe01f634", + "timestamp": "2024-09-19T14:38:57.000000Z", + "blockNumber": 19983680, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6cb442acf35158d5eda88fe602221b67b400be3e", - "balance": "0" + "account": "0x58b08bd3b495994439a16cbd6effbeccfe01f634", + "balance": "6953497184246020" }, { - "id": "8453-19358807-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xde276b1df6dbeaff3424aabe4b92697211185ce1", - "timestamp": "2024-09-05T03:29:21.000000Z", - "blockNumber": 19358807, + "id": "8453-19991899-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x42d3617495205563f85f85671cd8f9bcc9bca7e4", + "timestamp": "2024-09-19T19:12:25.000000Z", + "blockNumber": 19991899, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0xde276b1df6dbeaff3424aabe4b92697211185ce1", - "balance": "7019965" + "account": "0x42d3617495205563f85f85671cd8f9bcc9bca7e4", + "balance": "49794749920200506893" }, { - "id": "8453-19360167-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x6cb442acf35158d5eda88fe602221b67b400be3e", - "timestamp": "2024-09-05T04:14:41.000000Z", - "blockNumber": 19360167, + "id": "8453-20021969-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xce50b2ff94ff59eba189749feb56f06a2976de0a", + "timestamp": "2024-09-20T11:54:45.000000Z", + "blockNumber": 20021969, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x6cb442acf35158d5eda88fe602221b67b400be3e", - "balance": "0" + "account": "0xce50b2ff94ff59eba189749feb56f06a2976de0a", + "balance": "3000000000000000000" }, { - "id": "8453-19360811-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x0899a0b74ebab3f637b59dbf90883e6df481fe00", - "timestamp": "2024-09-05T04:36:09.000000Z", - "blockNumber": 19360811, + "id": "8453-20051900-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0xd3e71ec34ea95e25b756adf4bb91a778286ec599", + "timestamp": "2024-09-21T04:32:27.000000Z", + "blockNumber": 20051900, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x0899a0b74ebab3f637b59dbf90883e6df481fe00", - "balance": "1381305363" + "account": "0xd3e71ec34ea95e25b756adf4bb91a778286ec599", + "balance": "5490005456377830924" }, { - "id": "8453-19360811-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x3e52151b9f13c1f73c095be69f6cf4fa3eac14a2", - "timestamp": "2024-09-05T04:36:09.000000Z", - "blockNumber": 19360811, + "id": "8453-20098235-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x46a2ce8b8e6ac398af1c8df02d22475fc4bd0241", + "timestamp": "2024-09-22T06:16:57.000000Z", + "blockNumber": 20098235, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x3e52151b9f13c1f73c095be69f6cf4fa3eac14a2", - "balance": "228139926" + "account": "0x46a2ce8b8e6ac398af1c8df02d22475fc4bd0241", + "balance": "1399999999999999" }, { - "id": "8453-19360811-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x87c9b9a4e9eaa22a4e80bddd23e5a98ae65eda1f", - "timestamp": "2024-09-05T04:36:09.000000Z", - "blockNumber": 19360811, + "id": "8453-20145401-0xdbfefd2e8460a6ee4955a68582f85708baea60a3-0x4197839e44788e080182e18e11d2c174c4f018d8", + "timestamp": "2024-09-23T08:37:59.000000Z", + "blockNumber": 20145401, "chainId": 8453, "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "account": "0x87c9b9a4e9eaa22a4e80bddd23e5a98ae65eda1f", - "balance": "491379467" + "account": "0x4197839e44788e080182e18e11d2c174c4f018d8", + "balance": "100000000000000000000" } ], "lidoarm_armStates": [ @@ -21526,706 +21658,544 @@ "totalYield": "1000000000000" }, { - "id": "1:21027055:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21026435:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-10-23T08:20:47.000000Z", - "blockNumber": 21027055, + "timestamp": "2024-10-23T06:16:35.000000Z", + "blockNumber": 21026435, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "191354524562624854115", - "assets1": "2048532080132621296", - "assetsPerShare": "1000616231616039739", - "outstandingAssets1": "211117759176494005211", - "totalAssets": "404497012522133069502", + "assets0": "288207458174833841689", + "assets1": "2791662550083840326", + "assetsPerShare": "1000568008030571348", + "outstandingAssets1": "113497475806108690081", + "totalAssets": "404478518190677790485", "totalAssetsCap": "740000000000000000000", "totalDeposits": "404481259019533911018", "totalFees": "545897692126161", - "totalSupply": "404247902184089493439", - "totalWithdrawals": "32004286157975985", - "totalYield": "47757788757134469" + "totalSupply": "404248901568237384939", + "totalWithdrawals": "31004286157975986", + "totalYield": "28263457301855453" }, { - "id": "1:21070604:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21068736:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-10-29T10:09:59.000000Z", - "blockNumber": 21070604, + "timestamp": "2024-10-29T03:54:11.000000Z", + "blockNumber": 21068736, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "1926870422441538986", - "assets1": "276172459872776051092", - "assetsPerShare": "1002393992341177925", + "assets0": "900684917996962740", + "assets1": "277156981845758762815", + "assetsPerShare": "1002360468805953221", "outstandingAssets1": "723382257508816122355", - "totalAssets": "1001341872521345676842", + "totalAssets": "1001308384172660507990", "totalAssetsCap": "5000000000000000000000", "totalDeposits": "1000255813260185772698", "totalFees": "310785137321216783", "totalSupply": "998950392931451103808", "totalWithdrawals": "435004286157975980", - "totalYield": "1521063547317880124" + "totalYield": "1487575198632711272" }, { - "id": "1:21142650:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21140644:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-11-08T11:33:23.000000Z", - "blockNumber": 21142650, + "timestamp": "2024-11-08T04:50:23.000000Z", + "blockNumber": 21140644, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "79602301130047109273", - "assets1": "19977823775363888048", - "assetsPerShare": "1004097943111191023", - "outstandingAssets1": "1978297680299831846717", - "totalAssets": "2077754227390737252992", + "assets0": "490121671183407388593", + "assets1": "1", + "assetsPerShare": "1004026946407965601", + "outstandingAssets1": "1587568498876313546991", + "totalAssets": "2077607315726123784451", "totalAssetsCap": "5000000000000000000000", "totalDeposits": "2085978972768059405650", "totalFees": "953772395632072927", "totalSupply": "2069274458378860067349", "totalWithdrawals": "12458163794031608932", - "totalYield": "4233418416709456274" - }, - { - "id": "1:21174950:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-11-12T23:40:35.000000Z", - "blockNumber": 21174950, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "7339283441264419588", - "assets1": "370952371112882970769", - "assetsPerShare": "1005417716243136059", - "outstandingAssets1": "2101855781623061963831", - "totalAssets": "2480058111867872514457", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2485983271371677895755", - "totalFees": "1758547510573645158", - "totalSupply": "2466694262296179979378", - "totalWithdrawals": "12959350546099961985", - "totalYield": "7034191042294580687" + "totalYield": "4086506752095987733" }, { - "id": "1:21210777:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21217952:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-11-17T23:40:35.000000Z", - "blockNumber": 21210777, + "timestamp": "2024-11-18T23:40:35.000000Z", + "blockNumber": 21217952, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "1235794446923977123094", - "assets1": "2805889363235137593", - "assetsPerShare": "1006302730871894513", - "outstandingAssets1": "1260890588564834854191", - "totalAssets": "2499475229839060204714", + "assets0": "3154309734335948136", + "assets1": "2836027924516728080", + "assetsPerShare": "1006500098800533042", + "outstandingAssets1": "2493990819704113413878", + "totalAssets": "2499965456322266923612", "totalAssetsCap": "5000000000000000000000", "totalDeposits": "2503213271371677895755", - "totalFees": "2305327003370567720", + "totalFees": "2427883624172247444", "totalSupply": "2483820378459502782199", "totalWithdrawals": "12959350546099961985", - "totalYield": "9221309013482270944" + "totalYield": "9711535496688989842" }, { - "id": "1:21243051:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21253518:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-11-22T11:43:59.000000Z", - "blockNumber": 21243051, + "timestamp": "2024-11-23T22:47:35.000000Z", + "blockNumber": 21253518, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "480321149350499109", - "assets1": "1026156094627771657", - "assetsPerShare": "1007066232209070604", - "outstandingAssets1": "2488817462120215857021", - "totalAssets": "2490244327925717489129", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2504148271371677895755", - "totalFees": "2714722645648468961", - "totalSupply": "2472771152760421153460", - "totalWithdrawals": "25019924517128082415", - "totalYield": "11115981071167675789" - }, - { - "id": "1:21277080:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-11-27T05:44:47.000000Z", - "blockNumber": 21277080, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "1179310440845303706346", - "assets1": "77663696978268309887", - "assetsPerShare": "1007524428750805748", - "outstandingAssets1": "1246467089597788103077", - "totalAssets": "2503382186923954552259", + "assets0": "2393813266426385560742", + "assets1": "1167852987000000001", + "assetsPerShare": "1007140371616093090", + "outstandingAssets1": "107475790896734117828", + "totalAssets": "2502427925406948179127", "totalAssetsCap": "5000000000000000000000", "totalDeposits": "2516148271371677895755", - "totalFees": "3035085844455534456", + "totalFees": "2811276890639755121", "totalSupply": "2484686341578645835742", "totalWithdrawals": "25019924517128082415", - "totalYield": "12253840069404738919" - }, - { - "id": "1:21306990:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-12-01T10:13:59.000000Z", - "blockNumber": 21306990, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "129326767601062678263", - "assets1": "43569590045728773284", - "assetsPerShare": "1008127633072735454", - "outstandingAssets1": "2660830495818079488458", - "totalAssets": "2833693920024808041696", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2862052681279092747716", - "totalFees": "3467874809656453756", - "totalSupply": "2810848375803185338167", - "totalWithdrawals": "42275318158677624567", - "totalYield": "13916556904392918547" - }, - { - "id": "1:21313556:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-12-02T08:12:59.000000Z", - "blockNumber": 21313556, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "15136177633423820", - "assets1": "8886293611794437475", - "assetsPerShare": "1008249390350557266", - "outstandingAssets1": "2825248022739237561065", - "totalAssets": "2834036161271415699700", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2862052681279092747716", - "totalFees": "3467874809656453756", - "totalSupply": "2810848375803185338167", - "totalWithdrawals": "42275318158677624567", - "totalYield": "14258798151000576551" + "totalYield": "11299578552398365787" }, { - "id": "1:21317281:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21284016:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-02T20:42:47.000000Z", - "blockNumber": 21317281, + "timestamp": "2024-11-28T05:00:23.000000Z", + "blockNumber": 21284016, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "4740451292857103793", - "assets1": "11221856798405738534", - "assetsPerShare": "1008416835121310626", - "outstandingAssets1": "2818775822099266596872", - "totalAssets": "2834506823133324519815", + "assets0": "7475101531904018627", + "assets1": "2125244988282239538", + "assetsPerShare": "1007730861352498657", + "outstandingAssets1": "2716075572857017443013", + "totalAssets": "2725630011477601016616", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2862052681279092747716", - "totalFees": "3467874809656453756", - "totalSupply": "2810848375803185338167", + "totalDeposits": "2755101962551239932375", + "totalFees": "3170386243519498091", + "totalSupply": "2704720194655416808375", "totalWithdrawals": "42275318158677624567", - "totalYield": "14729460012909396666" + "totalYield": "12803367085038708808" }, { - "id": "1:21320857:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21319896:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-03T08:43:11.000000Z", - "blockNumber": 21320857, + "timestamp": "2024-12-03T05:29:59.000000Z", + "blockNumber": 21319896, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "261711080359945268", - "assets1": "15488468657594157289", - "assetsPerShare": "1008417376675455230", + "assets0": "1611306080359945268", + "assets1": "14138468657594157290", + "assetsPerShare": "1008417319041610091", "outstandingAssets1": "2818775822099266596872", - "totalAssets": "2834508345359912288290", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2862052681279092747716", - "totalFees": "3682545937978782382", - "totalSupply": "2810848375803185338167", - "totalWithdrawals": "42275318158677624567", - "totalYield": "14730982239497165141" - }, - { - "id": "1:21324582:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-12-03T21:12:11.000000Z", - "blockNumber": 21324582, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "1223763016702561127809", - "assets1": "547439399846732062993", - "assetsPerShare": "1008508703506388916", - "outstandingAssets1": "1063724260270602384960", - "totalAssets": "2834765051234309492808", + "totalAssets": "2834508183359912288291", "totalAssetsCap": "5000000000000000000000", "totalDeposits": "2862052681279092747716", "totalFees": "3682545937978782382", "totalSupply": "2810848375803185338167", "totalWithdrawals": "42275318158677624567", - "totalYield": "14987688113894369659" - }, - { - "id": "1:21328158:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-12-04T09:11:59.000000Z", - "blockNumber": 21328158, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "74785535869023671", - "assets1": "3400278680177674648", - "assetsPerShare": "1008611147738893836", - "outstandingAssets1": "2831625926971868288307", - "totalAssets": "2835053006438856350885", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2862052681279092747716", - "totalFees": "3786569707467960957", - "totalSupply": "2810848375803185338167", - "totalWithdrawals": "42275318158677624567", - "totalYield": "15275643318441227736" - }, - { - "id": "1:21331883:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-12-04T21:40:23.000000Z", - "blockNumber": 21331883, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "22360641454266625956", - "assets1": "89541596040911508787", - "assetsPerShare": "1008882026131311025", - "outstandingAssets1": "2724163422502048502192", - "totalAssets": "2835814404528222383072", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2862052681279092747716", - "totalFees": "3786569707467960957", - "totalSupply": "2810848375803185338167", - "totalWithdrawals": "42275318158677624567", - "totalYield": "16037041407807259923" - }, - { - "id": "1:21335459:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-12-05T09:40:23.000000Z", - "blockNumber": 21335459, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "683915180496811229", - "assets1": "1504063530367504470", - "assetsPerShare": "1008888548558808303", - "outstandingAssets1": "2833660209826610737759", - "totalAssets": "2835832738082959401610", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2862052681279092747716", - "totalFees": "4013752480764236005", - "totalSupply": "2810848375803185338167", - "totalWithdrawals": "42275318158677624567", - "totalYield": "16055374962544278461" - }, - { - "id": "1:21339184:0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "chainId": 1, - "timestamp": "2024-12-05T22:09:23.000000Z", - "blockNumber": 21339184, - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "1117829052181150968399", - "assets1": "1", - "assetsPerShare": "1009102051916104623", - "outstandingAssets1": "1718769067703150640888", - "totalAssets": "2836432863648044290374", - "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2862052681279092747716", - "totalFees": "4013752480764236005", - "totalSupply": "2810848375803185338167", - "totalWithdrawals": "42275318158677624567", - "totalYield": "16655500527629167225" + "totalYield": "14730820239497165142" }, { - "id": "1:21342611:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21355776:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-06T09:38:23.000000Z", - "blockNumber": 21342611, + "timestamp": "2024-12-08T05:46:59.000000Z", + "blockNumber": 21355776, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "24156403997910756", - "assets1": "35521530537092112037", - "assetsPerShare": "1009201735502370975", - "outstandingAssets1": "2826242652364814538094", - "totalAssets": "2861715475816433745949", + "assets0": "20669765099699685", + "assets1": "1088593147743622730", + "assetsPerShare": "1009660787101477237", + "outstandingAssets1": "2861923212426641995831", + "totalAssets": "2863017173008528582689", "totalAssetsCap": "5000000000000000000000", "totalDeposits": "2887052681279092747716", - "totalFees": "4182126499228667690", + "totalFees": "4559947015158053983", "totalSupply": "2835622824599978656460", "totalWithdrawals": "42275318158677624567", - "totalYield": "16938112696018622800" + "totalYield": "18239809888113459540" }, { - "id": "1:21346336:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21388503:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-06T22:07:11.000000Z", - "blockNumber": 21346336, + "timestamp": "2024-12-12T19:25:35.000000Z", + "blockNumber": 21388503, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "1657310200844830236", - "assets1": "8724544302038146884", - "assetsPerShare": "1009412263847941102", - "outstandingAssets1": "2852148688982491229769", - "totalAssets": "2862312454798357669226", + "assets0": "316307453351869282", + "assets1": "1", + "assetsPerShare": "1010317722697947952", + "outstandingAssets1": "2904849533691095941970", + "totalAssets": "2904896373957669877205", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887052681279092747716", - "totalFees": "4182126499228667690", - "totalSupply": "2835622824599978656460", + "totalDeposits": "2927063681279092747716", + "totalFees": "4772669107650017578", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "17535091677942546077" + "totalYield": "20108010837254754056" }, { - "id": "1:21350061:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21392228:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-07T10:36:35.000000Z", - "blockNumber": 21350061, + "timestamp": "2024-12-13T07:54:35.000000Z", + "blockNumber": 21392228, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "118027891536207380", - "assets1": "10264950495927161035", - "assetsPerShare": "1009412515735785582", - "outstandingAssets1": "2852148688982491229769", - "totalAssets": "2862313169057278715580", + "assets0": "199506072034436330", + "assets1": "116918299617050003", + "assetsPerShare": "1010317750349450176", + "outstandingAssets1": "2904849533691095941970", + "totalAssets": "2904896453462113616800", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887052681279092747716", - "totalFees": "4182126499228667690", - "totalSupply": "2835622824599978656460", + "totalDeposits": "2927063681279092747716", + "totalFees": "4772669107650017578", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "17535805936863592431" + "totalYield": "20108090341698493651" }, { - "id": "1:21353440:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21395953:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-07T21:57:47.000000Z", - "blockNumber": 21353440, + "timestamp": "2024-12-13T20:22:59.000000Z", + "blockNumber": 21395953, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "440137405020841529", - "assets1": "1046913737488774566", - "assetsPerShare": "1009660779756536626", - "outstandingAssets1": "2861923212426641995831", - "totalAssets": "2863017152181047339180", + "assets0": "68063991560162792", + "assets1": "248537846193031032", + "assetsPerShare": "1010317794234117478", + "outstandingAssets1": "2904849533691095941970", + "totalAssets": "2904896579640649393675", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887052681279092747716", - "totalFees": "4182126499228667690", - "totalSupply": "2835622824599978656460", + "totalDeposits": "2927063681279092747716", + "totalFees": "4772669107650017578", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18239789060632216031" + "totalYield": "20108216520234270526" }, { - "id": "1:21355200:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21399678:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T03:51:11.000000Z", - "blockNumber": 21355200, + "timestamp": "2024-12-14T08:52:23.000000Z", + "blockNumber": 21399678, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "20669765099699685", - "assets1": "1088593147743622730", - "assetsPerShare": "1009660787101477237", - "outstandingAssets1": "2861923212426641995831", - "totalAssets": "2863017173008528582689", + "assets0": "49280325560162792", + "assets1": "267347846193031033", + "assetsPerShare": "1010317800776201573", + "outstandingAssets1": "2904849533691095941970", + "totalAssets": "2904896598450649393676", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887052681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835622824599978656460", + "totalDeposits": "2927063681279092747716", + "totalFees": "4772669107650017578", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18239809888113459540" + "totalYield": "20108235330234270527" }, { - "id": "1:21357000:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21403403:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T09:53:23.000000Z", - "blockNumber": 21357000, + "timestamp": "2024-12-14T21:21:11.000000Z", + "blockNumber": 21403403, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "231669765099699685", - "assets1": "888563143242947630", - "assetsPerShare": "1009660787101477237", - "outstandingAssets1": "2861923212426641995831", - "totalAssets": "2863028173008528582690", + "assets0": "39857450557497876", + "assets1": "276830299940522441", + "assetsPerShare": "1010317816957547981", + "outstandingAssets1": "2904849533691095941970", + "totalAssets": "2904896644975750805170", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "4772669107650017578", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18239809888113459541" + "totalYield": "20108281855335682021" }, { - "id": "1:21358875:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21407128:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T16:09:47.000000Z", - "blockNumber": 21358875, + "timestamp": "2024-12-15T09:49:23.000000Z", + "blockNumber": 21407128, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "746391031270332188422", - "assets1": "38349307496705967012", - "assetsPerShare": "1009675727215507493", - "outstandingAssets1": "2078361681543493379721", - "totalAssets": "2863070537699643680735", + "assets0": "39857450557497876", + "assets1": "276830299940522441", + "assetsPerShare": "1010317816957547981", + "outstandingAssets1": "2904849533691095941970", + "totalAssets": "2904896644975750805170", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "4772669107650017578", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18282174579228557586" + "totalYield": "20108281855335682021" }, { - "id": "1:21360115:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21410704:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T20:18:35.000000Z", - "blockNumber": 21360115, + "timestamp": "2024-12-15T21:49:11.000000Z", + "blockNumber": 21410704, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "426617776048298790514", - "assets1": "35035453760932614101", - "assetsPerShare": "1009733359125979273", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863233960688287913883", + "assets0": "823210318289524288628", + "assets1": "905032193649590492", + "assetsPerShare": "1010318001875916373", + "outstandingAssets1": "2080797224499361920423", + "totalAssets": "2904897176658691480109", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5027074400668080355", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18445597567872790734" + "totalYield": "20108813538276356960" }, { - "id": "1:21360240:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21414429:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T20:43:35.000000Z", - "blockNumber": 21360240, + "timestamp": "2024-12-16T10:17:59.000000Z", + "blockNumber": 21414429, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "426587800048298790514", - "assets1": "35065453760932614100", - "assetsPerShare": "1009733364627395021", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863233976288287913882", + "assets0": "19290956503649732", + "assets1": "359125757622362493", + "assetsPerShare": "1010527450150827047", + "outstandingAssets1": "2905286841478822890213", + "totalAssets": "2905499388735794285692", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5027074400668080355", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18445613167872790733" + "totalYield": "20711025615379162543" }, { - "id": "1:21360365:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21418005:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T21:08:47.000000Z", - "blockNumber": 21360365, + "timestamp": "2024-12-16T22:14:59.000000Z", + "blockNumber": 21418005, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "426587800048298790514", - "assets1": "35065453760932614100", - "assetsPerShare": "1009733364627395021", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863233976288287913882", + "assets0": "55669586852661589", + "assets1": "8822511544472285716", + "assetsPerShare": "1011120089464740551", + "outstandingAssets1": "2898767288379122785823", + "totalAssets": "2907203363391860757416", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5178100911120366807", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18445613167872790733" + "totalYield": "22415000271445634267" }, { - "id": "1:21360490:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21421730:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T21:33:47.000000Z", - "blockNumber": 21360490, + "timestamp": "2024-12-17T10:42:47.000000Z", + "blockNumber": 21421730, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "426587800048298790514", - "assets1": "35065453760932614100", - "assetsPerShare": "1009733364627395021", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863233976288287913882", + "assets0": "56669586852661589", + "assets1": "8821511394449782342", + "assetsPerShare": "1011120089464740551", + "outstandingAssets1": "2898767288379122785823", + "totalAssets": "2907203363391860757417", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5178100911120366807", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18445613167872790733" + "totalYield": "22415000271445634268" }, { - "id": "1:21360615:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21425455:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T21:58:47.000000Z", - "blockNumber": 21360615, + "timestamp": "2024-12-17T23:10:59.000000Z", + "blockNumber": 21425455, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "426587800048298790514", - "assets1": "35065453760932614100", - "assetsPerShare": "1009733364627395021", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863233976288287913882", + "assets0": "131126254083226789", + "assets1": "8747731830339930008", + "assetsPerShare": "1011120280940184387", + "outstandingAssets1": "2898767288379122785823", + "totalAssets": "2907203913927905020892", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5178100911120366807", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18445613167872790733" + "totalYield": "22415550807489897743" }, { - "id": "1:21360740:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21429180:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T22:23:47.000000Z", - "blockNumber": 21360740, + "timestamp": "2024-12-18T11:40:23.000000Z", + "blockNumber": 21429180, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "423983649796468119044", - "assets1": "37671689000955303721", - "assetsPerShare": "1009733842560181462", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863235331530612725680", + "assets0": "130122287507737177", + "assets1": "8748745204192727280", + "assetsPerShare": "1011120283515357708", + "outstandingAssets1": "2898767288379122785823", + "totalAssets": "2907203921332122004684", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5178100911120366807", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18446968410197602531" + "totalYield": "22415558211706881535" }, { - "id": "1:21360865:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21432028:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T22:49:11.000000Z", - "blockNumber": 21360865, + "timestamp": "2024-12-18T21:14:23.000000Z", + "blockNumber": 21432028, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "423983649796468119044", - "assets1": "37671689000955303721", - "assetsPerShare": "1009733842560181462", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863235331530612725680", + "assets0": "31930259507737177", + "assets1": "8847739831327592998", + "assetsPerShare": "1011120502697765280", + "outstandingAssets1": "2898767288379122785823", + "totalAssets": "2907204551532074641075", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5178100911120366807", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18446968410197602531" + "totalYield": "22416188411659517926" }, { - "id": "1:21360990:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21433878:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T23:14:23.000000Z", - "blockNumber": 21360990, + "timestamp": "2024-12-19T03:27:35.000000Z", + "blockNumber": 21433878, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "423983649796468119044", - "assets1": "37671689000955303721", - "assetsPerShare": "1009733842560181462", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863235331530612725680", + "assets0": "31930259507737177", + "assets1": "8847739831327592998", + "assetsPerShare": "1011120502697765280", + "outstandingAssets1": "2898767288379122785823", + "totalAssets": "2907204551532074641075", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5178100911120366807", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18446968410197602531" + "totalYield": "22416188411659517926" }, { - "id": "1:21361115:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21435728:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-08T23:39:35.000000Z", - "blockNumber": 21361115, + "timestamp": "2024-12-19T09:39:35.000000Z", + "blockNumber": 21435728, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "423983649796468119044", - "assets1": "37671689000955303721", - "assetsPerShare": "1009733842560181462", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863235331530612725680", + "assets0": "31930259507737177", + "assets1": "8847739831327592998", + "assetsPerShare": "1011120502697765280", + "outstandingAssets1": "2898767288379122785823", + "totalAssets": "2907204551532074641075", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4559947015158053983", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5178100911120366807", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18446968410197602531" + "totalYield": "22416188411659517926" }, { - "id": "1:21361240:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21437504:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-09T00:04:35.000000Z", - "blockNumber": 21361240, + "timestamp": "2024-12-19T15:36:59.000000Z", + "blockNumber": 21437504, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "423931854959076772419", - "assets1": "37671689000955303721", - "assetsPerShare": "1009733842560181462", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863235331530612725680", + "assets0": "685239970513224401552", + "assets1": "19691246543459344266", + "assetsPerShare": "1011124473953464990", + "outstandingAssets1": "2202305550969977584605", + "totalAssets": "2907215969807754631869", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4611741852549400608", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5604190725023960636", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18446968410197602531" + "totalYield": "22427606687339508720" }, { - "id": "1:21361352:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21438384:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-09T00:27:11.000000Z", - "blockNumber": 21361352, + "timestamp": "2024-12-19T18:33:59.000000Z", + "blockNumber": 21438384, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "423931854959076772419", - "assets1": "37671689000955303721", - "assetsPerShare": "1009733842560181462", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863235331530612725680", + "assets0": "233896104495644270426", + "assets1": "1", + "assetsPerShare": "1011301599270870443", + "outstandingAssets1": "2673974304997109268955", + "totalAssets": "2907725245930213614157", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4611741852549400608", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5604190725023960636", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18446968410197602531" + "totalYield": "22936882809798491008" }, { - "id": "1:21361455:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21438484:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-09T00:47:59.000000Z", - "blockNumber": 21361455, + "timestamp": "2024-12-19T18:53:59.000000Z", + "blockNumber": 21438484, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "421952439759076772419", - "assets1": "39652689000955303721", - "assetsPerShare": "1009734205837001374", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863236361650612725680", + "assets0": "233896104495644270426", + "assets1": "1", + "assetsPerShare": "1011301599270870443", + "outstandingAssets1": "2673974304997109268955", + "totalAssets": "2907725245930213614157", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4611741852549400608", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5604190725023960636", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18447998530197602531" + "totalYield": "22936882809798491008" }, { - "id": "1:21361580:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21438584:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-09T01:12:59.000000Z", - "blockNumber": 21361580, + "timestamp": "2024-12-19T19:13:59.000000Z", + "blockNumber": 21438584, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "421952439759076772419", - "assets1": "39652689000955303721", - "assetsPerShare": "1009734205837001374", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863236361650612725680", + "assets0": "232424264079956831897", + "assets1": "1473917148584230850", + "assetsPerShare": "1011302115582949647", + "outstandingAssets1": "2673974304997109268955", + "totalAssets": "2907726730446473217906", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4611741852549400608", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5604190725023960636", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18447998530197602531" + "totalYield": "22938367326058094757" }, { - "id": "1:21361705:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21438684:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-09T01:37:59.000000Z", - "blockNumber": 21361705, + "timestamp": "2024-12-19T19:33:59.000000Z", + "blockNumber": 21438684, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "421952439759076772419", - "assets1": "39652689000955303721", - "assetsPerShare": "1009734205837001374", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863236361650612725680", + "assets0": "232424264079956831897", + "assets1": "1473917148584230850", + "assetsPerShare": "1011302115582949647", + "outstandingAssets1": "2673974304997109268955", + "totalAssets": "2907726730446473217906", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4611741852549400608", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5604190725023960636", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18447998530197602531" + "totalYield": "22938367326058094757" }, { - "id": "1:21361830:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21438784:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-09T02:03:23.000000Z", - "blockNumber": 21361830, + "timestamp": "2024-12-19T19:53:59.000000Z", + "blockNumber": 21438784, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "421952439759076772419", - "assets1": "39652689000955303721", - "assetsPerShare": "1009734205837001374", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863236361650612725680", + "assets0": "232424264079956831897", + "assets1": "1473917148584230850", + "assetsPerShare": "1011302115582949647", + "outstandingAssets1": "2673974304997109268955", + "totalAssets": "2907726730446473217906", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4611741852549400608", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5604190725023960636", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18447998530197602531" + "totalYield": "22938367326058094757" }, { - "id": "1:21361955:0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "id": "1:21438884:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "timestamp": "2024-12-09T02:28:35.000000Z", - "blockNumber": 21361955, + "timestamp": "2024-12-19T20:14:11.000000Z", + "blockNumber": 21438884, "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "assets0": "421952439759076772419", - "assets1": "39652689000955303721", - "assetsPerShare": "1009734205837001374", - "outstandingAssets1": "2401652572159045055972", - "totalAssets": "2863236361650612725680", + "assets0": "232202599949616449406", + "assets1": "1695894041902589949", + "assetsPerShare": "1011302193341290022", + "outstandingAssets1": "2673974304997109268955", + "totalAssets": "2907726954019628400989", "totalAssetsCap": "5000000000000000000000", - "totalDeposits": "2887063681279092747716", - "totalFees": "4611741852549400608", - "totalSupply": "2835633719348136182390", + "totalDeposits": "2927063681279092747716", + "totalFees": "5604190725023960636", + "totalSupply": "2875230542527203740064", "totalWithdrawals": "42275318158677624567", - "totalYield": "18447998530197602531" + "totalYield": "22938590899213277840" } ], "lidoarm_armWithdrawalRequests": [ @@ -22247,48 +22217,48 @@ { "id": "1:2024-10-18:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "blockNumber": 20991822, - "timestamp": "2024-10-18T10:22:35.000000Z", + "blockNumber": 20989800, + "timestamp": "2024-10-18T03:36:11.000000Z", "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "apr": 0.0729578254201967, - "apy": 0.07567733239774421, - "assets0": "93227990682896676", - "assets1": "1", - "assetsPerShare": "1000199747637442257", + "apr": 0.014948360259287963, + "apy": 0.015060335304196704, + "assets0": "88774686139408657", + "assets1": "10913954802561231651", + "assetsPerShare": "1000040926379428522", "date": "2024-10-18", - "fees": "545697740128061", - "outstandingAssets1": "10913954802561231651", - "rateUSD": 2623.89786044, - "totalAssets": "11007182593292130227", + "fees": "0", + "outstandingAssets1": "0", + "rateUSD": 2622.33484776, + "totalAssets": "11000437558192102449", "totalAssetsCap": "740000000000000000000", - "totalSupply": "11004984373663402005", - "yield": "2047274250167538" + "totalSupply": "10999987368535348815", + "yield": "300241673765338" }, { "id": "1:2024-11-12:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "blockNumber": 21174993, - "timestamp": "2024-11-12T23:49:23.000000Z", + "blockNumber": 21169200, + "timestamp": "2024-11-12T04:24:59.000000Z", "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "apr": 0.13741280502163655, - "apy": 0.14727201453811767, - "assets0": "7339283441264419588", - "assets1": "370952371112882970769", - "assetsPerShare": "1005417716243136059", + "apr": 0.11381756176770183, + "apy": 0.12052780839189792, + "assets0": "428548869504521862", + "assets1": "935014922470261375", + "assetsPerShare": "1005039678219004937", "date": "2024-11-12", - "fees": "213155589449509459", - "outstandingAssets1": "2101855781623061963831", - "rateUSD": 3246.83, - "totalAssets": "2480058111867872514457", + "fees": "0", + "outstandingAssets1": "2077853272099258972728", + "rateUSD": 3342.46741873, + "totalAssets": "2079201476932581003524", "totalAssetsCap": "5000000000000000000000", - "totalSupply": "2466694262296179979378", - "yield": "852622357798037837" + "totalSupply": "2068775514034490637548", + "yield": "152482215981009" }, { "id": "1:2024-12-07:0x85b78aca6deae198fbf201c82daf6ca21942acc6", "chainId": 1, - "blockNumber": 21354032, - "timestamp": "2024-12-07T23:56:59.000000Z", + "blockNumber": 21353982, + "timestamp": "2024-12-07T23:46:59.000000Z", "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", "apr": 0.0898961221279083, "apy": 0.09404852788461193, @@ -22298,7 +22268,7 @@ "date": "2024-12-07", "fees": "377820515929386293", "outstandingAssets1": "2861923212426641995831", - "rateUSD": 4006.208915, + "rateUSD": 4006.209013, "totalAssets": "2863017152181047339180", "totalAssetsCap": "5000000000000000000000", "totalSupply": "2835622824599978656460", @@ -22310,35 +22280,35 @@ "id": "2022-09-07", "blockNumber": 15493265, "timestamp": "2022-09-07T23:54:59.000000Z", - "holdersOverThreshold": 12507, + "holdersOverThreshold": 12509, "totalStaked": "0" }, { "id": "2022-10-02", "blockNumber": 15663630, "timestamp": "2022-10-02T23:04:35.000000Z", - "holdersOverThreshold": 12551, + "holdersOverThreshold": 12547, "totalStaked": "0" }, { "id": "2022-10-27", "blockNumber": 15842750, "timestamp": "2022-10-27T23:40:23.000000Z", - "holdersOverThreshold": 12682, + "holdersOverThreshold": 12686, "totalStaked": "0" }, { "id": "2022-11-21", "blockNumber": 16021808, "timestamp": "2022-11-21T23:55:59.000000Z", - "holdersOverThreshold": 13496, + "holdersOverThreshold": 13508, "totalStaked": "0" }, { "id": "2022-12-16", "blockNumber": 16200658, "timestamp": "2022-12-16T23:52:59.000000Z", - "holdersOverThreshold": 14024, + "holdersOverThreshold": 14080, "totalStaked": "0" }, { @@ -22352,49 +22322,49 @@ "id": "2023-02-04", "blockNumber": 16558789, "timestamp": "2023-02-04T23:46:11.000000Z", - "holdersOverThreshold": 14357, + "holdersOverThreshold": 14349, "totalStaked": "0" }, { "id": "2023-03-01", "blockNumber": 16736962, "timestamp": "2023-03-01T23:13:59.000000Z", - "holdersOverThreshold": 14434, + "holdersOverThreshold": 14438, "totalStaked": "0" }, { "id": "2023-03-26", "blockNumber": 16914974, "timestamp": "2023-03-26T23:50:23.000000Z", - "holdersOverThreshold": 14545, + "holdersOverThreshold": 14544, "totalStaked": "0" }, { "id": "2023-04-20", "blockNumber": 17091004, "timestamp": "2023-04-20T23:45:35.000000Z", - "holdersOverThreshold": 14663, + "holdersOverThreshold": 14672, "totalStaked": "0" }, { "id": "2023-05-15", "blockNumber": 17268342, "timestamp": "2023-05-15T23:10:47.000000Z", - "holdersOverThreshold": 14704, + "holdersOverThreshold": 14701, "totalStaked": "0" }, { "id": "2023-06-09", "blockNumber": 17445974, "timestamp": "2023-06-09T23:38:47.000000Z", - "holdersOverThreshold": 14824, + "holdersOverThreshold": 14811, "totalStaked": "0" }, { "id": "2023-07-04", "blockNumber": 17623678, "timestamp": "2023-07-04T22:59:23.000000Z", - "holdersOverThreshold": 15001, + "holdersOverThreshold": 15005, "totalStaked": "0" }, { @@ -22408,14 +22378,14 @@ "id": "2023-08-23", "blockNumber": 17980579, "timestamp": "2023-08-23T23:05:47.000000Z", - "holdersOverThreshold": 15276, + "holdersOverThreshold": 15281, "totalStaked": "0" }, { "id": "2023-09-17", "blockNumber": 18158885, "timestamp": "2023-09-17T23:07:11.000000Z", - "holdersOverThreshold": 15338, + "holdersOverThreshold": 15345, "totalStaked": "0" }, { @@ -22429,35 +22399,35 @@ "id": "2023-11-06", "blockNumber": 18516356, "timestamp": "2023-11-06T23:56:47.000000Z", - "holdersOverThreshold": 15568, + "holdersOverThreshold": 15574, "totalStaked": "0" }, { "id": "2023-12-01", "blockNumber": 18694702, "timestamp": "2023-12-01T23:00:11.000000Z", - "holdersOverThreshold": 15715, + "holdersOverThreshold": 15723, "totalStaked": "0" }, { "id": "2023-12-26", "blockNumber": 18873277, "timestamp": "2023-12-26T23:55:47.000000Z", - "holdersOverThreshold": 15827, + "holdersOverThreshold": 15825, "totalStaked": "0" }, { "id": "2024-01-20", "blockNumber": 19051513, "timestamp": "2024-01-20T23:59:47.000000Z", - "holdersOverThreshold": 15900, + "holdersOverThreshold": 15868, "totalStaked": "0" }, { "id": "2024-02-14", "blockNumber": 19229561, "timestamp": "2024-02-14T23:47:23.000000Z", - "holdersOverThreshold": 15814, + "holdersOverThreshold": 15818, "totalStaked": "0" }, { @@ -22471,21 +22441,21 @@ "id": "2024-04-04", "blockNumber": 19585766, "timestamp": "2024-04-04T23:47:23.000000Z", - "holdersOverThreshold": 15908, + "holdersOverThreshold": 15907, "totalStaked": "0" }, { "id": "2024-04-29", "blockNumber": 19764213, "timestamp": "2024-04-29T23:22:11.000000Z", - "holdersOverThreshold": 15874, + "holdersOverThreshold": 15881, "totalStaked": "0" }, { "id": "2024-05-24", "blockNumber": 19943176, "timestamp": "2024-05-24T23:59:59.000000Z", - "holdersOverThreshold": 15911, + "holdersOverThreshold": 15904, "totalStaked": "2625147904742139710770" }, { @@ -22506,7 +22476,7 @@ "id": "2024-08-07", "blockNumber": 20480127, "timestamp": "2024-08-07T23:57:11.000000Z", - "holdersOverThreshold": 16082, + "holdersOverThreshold": 16081, "totalStaked": "326286760446710977169867721" }, { @@ -22541,7 +22511,7 @@ "id": "2024-12-10", "blockNumber": 21375425, "timestamp": "2024-12-10T23:35:59.000000Z", - "holdersOverThreshold": 15954, + "holdersOverThreshold": 15951, "totalStaked": "473424330697748433316393718" } ], @@ -23196,285 +23166,297 @@ "txHash": "0x00048d38d6c80a3ea7d01f5f9ec282e5329a2118aba61d71ee92a8dfe3e7fcb3", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "368902572963362000000000", "gasUsed": "85333", - "effectiveGasPrice": "4323093914" + "effectiveGasPrice": "4323093914", + "transactionFee": "368902572963362" }, { - "id": "1:0x020fc09801358d9ae9d00182e18062d727ea16b630a471c4de242ad57957ee18", + "id": "1:0x01de96f33b05aff37ab37929283a692ce58b93ef21334614af07a004b3bef918", "chainId": 1, - "timestamp": "2024-11-03T16:01:23.000000Z", - "blockNumber": 21108173, - "txHash": "0x020fc09801358d9ae9d00182e18062d727ea16b630a471c4de242ad57957ee18", + "timestamp": "2024-10-18T08:13:23.000000Z", + "blockNumber": 20991179, + "txHash": "0x01de96f33b05aff37ab37929283a692ce58b93ef21334614af07a004b3bef918", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "353035878154620000000000", - "gasUsed": "40083", - "effectiveGasPrice": "8807621140" + "gasUsed": "153299", + "effectiveGasPrice": "47625119535", + "transactionFee": "7300883199595965" }, { - "id": "1:0x04eac15173e7a8197dbfa0417e1b051b36447fdc2922e04f4388de96ce2ad2d0", + "id": "1:0x04bdbbc71cf960a4b4b80b1478ff328ae1e662df73345866f81ad2341a833d04", "chainId": 1, - "timestamp": "2024-11-08T05:07:35.000000Z", - "blockNumber": 21140730, - "txHash": "0x04eac15173e7a8197dbfa0417e1b051b36447fdc2922e04f4388de96ce2ad2d0", + "timestamp": "2024-03-11T09:04:11.000000Z", + "blockNumber": 19410839, + "txHash": "0x04bdbbc71cf960a4b4b80b1478ff328ae1e662df73345866f81ad2341a833d04", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "1980895427298491000000000", - "gasUsed": "222241", - "effectiveGasPrice": "8913276251" + "gasUsed": "214077", + "effectiveGasPrice": "61196437291", + "transactionFee": "13100749705945407" }, { - "id": "1:0x07be8b76156de36908139bf04b04e5fb13637f1ac93bb7aea473fb81a033776a", + "id": "1:0x07b1a78c65b823b4e406abbdfb7751cf85d4875882cbd8df2905e75ce274c7f2", "chainId": 1, - "timestamp": "2024-10-24T07:32:35.000000Z", - "blockNumber": 21033984, - "txHash": "0x07be8b76156de36908139bf04b04e5fb13637f1ac93bb7aea473fb81a033776a", + "timestamp": "2024-06-23T22:40:35.000000Z", + "blockNumber": 20157428, + "txHash": "0x07b1a78c65b823b4e406abbdfb7751cf85d4875882cbd8df2905e75ce274c7f2", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "376093134821358000000000", - "gasUsed": "40059", - "effectiveGasPrice": "9388480362" + "gasUsed": "214089", + "effectiveGasPrice": "2811896203", + "transactionFee": "601996046204067" }, { - "id": "1:0x0a239fb935978f9b1e84825bda2971b0105021f024401bfae9a9fc802b75d54a", + "id": "1:0x09af4277d32e0df3d267a12cf532ae5bac3851bb654d5def751da6d8730b6af2", "chainId": 1, - "timestamp": "2024-02-21T17:20:35.000000Z", - "blockNumber": 19277478, - "txHash": "0x0a239fb935978f9b1e84825bda2971b0105021f024401bfae9a9fc802b75d54a", + "timestamp": "2024-11-29T00:28:11.000000Z", + "blockNumber": 21289773, + "txHash": "0x09af4277d32e0df3d267a12cf532ae5bac3851bb654d5def751da6d8730b6af2", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "9893817228983970000000000", - "gasUsed": "214077", - "effectiveGasPrice": "46216161610" + "gasUsed": "40035", + "effectiveGasPrice": "6625870963", + "transactionFee": "265266744003705" }, { - "id": "1:0x0ce3e5a8c72581377d0fbc79a7fae8e3c5e4d4429716e4d0299d580a6407571f", + "id": "1:0x0c9151e8ec3e888bfa799b61f0b1f316f5697442ce91cf693010c10acf9399e7", "chainId": 1, - "timestamp": "2024-11-12T23:40:35.000000Z", - "blockNumber": 21174950, - "txHash": "0x0ce3e5a8c72581377d0fbc79a7fae8e3c5e4d4429716e4d0299d580a6407571f", + "timestamp": "2024-10-28T19:53:11.000000Z", + "blockNumber": 21066343, + "txHash": "0x0c9151e8ec3e888bfa799b61f0b1f316f5697442ce91cf693010c10acf9399e7", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "2116387183241324000000000", - "gasUsed": "98798", - "effectiveGasPrice": "21421356538" + "gasUsed": "42895", + "effectiveGasPrice": "13197465132", + "transactionFee": "566105266837140" }, { - "id": "1:0x0f379b83063090f3c10364940932f3ff50f89b973a37676acd4385639ff51eb6", + "id": "1:0x0ece8c49329ed9325ae6e6d014f6728acc83987a8c22c19f57a257b81abc2400", "chainId": 1, - "timestamp": "2024-10-12T12:45:35.000000Z", - "blockNumber": 20949605, - "txHash": "0x0f379b83063090f3c10364940932f3ff50f89b973a37676acd4385639ff51eb6", + "timestamp": "2024-10-31T12:39:35.000000Z", + "blockNumber": 21085674, + "txHash": "0x0ece8c49329ed9325ae6e6d014f6728acc83987a8c22c19f57a257b81abc2400", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "2366852614226359000000000", - "gasUsed": "213857", - "effectiveGasPrice": "11067454487" + "gasUsed": "222241", + "effectiveGasPrice": "10410327824", + "transactionFee": "2313601665933584" }, { - "id": "1:0x11fe5147f25e60f9703bece7cd809aaf1e6d3fa22fce20622b05f56b99fc578a", + "id": "1:0x11523490fa0bb9ab19c50789944dd51a3287d8f1a1071e716b5a1b7e9eeb490a", "chainId": 1, - "timestamp": "2024-10-02T12:32:47.000000Z", - "blockNumber": 20877839, - "txHash": "0x11fe5147f25e60f9703bece7cd809aaf1e6d3fa22fce20622b05f56b99fc578a", + "timestamp": "2024-09-03T12:38:47.000000Z", + "blockNumber": 20670103, + "txHash": "0x11523490fa0bb9ab19c50789944dd51a3287d8f1a1071e716b5a1b7e9eeb490a", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "925707931201844000000000", - "gasUsed": "85309", - "effectiveGasPrice": "10851234116" + "gasUsed": "362764", + "effectiveGasPrice": "3136302243", + "transactionFee": "1137737546879652" }, { - "id": "1:0x14d225473eb6025125c01ca579c90722e2fbfbfd5a66393009e2f88cc4e21934", + "id": "1:0x1458db54d26b1d47ddcd12addf453e97167b907c41dadbd8e24636065fab3fb8", "chainId": 1, - "timestamp": "2024-12-12T07:28:23.000000Z", - "blockNumber": 21384932, - "txHash": "0x14d225473eb6025125c01ca579c90722e2fbfbfd5a66393009e2f88cc4e21934", + "timestamp": "2024-05-27T13:20:35.000000Z", + "blockNumber": 19961465, + "txHash": "0x1458db54d26b1d47ddcd12addf453e97167b907c41dadbd8e24636065fab3fb8", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "600051971662050000000000", - "gasUsed": "40035", - "effectiveGasPrice": "14988184630" + "gasUsed": "230933", + "effectiveGasPrice": "22812780012", + "transactionFee": "5268223726511196" }, { - "id": "1:0x17ac2ef9fa7bc7948a55e1ff5809803ae36529c48f16aa31bf2f726edb2f01b6", + "id": "1:0x16f18b33316516afff5ca469d55369e404a9b3cc82809323c1d225f91b860bcb", "chainId": 1, - "timestamp": "2024-11-08T02:29:59.000000Z", - "blockNumber": 21139947, - "txHash": "0x17ac2ef9fa7bc7948a55e1ff5809803ae36529c48f16aa31bf2f726edb2f01b6", + "timestamp": "2024-12-10T07:48:11.000000Z", + "blockNumber": 21370712, + "txHash": "0x16f18b33316516afff5ca469d55369e404a9b3cc82809323c1d225f91b860bcb", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "532438595221323000000000", - "gasUsed": "37259", - "effectiveGasPrice": "14290200897" + "gasUsed": "40071", + "effectiveGasPrice": "14547846006", + "transactionFee": "582946737306426" }, { - "id": "1:0x1a02c542f5d17a755cdf346762d29a023f6f9420f3d52d436317b97424d222f6", + "id": "1:0x19459e0c709eeb1e459edf882dab901c58b1a89c4f58d7600787be90275de67b", "chainId": 1, - "timestamp": "2024-07-26T05:27:47.000000Z", - "blockNumber": 20388629, - "txHash": "0x1a02c542f5d17a755cdf346762d29a023f6f9420f3d52d436317b97424d222f6", + "timestamp": "2024-11-13T12:56:47.000000Z", + "blockNumber": 21178912, + "txHash": "0x19459e0c709eeb1e459edf882dab901c58b1a89c4f58d7600787be90275de67b", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "214928455842125000000000", - "gasUsed": "85205", - "effectiveGasPrice": "2522486425" + "gasUsed": "256209", + "effectiveGasPrice": "31613499560", + "transactionFee": "8099663108768040" }, { - "id": "1:0x1c76333270ff03df62c4ace574e0668610ff7980d71024637b98317ec431141f", + "id": "1:0x1bb627a1f07aba472bedd553fdcee844a193bca1052dbebfd68dfeea7acc47ef", "chainId": 1, - "timestamp": "2024-12-04T06:13:11.000000Z", - "blockNumber": 21327269, - "txHash": "0x1c76333270ff03df62c4ace574e0668610ff7980d71024637b98317ec431141f", + "timestamp": "2024-11-18T02:57:47.000000Z", + "blockNumber": 21211760, + "txHash": "0x1bb627a1f07aba472bedd553fdcee844a193bca1052dbebfd68dfeea7acc47ef", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", - "to": "0x3ba227d87c2a7ab89eaacefbed9bfa0d15ad249a", - "gasCost": "371850486231000000000000", - "gasUsed": "21000", - "effectiveGasPrice": "17707166011" + "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "gasUsed": "42895", + "effectiveGasPrice": "12226318277", + "transactionFee": "524447922491915" }, { - "id": "1:0x1e2a13b7fdb815a1a64f4ab4be5dc68bba01c1e1b83270ae0eb099bd4ecf64d0", + "id": "1:0x1d9ecc5d718fa39e7f689df3ab3f3b2acf1d9283ecce6fa3e41d680c1acbaad3", "chainId": 1, - "timestamp": "2024-10-04T21:19:11.000000Z", - "blockNumber": 20894805, - "txHash": "0x1e2a13b7fdb815a1a64f4ab4be5dc68bba01c1e1b83270ae0eb099bd4ecf64d0", + "timestamp": "2024-06-05T12:27:35.000000Z", + "blockNumber": 20025625, + "txHash": "0x1d9ecc5d718fa39e7f689df3ab3f3b2acf1d9283ecce6fa3e41d680c1acbaad3", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "664706919268161000000000", - "gasUsed": "85217", - "effectiveGasPrice": "7800168033" + "gasUsed": "162640", + "effectiveGasPrice": "23976874752", + "transactionFee": "3899598909665280" }, { - "id": "1:0x2057bae3f579805584745b95c62f67b92aa144f390a56d74a101985ac7521855", + "id": "1:0x1f98b6d08dd638878c8907dfb9ec73a1df1e6c3ab0f89cf6928f7f6b7bf58af1", "chainId": 1, - "timestamp": "2024-10-25T23:40:35.000000Z", - "blockNumber": 21045979, - "txHash": "0x2057bae3f579805584745b95c62f67b92aa144f390a56d74a101985ac7521855", + "timestamp": "2024-09-24T12:27:59.000000Z", + "blockNumber": 20820454, + "txHash": "0x1f98b6d08dd638878c8907dfb9ec73a1df1e6c3ab0f89cf6928f7f6b7bf58af1", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", - "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "2358330761639692000000000", - "gasUsed": "98798", - "effectiveGasPrice": "23870227754" + "to": "0x80c898ae5e56f888365e235ceb8cea3eb726cb58", + "gasUsed": "789023", + "effectiveGasPrice": "21743206592", + "transactionFee": "17155890094839616" }, { - "id": "1:0x22dbcba808a4a2ccd9f8268cd64b88d6a8169ea14b7b70f0509d7633073960de", + "id": "1:0x21ae312317a2433b8be4f073469547255f3a594b9457a37f6f3acaed342a264d", "chainId": 1, - "timestamp": "2024-12-12T08:28:35.000000Z", - "blockNumber": 21385233, - "txHash": "0x22dbcba808a4a2ccd9f8268cd64b88d6a8169ea14b7b70f0509d7633073960de", + "timestamp": "2024-12-12T13:55:35.000000Z", + "blockNumber": 21386858, + "txHash": "0x21ae312317a2433b8be4f073469547255f3a594b9457a37f6f3acaed342a264d", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "632424864822759000000000", - "gasUsed": "40059", - "effectiveGasPrice": "15787335301" + "gasUsed": "338120", + "effectiveGasPrice": "24372843415", + "transactionFee": "8240945815479800" }, { - "id": "1:0x2537390504cf580e92ca7574f8bbb515b22053a64254fdfc775fb31d4f6e019a", + "id": "1:0x24418220ba6d812fc81a1756810ba2f9569d1bc1bb441c58d43f2fd586a594c7", "chainId": 1, - "timestamp": "2024-07-15T19:40:35.000000Z", - "blockNumber": 20314061, - "txHash": "0x2537390504cf580e92ca7574f8bbb515b22053a64254fdfc775fb31d4f6e019a", + "timestamp": "2024-12-14T11:24:47.000000Z", + "blockNumber": 21400440, + "txHash": "0x24418220ba6d812fc81a1756810ba2f9569d1bc1bb441c58d43f2fd586a594c7", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "9008657781012081000000000", - "gasUsed": "214089", - "effectiveGasPrice": "42079031529" + "gasUsed": "40059", + "effectiveGasPrice": "8569972888", + "transactionFee": "343304543920392" }, { - "id": "1:0x274ab7ed2a33fc418a351dd64401fb09b3b4fc94948a63039a309bd9c5fa52b0", + "id": "1:0x25e544be7c84c41e3f976166741e104e4e3cfa226b268b7ff1949b2aa03bab5d", "chainId": 1, - "timestamp": "2024-12-06T21:45:11.000000Z", - "blockNumber": 21346227, - "txHash": "0x274ab7ed2a33fc418a351dd64401fb09b3b4fc94948a63039a309bd9c5fa52b0", + "timestamp": "2024-12-16T19:27:35.000000Z", + "blockNumber": 21417169, + "txHash": "0x25e544be7c84c41e3f976166741e104e4e3cfa226b268b7ff1949b2aa03bab5d", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "1069088552705160000000000", - "gasUsed": "40059", - "effectiveGasPrice": "26687849240" + "gasUsed": "37271", + "effectiveGasPrice": "38219032507", + "transactionFee": "1424461560568397" }, { - "id": "1:0x28f4e69a81d8fc9c1a1923a4a6a4143e765722db76ab106d24f80148db0ec5a2", + "id": "1:0x280ee8e3fe2d0ea63371a9c110de0749885a96bfe6a90373112e8eca1365d0e4", "chainId": 1, - "timestamp": "2024-11-05T01:19:59.000000Z", - "blockNumber": 21118127, - "txHash": "0x28f4e69a81d8fc9c1a1923a4a6a4143e765722db76ab106d24f80148db0ec5a2", + "timestamp": "2024-02-08T12:52:47.000000Z", + "blockNumber": 19183569, + "txHash": "0x280ee8e3fe2d0ea63371a9c110de0749885a96bfe6a90373112e8eca1365d0e4", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "208628763962627000000000", - "gasUsed": "42907", - "effectiveGasPrice": "4862347961" + "gasUsed": "109918", + "effectiveGasPrice": "60000000000", + "transactionFee": "6595080000000000" }, { - "id": "1:0x2c58a776d7ebad2f3ef115f7ee58d7e91eb79c767ca7fb35ed7842b94050802c", + "id": "1:0x297257cd9b3fe27e6cd65998aa9350883dc75f417e9cb3a6d24b34abe120f144", "chainId": 1, - "timestamp": "2024-10-28T19:45:35.000000Z", - "blockNumber": 21066305, - "txHash": "0x2c58a776d7ebad2f3ef115f7ee58d7e91eb79c767ca7fb35ed7842b94050802c", + "timestamp": "2024-01-22T12:59:47.000000Z", + "blockNumber": 19062430, + "txHash": "0x297257cd9b3fe27e6cd65998aa9350883dc75f417e9cb3a6d24b34abe120f144", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "1304362846221519000000000", - "gasUsed": "82607", - "effectiveGasPrice": "15789979617" + "gasUsed": "230957", + "effectiveGasPrice": "16407901723", + "transactionFee": "3789519758238911" }, { - "id": "1:0x2ed5a80037fd1362a143b6a9075300066a2084de2c6e06b6d680dfd11d7df5ff", + "id": "1:0x2d276c8cfde39aa80200a7087e48d31c3ed2f4c15dfe2a62436c4c247d4caff3", "chainId": 1, - "timestamp": "2024-06-20T12:40:35.000000Z", - "blockNumber": 20133000, - "txHash": "0x2ed5a80037fd1362a143b6a9075300066a2084de2c6e06b6d680dfd11d7df5ff", + "timestamp": "2024-08-14T04:45:23.000000Z", + "blockNumber": 20524565, + "txHash": "0x2d276c8cfde39aa80200a7087e48d31c3ed2f4c15dfe2a62436c4c247d4caff3", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "3847595737600869000000000", "gasUsed": "214089", - "effectiveGasPrice": "17971945021" + "effectiveGasPrice": "2078917327", + "transactionFee": "445073331620103" }, { - "id": "1:0x3164fb1f47c8379343117ee02150f03b7c82306c2415137c2e804859406fb89c", + "id": "1:0x2f8820c5a1ecec7240ff998f38870e520eac7b2018757ebb80cb51b309adeca4", "chainId": 1, - "timestamp": "2024-01-27T12:25:35.000000Z", - "blockNumber": 19097901, - "txHash": "0x3164fb1f47c8379343117ee02150f03b7c82306c2415137c2e804859406fb89c", + "timestamp": "2024-12-05T22:06:11.000000Z", + "blockNumber": 21339168, + "txHash": "0x2f8820c5a1ecec7240ff998f38870e520eac7b2018757ebb80cb51b309adeca4", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "1707425072786576000000000", - "gasUsed": "120406", - "effectiveGasPrice": "14180564696" + "gasUsed": "222241", + "effectiveGasPrice": "19893458348", + "transactionFee": "4421142076717868" }, { - "id": "1:0x3424afd5351039dc942ec843c43b78d0017c58c4354dff4a936aec934ed15f44", + "id": "1:0x31d9d187649bbe13c844b7ccc58782cbdc714b32123124b68199a54eb9c3c523", "chainId": 1, - "timestamp": "2024-11-08T11:16:47.000000Z", - "blockNumber": 21142567, - "txHash": "0x3424afd5351039dc942ec843c43b78d0017c58c4354dff4a936aec934ed15f44", + "timestamp": "2024-06-28T14:40:35.000000Z", + "blockNumber": 20190844, + "txHash": "0x31d9d187649bbe13c844b7ccc58782cbdc714b32123124b68199a54eb9c3c523", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "622859710460769000000000", - "gasUsed": "42859", - "effectiveGasPrice": "14532763491" + "gasUsed": "231177", + "effectiveGasPrice": "9655738436", + "transactionFee": "2232184644419172" + }, + { + "id": "1:0x34993c3958396c5307c1dac15caa904ac8365cd27667813688405825f08cdbbb", + "chainId": 1, + "timestamp": "2024-05-02T06:10:47.000000Z", + "blockNumber": 19780564, + "txHash": "0x34993c3958396c5307c1dac15caa904ac8365cd27667813688405825f08cdbbb", + "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", + "to": "0x3cdd07c16614059e66344a7b579dab4f9516c0b6", + "gasUsed": "193618", + "effectiveGasPrice": "6967337935", + "transactionFee": "1349002036298830" }, { - "id": "1:0x368a668b44271e9ceeadfca200325b3f91d3b99b05072d5d3805f49ec2388a6c", + "id": "1:0x36e1e496f6b32079da889859d8827bd9938d34347d8f2845d79ce2dda2a299ae", "chainId": 1, - "timestamp": "2024-11-10T14:50:35.000000Z", - "blockNumber": 21157978, - "txHash": "0x368a668b44271e9ceeadfca200325b3f91d3b99b05072d5d3805f49ec2388a6c", + "timestamp": "2024-03-04T02:34:47.000000Z", + "blockNumber": 19358846, + "txHash": "0x36e1e496f6b32079da889859d8827bd9938d34347d8f2845d79ce2dda2a299ae", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "8043849771713252000000000", - "gasUsed": "222229", - "effectiveGasPrice": "36196219988" + "gasUsed": "85217", + "effectiveGasPrice": "57739888483", + "transactionFee": "4920420076855811" }, { - "id": "1:0x396fe69a8e6963c8c4beaa5c4a163fcd6a6b6fdc223ba035c66543896972d145", + "id": "1:0x3977bd5992c545a7a26a6e263a1e8a9fcf25e1ed20600aff25e640356baaa3d3", "chainId": 1, - "timestamp": "2024-12-06T00:04:35.000000Z", - "blockNumber": 21339755, - "txHash": "0x396fe69a8e6963c8c4beaa5c4a163fcd6a6b6fdc223ba035c66543896972d145", + "timestamp": "2024-11-15T13:58:59.000000Z", + "blockNumber": 21193542, + "txHash": "0x3977bd5992c545a7a26a6e263a1e8a9fcf25e1ed20600aff25e640356baaa3d3", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "830379520477515000000000", - "gasUsed": "42907", - "effectiveGasPrice": "19353008145" + "gasUsed": "40059", + "effectiveGasPrice": "32241688659", + "transactionFee": "1291569805990881" }, { "id": "1:0x3b6f60bd1da0c7ba7e6c6243f79433cf1d098e6648ae9f1669a9bbea80590005", @@ -23484,189 +23466,177 @@ "txHash": "0x3b6f60bd1da0c7ba7e6c6243f79433cf1d098e6648ae9f1669a9bbea80590005", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "1439897243878184000000000", "gasUsed": "42847", - "effectiveGasPrice": "33605555672" + "effectiveGasPrice": "33605555672", + "transactionFee": "1439897243878184" }, { - "id": "1:0x3e113fe5fed3a891cb3873e15e22dedc47a746b47f3839f6ab9091a222cf391f", + "id": "1:0x3dec0e62c1c475622e0854ef1ed898c95d435df65dcfcbfc968717af3da66335", "chainId": 1, - "timestamp": "2024-10-11T08:10:11.000000Z", - "blockNumber": 20941097, - "txHash": "0x3e113fe5fed3a891cb3873e15e22dedc47a746b47f3839f6ab9091a222cf391f", + "timestamp": "2024-11-04T22:00:11.000000Z", + "blockNumber": 21117131, + "txHash": "0x3dec0e62c1c475622e0854ef1ed898c95d435df65dcfcbfc968717af3da66335", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "1165733916712300000000000", - "gasUsed": "85205", - "effectiveGasPrice": "13681520060" + "gasUsed": "40071", + "effectiveGasPrice": "13359047243", + "transactionFee": "535310382074253" }, { - "id": "1:0x3fce26b5c43a3efd6e1e65c30ecc885699e6fe89ceabff1b253e648f29d8ec78", + "id": "1:0x3f9e8d649c17416bda00d7d48571647f075ed81bb65e303357fae5d38eca8a10", "chainId": 1, - "timestamp": "2024-11-22T15:50:35.000000Z", - "blockNumber": 21244278, - "txHash": "0x3fce26b5c43a3efd6e1e65c30ecc885699e6fe89ceabff1b253e648f29d8ec78", + "timestamp": "2024-02-21T12:25:35.000000Z", + "blockNumber": 19276019, + "txHash": "0x3f9e8d649c17416bda00d7d48571647f075ed81bb65e303357fae5d38eca8a10", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "4216274701789668000000000", - "gasUsed": "222229", - "effectiveGasPrice": "18972657492" + "gasUsed": "147638", + "effectiveGasPrice": "36164320890", + "transactionFee": "5339228007557820" }, { - "id": "1:0x42a06b4728ae85f88b06dca4e95e168172660a96f5ac7c5019ce39523e289ee2", + "id": "1:0x420ad3f49047724bfadcb8eb8020e172c4b199ff5bcbed4d0c98bfb4a0ece1b2", "chainId": 1, - "timestamp": "2024-08-31T17:40:35.000000Z", - "blockNumber": 20650105, - "txHash": "0x42a06b4728ae85f88b06dca4e95e168172660a96f5ac7c5019ce39523e289ee2", + "timestamp": "2024-01-28T17:20:35.000000Z", + "blockNumber": 19106483, + "txHash": "0x420ad3f49047724bfadcb8eb8020e172c4b199ff5bcbed4d0c98bfb4a0ece1b2", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "485833873775241000000000", - "gasUsed": "214089", - "effectiveGasPrice": "2269307969" + "gasUsed": "231189", + "effectiveGasPrice": "18142739734", + "transactionFee": "4194401856363726" }, { - "id": "1:0x4505cbedf942115632336bc035de10ac9d3ad34604ba2e5343ab11b49a46c259", + "id": "1:0x44bd69f3a50d3f1441e1f422979f39a37d3f2b3fcbd8952b2bbfb03408753d6c", "chainId": 1, - "timestamp": "2024-11-09T08:19:47.000000Z", - "blockNumber": 21148859, - "txHash": "0x4505cbedf942115632336bc035de10ac9d3ad34604ba2e5343ab11b49a46c259", + "timestamp": "2024-09-25T21:06:11.000000Z", + "blockNumber": 20830192, + "txHash": "0x44bd69f3a50d3f1441e1f422979f39a37d3f2b3fcbd8952b2bbfb03408753d6c", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "2206294132768725000000000", - "gasUsed": "222241", - "effectiveGasPrice": "9927484725" + "gasUsed": "85333", + "effectiveGasPrice": "39333505117", + "transactionFee": "3356445992148961" }, { - "id": "1:0x474e987d2957ffc617bb8bb28d6b9e8eaaa2a18cbfa8af0e5c73ac69d192f288", + "id": "1:0x4701915235c97c1a3fde7de600af0a4379e86fa67e1827f00bcfbe744550bebf", "chainId": 1, - "timestamp": "2024-11-21T21:50:35.000000Z", - "blockNumber": 21238906, - "txHash": "0x474e987d2957ffc617bb8bb28d6b9e8eaaa2a18cbfa8af0e5c73ac69d192f288", + "timestamp": "2024-01-29T17:20:35.000000Z", + "blockNumber": 19113633, + "txHash": "0x4701915235c97c1a3fde7de600af0a4379e86fa67e1827f00bcfbe744550bebf", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "598003650628020000000000", - "gasUsed": "40035", - "effectiveGasPrice": "14937021372" + "gasUsed": "214077", + "effectiveGasPrice": "25951569965", + "transactionFee": "5555634243397305" }, { - "id": "1:0x49beb669618021b2200d155e988333af55c4bd5c2bd2ccbc96128006d28ff787", + "id": "1:0x4962d12a7a876f8f2f205a01ec4786269ec89466f70c6414c7551794dc82385f", "chainId": 1, - "timestamp": "2024-11-24T13:20:35.000000Z", - "blockNumber": 21257862, - "txHash": "0x49beb669618021b2200d155e988333af55c4bd5c2bd2ccbc96128006d28ff787", + "timestamp": "2024-11-20T10:11:59.000000Z", + "blockNumber": 21228272, + "txHash": "0x4962d12a7a876f8f2f205a01ec4786269ec89466f70c6414c7551794dc82385f", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "2806586763432361000000000", - "gasUsed": "222241", - "effectiveGasPrice": "12628573321" + "gasUsed": "40059", + "effectiveGasPrice": "12868436459", + "transactionFee": "515496696111081" }, { - "id": "1:0x4caa85983f3da1c8bde8e07ebff9e2344cac054da0c2e17214ad3cedecd3a7d5", + "id": "1:0x4c1136e2dcf9cfdeb419ef9e0aeaeb3a7ba2e719e1f7c073d7c73b9f73940589", "chainId": 1, - "timestamp": "2024-11-11T13:58:47.000000Z", - "blockNumber": 21164891, - "txHash": "0x4caa85983f3da1c8bde8e07ebff9e2344cac054da0c2e17214ad3cedecd3a7d5", + "timestamp": "2024-11-22T03:20:35.000000Z", + "blockNumber": 21240546, + "txHash": "0x4c1136e2dcf9cfdeb419ef9e0aeaeb3a7ba2e719e1f7c073d7c73b9f73940589", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "3975012291121785000000000", - "gasUsed": "221985", - "effectiveGasPrice": "17906670681" + "gasUsed": "222009", + "effectiveGasPrice": "12346671122", + "transactionFee": "2741072109124098" }, { - "id": "1:0x4fab4e5fb73e18a632f7c4bc405553d79589fb6bad06dc92ca841d940934a384", + "id": "1:0x4e90bbdb4a2154a23adfc3039510cdb246aa214e2604f6d63047276de30d82bb", "chainId": 1, - "timestamp": "2024-11-05T12:20:59.000000Z", - "blockNumber": 21121411, - "txHash": "0x4fab4e5fb73e18a632f7c4bc405553d79589fb6bad06dc92ca841d940934a384", + "timestamp": "2024-11-20T17:50:35.000000Z", + "blockNumber": 21230549, + "txHash": "0x4e90bbdb4a2154a23adfc3039510cdb246aa214e2604f6d63047276de30d82bb", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "255863801891469000000000", - "gasUsed": "42907", - "effectiveGasPrice": "5963218167" + "gasUsed": "686464", + "effectiveGasPrice": "17882665055", + "transactionFee": "12275805784315520" }, { - "id": "1:0x5271c8cf0ab55cb76ad01a25fa25d678cc3ffe06807d7d0a9177b434a54e81d1", + "id": "1:0x50fd8c8b3b5eebf12a77c5f6d2c3146004659027b1061f398e3fbcdd3ac99dd4", "chainId": 1, - "timestamp": "2024-11-18T12:29:23.000000Z", - "blockNumber": 21214609, - "txHash": "0x5271c8cf0ab55cb76ad01a25fa25d678cc3ffe06807d7d0a9177b434a54e81d1", + "timestamp": "2024-10-28T03:48:59.000000Z", + "blockNumber": 21061552, + "txHash": "0x50fd8c8b3b5eebf12a77c5f6d2c3146004659027b1061f398e3fbcdd3ac99dd4", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "2576883627811098000000000", - "gasUsed": "206497", - "effectiveGasPrice": "12479036634" + "gasUsed": "40071", + "effectiveGasPrice": "6661937211", + "transactionFee": "266950485981981" }, { - "id": "1:0x54ddf7d683f5b3ff9598eee84964e3a2b9df52239f6e0dcedf5a775a10ea8972", + "id": "1:0x53eed87bff4d046739f416b8612191b8997d708b61a21ec2661f6a4ac4582975", "chainId": 1, - "timestamp": "2024-12-03T23:40:35.000000Z", - "blockNumber": 21325318, - "txHash": "0x54ddf7d683f5b3ff9598eee84964e3a2b9df52239f6e0dcedf5a775a10ea8972", + "timestamp": "2024-12-06T07:51:47.000000Z", + "blockNumber": 21342079, + "txHash": "0x53eed87bff4d046739f416b8612191b8997d708b61a21ec2661f6a4ac4582975", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "2300051092969952000000000", - "gasUsed": "98798", - "effectiveGasPrice": "23280340624" + "gasUsed": "40071", + "effectiveGasPrice": "13562510574", + "transactionFee": "543463361210754" }, { - "id": "1:0x56d9cd3772bc24fdd4e733dcfdc31426ccb7a5935f8dce902b0bbbc40fa9108d", + "id": "1:0x55d8266ab851df89adbafbab6ede4439d0dbc8bbfb673a237a8c91dd1380c177", "chainId": 1, - "timestamp": "2024-08-08T12:27:35.000000Z", - "blockNumber": 20483864, - "txHash": "0x56d9cd3772bc24fdd4e733dcfdc31426ccb7a5935f8dce902b0bbbc40fa9108d", + "timestamp": "2024-11-08T00:50:35.000000Z", + "blockNumber": 21139459, + "txHash": "0x55d8266ab851df89adbafbab6ede4439d0dbc8bbfb673a237a8c91dd1380c177", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "963466114264940000000000", - "gasUsed": "120406", - "effectiveGasPrice": "8001811490" + "gasUsed": "222241", + "effectiveGasPrice": "14647123563", + "transactionFee": "3255191387764683" }, { - "id": "1:0x59208809a595579388de2aef42fb476345a8fe8d5e2a664d5ce038fd4b3e68a8", + "id": "1:0x5809e47d77a677a223e076423f0de7b7a4de89234fb085214378b49666b8b2c2", "chainId": 1, - "timestamp": "2024-10-11T11:04:11.000000Z", - "blockNumber": 20941960, - "txHash": "0x59208809a595579388de2aef42fb476345a8fe8d5e2a664d5ce038fd4b3e68a8", + "timestamp": "2024-05-02T11:55:47.000000Z", + "blockNumber": 19782276, + "txHash": "0x5809e47d77a677a223e076423f0de7b7a4de89234fb085214378b49666b8b2c2", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "1340120970854171000000000", "gasUsed": "85217", - "effectiveGasPrice": "15725981563" + "effectiveGasPrice": "10191656643", + "transactionFee": "868502404146531" }, { - "id": "1:0x5b57cb12610449150b651cb9d8005fd608d0ea7ef5f45d90ffd1f0084d0d7802", + "id": "1:0x5a34448a47d8bfff5ffd75daf188e9cdcc38a5f82f7b35e640df79a5b0705dc5", "chainId": 1, - "timestamp": "2024-04-30T14:20:35.000000Z", - "blockNumber": 19768682, - "txHash": "0x5b57cb12610449150b651cb9d8005fd608d0ea7ef5f45d90ffd1f0084d0d7802", + "timestamp": "2024-02-03T01:20:35.000000Z", + "blockNumber": 19144535, + "txHash": "0x5a34448a47d8bfff5ffd75daf188e9cdcc38a5f82f7b35e640df79a5b0705dc5", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "5449844425704644000000000", - "gasUsed": "213857", - "effectiveGasPrice": "25483591492" - }, - { - "id": "1:0x5e3e51e44429fa4d1de7d1ec93715fa95cb100b2741aedead2b6086bef86353f", - "chainId": 1, - "timestamp": "2024-07-30T12:27:35.000000Z", - "blockNumber": 20419366, - "txHash": "0x5e3e51e44429fa4d1de7d1ec93715fa95cb100b2741aedead2b6086bef86353f", - "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", - "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "3392000377855056000000000", - "gasUsed": "332079", - "effectiveGasPrice": "10214438064" + "gasUsed": "214077", + "effectiveGasPrice": "42238787263", + "transactionFee": "9042352860901251" }, { - "id": "1:0x6066316b5063c713088b48be92e256174e37a0334723ee4e5dd310f9ecaaf24c", + "id": "1:0x5c6f18e97146fa6f44cb82a48ce32cd947e65698bf37d1259223228f99b62cc5", "chainId": 1, - "timestamp": "2024-10-29T21:45:35.000000Z", - "blockNumber": 21074068, - "txHash": "0x6066316b5063c713088b48be92e256174e37a0334723ee4e5dd310f9ecaaf24c", + "timestamp": "2024-08-03T22:40:35.000000Z", + "blockNumber": 20451065, + "txHash": "0x5c6f18e97146fa6f44cb82a48ce32cd947e65698bf37d1259223228f99b62cc5", "from": "0x39878253374355dbcc15c86458f084fb6f2d6de7", "to": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "gasCost": "2290144396915986000000000", - "gasUsed": "222009", - "effectiveGasPrice": "10315547554" + "gasUsed": "214089", + "effectiveGasPrice": "2133284647", + "transactionFee": "456712776791583" } ] } \ No newline at end of file