feat: add option to pass custom tags to createSource method (#481)

This commit is contained in:
Asia
2023-11-17 16:46:00 +01:00
committed by GitHub
parent 9e8575b2b4
commit 73ca5b636c

View File

@@ -1,4 +1,4 @@
import { ArWallet } from './CreateContract'; import { ArWallet, Tags } from './CreateContract';
import { CustomSignature } from '../../contract/Signature'; import { CustomSignature } from '../../contract/Signature';
import { Transaction } from '../../utils/types/arweave-types'; import { Transaction } from '../../utils/types/arweave-types';
import { Signer, DataItem } from 'warp-arbundles'; import { Signer, DataItem } from 'warp-arbundles';
@@ -7,6 +7,7 @@ export interface SourceData {
src: string | Buffer; src: string | Buffer;
wasmSrcCodeDir?: string; wasmSrcCodeDir?: string;
wasmGlueCode?: string; wasmGlueCode?: string;
tags?: Tags;
} }
export interface Source { export interface Source {