Skip to content

Commit

Permalink
make build
Browse files Browse the repository at this point in the history
  • Loading branch information
djordon authored and setzeus committed Nov 7, 2024
1 parent 3b09578 commit 0169c62
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions contracts/tests/clarigen-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,7 @@ export const contracts = {
{ name: "recipient", type: "principal" },
{ name: "burn-hash", type: { buffer: { length: 32 } } },
{ name: "burn-height", type: "uint128" },
{ name: "sweep-txid", type: { buffer: { length: 32 } } },
],
outputs: { type: { response: { ok: "bool", error: "uint128" } } },
} as TypedAbiFunction<
Expand All @@ -761,6 +762,7 @@ export const contracts = {
recipient: TypedAbiArg<string, "recipient">,
burnHash: TypedAbiArg<Uint8Array, "burnHash">,
burnHeight: TypedAbiArg<number | bigint, "burnHeight">,
sweepTxid: TypedAbiArg<Uint8Array, "sweepTxid">,
],
Response<boolean, bigint>
>,
Expand All @@ -775,6 +777,7 @@ export const contracts = {
{ name: "fee", type: "uint128" },
{ name: "burn-hash", type: { buffer: { length: 32 } } },
{ name: "burn-height", type: "uint128" },
{ name: "sweep-txid", type: { buffer: { length: 32 } } },
],
outputs: { type: { response: { ok: "bool", error: "uint128" } } },
} as TypedAbiFunction<
Expand All @@ -786,6 +789,7 @@ export const contracts = {
fee: TypedAbiArg<number | bigint, "fee">,
burnHash: TypedAbiArg<Uint8Array, "burnHash">,
burnHeight: TypedAbiArg<number | bigint, "burnHeight">,
sweepTxid: TypedAbiArg<Uint8Array, "sweepTxid">,
],
Response<boolean, bigint>
>,
Expand Down

0 comments on commit 0169c62

Please sign in to comment.