From 73ca5b636c38a51b08bfb56cfd32a5dea9853a69 Mon Sep 17 00:00:00 2001 From: Asia Date: Fri, 17 Nov 2023 16:46:00 +0100 Subject: [PATCH] feat: add option to pass custom tags to createSource method (#481) --- src/contract/deploy/Source.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/contract/deploy/Source.ts b/src/contract/deploy/Source.ts index 364b4de..e504307 100644 --- a/src/contract/deploy/Source.ts +++ b/src/contract/deploy/Source.ts @@ -1,4 +1,4 @@ -import { ArWallet } from './CreateContract'; +import { ArWallet, Tags } from './CreateContract'; import { CustomSignature } from '../../contract/Signature'; import { Transaction } from '../../utils/types/arweave-types'; import { Signer, DataItem } from 'warp-arbundles'; @@ -7,6 +7,7 @@ export interface SourceData { src: string | Buffer; wasmSrcCodeDir?: string; wasmGlueCode?: string; + tags?: Tags; } export interface Source {