# prev

Returns the previous revision of a given revision if it exists.

# Type

prev(rev: string): Promise<string | undefined>

# Parameters

# rev

A revision encoded as a string of the form <transaction-id>:<output-number>.

# Return Value

The previous revision or undefined.

# Description

Given the revision of an on-chain object, the function returns the previous revision of the same on-chain object. If no such revision exists because the revision passed in is the revision where the on-chain object was created, undefined is returned.

# Example

import { Contract, Computer } from '@bitcoin-computer/lib'
import { chain, network, url, expect } from '../../utils'

// A smart contract
class Counter extends Contract {
  n: number

  constructor() {
    super({ n: 0 })
  }
  inc() {
    this.n += 1
  }
}

describe('prev', () => {
  it('Should return the previous revision', async () => {
    // Create and fund wallet
    const computer = new Computer({ chain, network, url })
    await computer.faucet(1e8)

    // Create on-chain object at counter._id
    const counter = await computer.new(Counter, [])

    // Update on-chain object, the new version is stores at counter._rev
    await counter.inc()

    // Check that the previous revision of counter._rev is counter._id
    expect(await computer.prev(counter._rev)).eq(counter._id)
  })
})

Sources