Skip to content

Commit

Permalink
impelment gloadBytes, gloadUint64, and Block via context manager
Browse files Browse the repository at this point in the history
  • Loading branch information
boblat committed Oct 16, 2024
1 parent d17904c commit d4a71a3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/algo-ts/src/op.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ import {
GetBitType,
GetByteType,
GITxnType,
GloadBytesType,
GloadUint64Type,
GlobalType,
GTxnType,
ItobType,
Expand Down Expand Up @@ -100,6 +102,8 @@ export const extractUint64: ExtractUint64Type = createFunctionProxy('extractUint
export const gaid: GaidType = createFunctionProxy('gaid')
export const getBit: GetBitType = createFunctionProxy('getBit')
export const getByte: GetByteType = createFunctionProxy('getByte')
export const gloadBytes: GloadBytesType = createFunctionProxy('gloadBytes')
export const gloadUint64: GloadUint64Type = createFunctionProxy('gloadUint64')
export const itob: ItobType = createFunctionProxy('itob')
export const keccak256: Keccak256Type = createFunctionProxy('keccak256')
export const minBalance: BalanceType = createFunctionProxy('minBalance')
Expand Down Expand Up @@ -131,5 +135,6 @@ export const AcctParams = createObjectProxy('AcctParams')
export const AppParams = createObjectProxy('AppParams')
export const AssetHolding = createObjectProxy('AssetHolding')
export const AssetParams = createObjectProxy('AssetParams')
export const Block = createObjectProxy('Block')

export { VrfVerify } from './op-types'

0 comments on commit d4a71a3

Please sign in to comment.