Skip to content

Commit 45a1aac

Browse files
committed
update evm
1 parent 5e8bc26 commit 45a1aac

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@heyanon/sdk",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",

src/adapter/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export interface FunctionReturn {
1515
type SignTypedDataParameters = Omit<ViemSignTypedDataParameters, 'account'>;
1616

1717
export interface EvmFunctionOptions {
18+
readonly getAddress: () => Promise<Address>;
1819
readonly getProvider: (chainId: number) => PublicClient;
1920
readonly sendTransactions: (props: EVM.types.SendTransactionProps) => Promise<EVM.types.TransactionReturn>;
2021
readonly deployContracts: (props: DeployContractProps) => Promise<Address[]>;

src/blockchain/evm/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export interface TransactionReturnData {
1313
}
1414

1515
export interface TransactionReturn {
16-
readonly isMultisig: boolean;
1716
readonly data: TransactionReturnData[];
1817
}
1918

0 commit comments

Comments
 (0)