@canvas-js/chain-near
Advanced tools
@@ -1,7 +0,6 @@ | ||
import * as nearApiUtils from "near-api-js/lib/utils"; | ||
import { KeyPairEd25519 } from "near-api-js/lib/utils"; | ||
import { utils as nearApiUtils } from "near-api-js"; | ||
import type { Action, ActionPayload, ChainImplementation, Session, SessionPayload } from "@canvas-js/interfaces"; | ||
interface NearWindowSigner { | ||
} | ||
export declare class NearChainImplementation implements ChainImplementation<NearWindowSigner, KeyPairEd25519> { | ||
export declare class NearChainImplementation implements ChainImplementation<NearWindowSigner, nearApiUtils.KeyPairEd25519> { | ||
readonly genesisHash: string; | ||
@@ -14,11 +13,11 @@ readonly chain: string; | ||
getSignerAddress: (signer: NearWindowSigner) => Promise<never>; | ||
getDelegatedSignerAddress: (keypair: KeyPairEd25519) => Promise<never>; | ||
getDelegatedSignerAddress: (keypair: nearApiUtils.KeyPairEd25519) => Promise<never>; | ||
signSession(signer: NearWindowSigner, payload: SessionPayload): Promise<Session>; | ||
signAction(signer: NearWindowSigner, payload: ActionPayload): Promise<Action>; | ||
signDelegatedAction(keypair: KeyPairEd25519, payload: ActionPayload): Promise<Action>; | ||
signDelegatedAction(keypair: nearApiUtils.KeyPairEd25519, payload: ActionPayload): Promise<Action>; | ||
importDelegatedSigner: (secretKey: string) => nearApiUtils.key_pair.KeyPairEd25519; | ||
exportDelegatedSigner: (keypair: KeyPairEd25519) => string; | ||
generateDelegatedSigner: () => Promise<KeyPairEd25519>; | ||
exportDelegatedSigner: (keypair: nearApiUtils.KeyPairEd25519) => string; | ||
generateDelegatedSigner: () => Promise<nearApiUtils.KeyPairEd25519>; | ||
getLatestBlock(): Promise<string>; | ||
} | ||
export {}; |
@@ -1,3 +0,2 @@ | ||
import * as nearApiUtils from "near-api-js/lib/utils"; | ||
import { KeyPairEd25519 } from "near-api-js/lib/utils"; | ||
import { utils as nearApiUtils } from "near-api-js"; | ||
import nacl from "tweetnacl"; | ||
@@ -21,5 +20,5 @@ import bs58 from "bs58"; | ||
}; | ||
this.importDelegatedSigner = (secretKey) => new KeyPairEd25519(secretKey); | ||
this.importDelegatedSigner = (secretKey) => new nearApiUtils.KeyPairEd25519(secretKey); | ||
this.exportDelegatedSigner = (keypair) => keypair.secretKey; | ||
this.generateDelegatedSigner = async () => KeyPairEd25519.fromRandom(); | ||
this.generateDelegatedSigner = async () => nearApiUtils.KeyPairEd25519.fromRandom(); | ||
this.chain = `near:${genesisHash.slice(0, 32)}`; | ||
@@ -26,0 +25,0 @@ } |
{ | ||
"name": "@canvas-js/chain-near", | ||
"version": "0.4.10-2", | ||
"version": "0.4.10-3", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "author": "Canvas Technologies, Inc. (https://canvas.xyz)", |
5750
-0.43%122
-1.61%