Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

associate bucket with Pool entity #41

Merged
merged 2 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ type Bucket @entity {
bucketPrice: BigDecimal!
# current exchange rate of the bucket
exchangeRate: BigDecimal!
# pool address
poolAddress: String!
# pool in which the bucket belongs
pool: Pool!
# total collateral available in the bucket
collateral: BigDecimal!
# total quote tokens deposited in the bucket, inclusive of interest
Expand Down
2 changes: 1 addition & 1 deletion src/utils/pool/bucket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function loadOrCreateBucket(poolId: Bytes, bucketId: Bytes, index: u32):

bucket.bucketIndex = index
bucket.bucketPrice = indexToPrice(index)
bucket.poolAddress = poolId.toHexString()
bucket.pool = poolId
bucket.collateral = ZERO_BD
bucket.deposit = ZERO_BD
bucket.exchangeRate = ONE_BD
Expand Down