@atomiqlabs/chain-evm 1.0.0-dev.96 → 1.0.0-dev.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AbstractSigner } from "@atomiqlabs/base";
|
|
2
2
|
import { Signer, TransactionRequest, TransactionResponse } from "ethers";
|
|
3
3
|
export declare class EVMSigner implements AbstractSigner {
|
|
4
|
+
type: "AtomiqAbstractSigner";
|
|
4
5
|
account: Signer;
|
|
5
6
|
readonly address: string;
|
|
6
7
|
readonly isManagingNoncesInternally: boolean;
|
|
@@ -4,6 +4,7 @@ exports.EVMSigner = void 0;
|
|
|
4
4
|
const ethers_1 = require("ethers");
|
|
5
5
|
class EVMSigner {
|
|
6
6
|
constructor(account, address, isManagingNoncesInternally = false) {
|
|
7
|
+
this.type = "AtomiqAbstractSigner";
|
|
7
8
|
this.account = account;
|
|
8
9
|
this.address = address;
|
|
9
10
|
this.isManagingNoncesInternally = isManagingNoncesInternally;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atomiqlabs/chain-evm",
|
|
3
|
-
"version": "1.0.0-dev.
|
|
3
|
+
"version": "1.0.0-dev.97",
|
|
4
4
|
"description": "EVM specific base implementation",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types:": "./dist/index.d.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "adambor",
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atomiqlabs/base": "^10.0.0-dev.
|
|
26
|
+
"@atomiqlabs/base": "^10.0.0-dev.16",
|
|
27
27
|
"@noble/hashes": "^1.8.0",
|
|
28
28
|
"@scure/btc-signer": "^1.6.0",
|
|
29
29
|
"buffer": "6.0.3",
|