Skip to content

Commit

Permalink
Merge pull request #14 from ttwishing/master
Browse files Browse the repository at this point in the history
add rex price calculation for net and cpu
  • Loading branch information
aaroncox authored Oct 9, 2024
2 parents ce82951 + 9671bcc commit 7783e11
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions src/rex.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {BNPrecision, Resources, SampleUsage} from './'

import {Asset, Struct, UInt64, UInt8} from '@wharfkit/antelope'
import {Asset, Struct, UInt128, UInt64, UInt8} from '@wharfkit/antelope'

@Struct.type('rexstate')
export class REXState extends Struct {
Expand Down Expand Up @@ -39,15 +39,31 @@ export class REXState extends Struct {
)
}

price_per(sample: SampleUsage, unit = 1000): number {
cpu_price_per_ms(sample: SampleUsage, ms = 1): number {
return this.cpu_price_per_us(sample, ms * 1000)
}

cpu_price_per_us(sample: SampleUsage, us = 1000): number {
return this.price_per(sample, us, sample.cpu)
}

net_price_per_kb(sample: SampleUsage, kilobytes = 1): number {
return this.net_price_per_kb(sample, kilobytes * 1000)
}

net_price_per_byte(sample: SampleUsage, bytes = 1000): number {
return this.price_per(sample, bytes, sample.net)
}

price_per(sample: SampleUsage, unit = 1000, usage: UInt128 = sample.cpu): number {
// Sample token units
const tokens = Asset.fromUnits(10000, this.symbol)

// Spending 1 EOS (10000 units) on REX gives this many tokens
const bancor = Number(tokens.units) / (this.total_rent.value / this.total_unlent.value)

// The ratio of the number of tokens received vs the sampled values
const unitPrice = bancor * (Number(sample.cpu) / BNPrecision)
const unitPrice = bancor * (Number(usage) / BNPrecision)

// The token units spent per unit
const perunit = Number(tokens.units) / unitPrice
Expand Down

0 comments on commit 7783e11

Please sign in to comment.