From 786358b8059a1204a785a599894988adefcdb894 Mon Sep 17 00:00:00 2001 From: juanelas Date: Sun, 16 Apr 2023 23:49:02 +0200 Subject: [PATCH] fixed some broken links in autogenerated docs --- .github/workflows/automatic-publication.yml | 77 ------------------- README.md | 3 +- docs/API.md | 64 +++++++-------- .../ConflictResolution.ConflictResolver.md | 10 +-- docs/classes/EthersIoAgentDest.md | 14 ++-- docs/classes/EthersIoAgentOrig.md | 22 +++--- docs/classes/I3mServerWalletAgentDest.md | 18 ++--- docs/classes/I3mServerWalletAgentOrig.md | 24 +++--- docs/classes/I3mWalletAgentDest.md | 18 ++--- docs/classes/I3mWalletAgentOrig.md | 24 +++--- ...nRepudiationProtocol.NonRepudiationDest.md | 30 ++++---- ...nRepudiationProtocol.NonRepudiationOrig.md | 24 +++--- docs/classes/NrError.md | 6 +- docs/classes/Signers.EthersIoAgentDest.md | 14 ++-- docs/classes/Signers.EthersIoAgentOrig.md | 22 +++--- .../Signers.I3mServerWalletAgentDest.md | 18 ++--- .../Signers.I3mServerWalletAgentOrig.md | 24 +++--- docs/classes/Signers.I3mWalletAgentDest.md | 18 ++--- docs/classes/Signers.I3mWalletAgentOrig.md | 24 +++--- docs/interfaces/Algs.md | 6 +- docs/interfaces/Block.md | 12 +-- .../ConflictResolutionRequestPayload.md | 10 +-- docs/interfaces/ContractConfig.md | 4 +- docs/interfaces/DataExchange.md | 2 +- docs/interfaces/DecodedProof.md | 6 +- docs/interfaces/DisputeRequestPayload.md | 14 ++-- docs/interfaces/DisputeResolutionPayload.md | 14 ++-- docs/interfaces/DltConfig.md | 6 +- docs/interfaces/JWK.md | 2 +- docs/interfaces/JwkPair.md | 4 +- docs/interfaces/NrProofPayload.md | 8 +- docs/interfaces/NrpDltAgentDest.md | 4 +- docs/interfaces/NrpDltAgentOrig.md | 8 +- docs/interfaces/OrigBlock.md | 12 +-- docs/interfaces/PoOPayload.md | 8 +- docs/interfaces/PoPPayload.md | 14 ++-- docs/interfaces/PoRPayload.md | 10 +-- docs/interfaces/ProofPayload.md | 6 +- docs/interfaces/ResolutionPayload.md | 14 ++-- docs/interfaces/Signers.NrpDltAgentDest.md | 4 +- docs/interfaces/Signers.NrpDltAgentOrig.md | 8 +- docs/interfaces/StoredProof.md | 4 +- docs/interfaces/TimestampVerifyOptions.md | 8 +- docs/interfaces/VerificationRequestPayload.md | 12 +-- .../VerificationResolutionPayload.md | 14 ++-- docs/modules/ConflictResolution.md | 10 +-- package.json | 9 +++ 47 files changed, 310 insertions(+), 377 deletions(-) delete mode 100644 .github/workflows/automatic-publication.yml diff --git a/.github/workflows/automatic-publication.yml b/.github/workflows/automatic-publication.yml deleted file mode 100644 index e9fab89..0000000 --- a/.github/workflows/automatic-publication.yml +++ /dev/null @@ -1,77 +0,0 @@ -name: build, test (node and browser), publish to NPM - -on: - push: - tags: - - "v*.*.*" - workflow_dispatch: - -jobs: - node: - name: Tests in node.js - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - node-version: [16.x, 18.x] - # When set to true, GitHub cancels all in-progress jobs if any matrix job fails. - fail-fast: true - # The maximum number of jobs that can run simultaneously - max-parallel: 1 - steps: - - name: Git checkout - uses: actions/checkout@v3 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - - name: install - run: npm ci - - - name: node tests - run: npm run test:node - env: - RPC_PROVIDER_URL: ${{ secrets.RPC_PROVIDER_URL }} - PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} - - browser: - name: test in browser - needs: [node] - runs-on: ubuntu-latest - steps: - - name: Git checkout - uses: actions/checkout@v3 - - - name: Use Node.js 18 - uses: actions/setup-node@v3 - with: - node-version: 18.x - - - name: install - run: npm ci - - - name: browser tests - run: npm run test:browser-headless - env: - RPC_PROVIDER_URL: ${{ secrets.RPC_PROVIDER_URL }} - PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} - - npm-publish: - needs: [node, browser] - runs-on: ubuntu-latest - steps: - - name: Git checkout - uses: actions/checkout@v3 - - - name: Install Node.js, NPM and Yarn - uses: actions/setup-node@v3 - with: - node-version: "18.x" - registry-url: "https://registry.npmjs.org" - - - name: NPM publish - run: npm publish --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/README.md b/README.md index c8c8e94..886539c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ [![License: EUPL-1.2](https://img.shields.io/badge/license-EUPL--1.2-green.svg)](LICENSE) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com) +[![Node.js CI](https://github.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-NonRepudiationLibrary/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-NonRepudiationLibrary/actions/workflows/build-and-test.yml) # @i3m/non-repudiation-library @@ -37,7 +38,7 @@ import * as nonRepudiationLibrary from '@i3m/non-repudiation-library' The appropriate version for browser or node is automatically exported. -You can also download the [IIFE bundle](https://raw.githubusercontent.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-NonRepudiationLibrary/main/dist/bundle.iife.js), the [ESM bundle](https://raw.githubusercontent.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-NonRepudiationLibrary/main/dist/bundle.esm.min.js) or the [UMD bundle](https://raw.githubusercontent.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-NonRepudiationLibrary/main/dist/bundle.umd.js) and manually add it to your project, or, if you have already installed `@i3m/non-repudiation-library` in your project, just get the bundles from `node_modules/@i3m/non-repudiation-library/dist/bundles/`. +You can also download the [IIFE bundle](https://raw.githubusercontent.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-NonRepudiationLibrary/public/dist/bundle.iife.js), the [ESM bundle](https://raw.githubusercontent.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-NonRepudiationLibrary/public/dist/bundle.esm.min.js) or the [UMD bundle](https://raw.githubusercontent.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-NonRepudiationLibrary/public/dist/bundle.umd.js) and manually add it to your project, or, if you have already installed `@i3m/non-repudiation-library` in your project, just get the bundles from `node_modules/@i3m/non-repudiation-library/dist/bundles/`. ### Example for an i3-MARKET Provider running the Non-Repudiation Protocol diff --git a/docs/API.md b/docs/API.md index 7b16b0a..055bb2b 100644 --- a/docs/API.md +++ b/docs/API.md @@ -115,7 +115,7 @@ ___ #### Defined in -[src/ts/types.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L13) +[src/ts/types.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L13) ___ @@ -125,7 +125,7 @@ ___ #### Defined in -[src/ts/types.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L11) +[src/ts/types.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L11) ___ @@ -135,7 +135,7 @@ ___ #### Defined in -[src/ts/types.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L9) +[src/ts/types.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L9) ___ @@ -188,7 +188,7 @@ ___ #### Defined in -[src/ts/types.ts:177](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L177) +[src/ts/types.ts:177](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L177) ___ @@ -198,7 +198,7 @@ ___ #### Defined in -[src/ts/types.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L10) +[src/ts/types.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L10) ___ @@ -229,7 +229,7 @@ ___ #### Defined in -[src/ts/types.ts:175](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L175) +[src/ts/types.ts:175](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L175) ## Variables @@ -239,7 +239,7 @@ ___ #### Defined in -[src/ts/constants.ts:3](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/constants.ts#L3) +[src/ts/constants.ts:3](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/constants.ts#L3) ___ @@ -249,7 +249,7 @@ ___ #### Defined in -[src/ts/constants.ts:1](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/constants.ts#L1) +[src/ts/constants.ts:1](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/constants.ts#L1) ___ @@ -259,7 +259,7 @@ ___ #### Defined in -[src/ts/constants.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/constants.ts#L4) +[src/ts/constants.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/constants.ts#L4) ___ @@ -269,7 +269,7 @@ ___ #### Defined in -[src/ts/constants.ts:2](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/constants.ts#L2) +[src/ts/constants.ts:2](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/constants.ts#L2) ___ @@ -279,7 +279,7 @@ ___ #### Defined in -[src/ts/dlt/defaultDltConfig.ts:3](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/defaultDltConfig.ts#L3) +[src/ts/dlt/defaultDltConfig.ts:3](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/defaultDltConfig.ts#L3) ## Functions @@ -302,7 +302,7 @@ ___ #### Defined in -[src/ts/utils/timestamps.ts:3](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/utils/timestamps.ts#L3) +[src/ts/utils/timestamps.ts:3](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/utils/timestamps.ts#L3) ___ @@ -333,7 +333,7 @@ a proof as a compact JWS formatted JWT string #### Defined in -[src/ts/proofs/createProof.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/proofs/createProof.ts#L13) +[src/ts/proofs/createProof.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/proofs/createProof.ts#L13) ___ @@ -359,7 +359,7 @@ the exchange id in hexadecimal #### Defined in -[src/ts/exchange/exchangeId.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/exchange/exchangeId.ts#L13) +[src/ts/exchange/exchangeId.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/exchange/exchangeId.ts#L13) ___ @@ -383,7 +383,7 @@ Generates a pair of JWK signing/verification keys #### Defined in -[src/ts/crypto/generateKeys.ts:18](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/crypto/generateKeys.ts#L18) +[src/ts/crypto/generateKeys.ts:18](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/crypto/generateKeys.ts#L18) ___ @@ -403,7 +403,7 @@ ___ #### Defined in -[src/ts/utils/getDltAddress.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/utils/getDltAddress.ts#L4) +[src/ts/utils/getDltAddress.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/utils/getDltAddress.ts#L4) ___ @@ -424,7 +424,7 @@ ___ #### Defined in -[src/ts/crypto/importJwk.ts:6](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/crypto/importJwk.ts#L6) +[src/ts/crypto/importJwk.ts:6](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/crypto/importJwk.ts#L6) ___ @@ -444,7 +444,7 @@ ___ #### Defined in -[src/ts/utils/jsonSort.ts:5](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/utils/jsonSort.ts#L5) +[src/ts/utils/jsonSort.ts:5](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/utils/jsonSort.ts#L5) ___ @@ -469,7 +469,7 @@ the plaintext #### Defined in -[src/ts/crypto/jwe.ts:56](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/crypto/jwe.ts#L56) +[src/ts/crypto/jwe.ts:56](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/crypto/jwe.ts#L56) ___ @@ -495,7 +495,7 @@ a Compact JWE #### Defined in -[src/ts/crypto/jwe.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/crypto/jwe.ts#L15) +[src/ts/crypto/jwe.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/crypto/jwe.ts#L15) ___ @@ -524,7 +524,7 @@ Decodes and optionally verifies a JWS, and returns the decoded header, payload. #### Defined in -[src/ts/crypto/jwsDecode.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/crypto/jwsDecode.ts#L12) +[src/ts/crypto/jwsDecode.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/crypto/jwsDecode.ts#L12) ___ @@ -550,7 +550,7 @@ a promise that resolves to the secret in JWK and raw hex string #### Defined in -[src/ts/crypto/oneTimeSecret.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/crypto/oneTimeSecret.ts#L19) +[src/ts/crypto/oneTimeSecret.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/crypto/oneTimeSecret.ts#L19) ___ @@ -572,7 +572,7 @@ Verifies and returns the ethereum address in EIP-55 format #### Defined in -[src/ts/utils/parseAddress.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/utils/parseAddress.ts#L9) +[src/ts/utils/parseAddress.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/utils/parseAddress.ts#L9) ___ @@ -594,7 +594,7 @@ ___ #### Defined in -[src/ts/utils/parseHex.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/utils/parseHex.ts#L4) +[src/ts/utils/parseHex.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/utils/parseHex.ts#L4) ___ @@ -615,7 +615,7 @@ ___ #### Defined in -[src/ts/utils/parseJwk.ts:6](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/utils/parseJwk.ts#L6) +[src/ts/utils/parseJwk.ts:6](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/utils/parseJwk.ts#L6) ▸ **parseJwk**(`jwk`, `stringify`): `Promise`<[`JWK`](interfaces/JWK.md)\> @@ -632,7 +632,7 @@ ___ #### Defined in -[src/ts/utils/parseJwk.ts:7](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/utils/parseJwk.ts#L7) +[src/ts/utils/parseJwk.ts:7](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/utils/parseJwk.ts#L7) ___ @@ -653,7 +653,7 @@ ___ #### Defined in -[src/ts/utils/sha.ts:5](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/utils/sha.ts#L5) +[src/ts/utils/sha.ts:5](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/utils/sha.ts#L5) ___ @@ -673,7 +673,7 @@ ___ #### Defined in -[src/ts/exchange/checkAgreement.ts:52](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/exchange/checkAgreement.ts#L52) +[src/ts/exchange/checkAgreement.ts:52](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/exchange/checkAgreement.ts#L52) ___ @@ -693,7 +693,7 @@ ___ #### Defined in -[src/ts/exchange/checkAgreement.ts:73](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/exchange/checkAgreement.ts#L73) +[src/ts/exchange/checkAgreement.ts:73](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/exchange/checkAgreement.ts#L73) ___ @@ -713,7 +713,7 @@ ___ #### Defined in -[src/ts/exchange/checkAgreement.ts:20](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/exchange/checkAgreement.ts#L20) +[src/ts/exchange/checkAgreement.ts:20](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/exchange/checkAgreement.ts#L20) ___ @@ -734,7 +734,7 @@ ___ #### Defined in -[src/ts/crypto/verifyKeyPair.ts:7](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/crypto/verifyKeyPair.ts#L7) +[src/ts/crypto/verifyKeyPair.ts:7](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/crypto/verifyKeyPair.ts#L7) ___ @@ -766,4 +766,4 @@ The JWT protected header and payload if the proof is validated #### Defined in -[src/ts/proofs/verifyProof.ts:29](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/proofs/verifyProof.ts#L29) +[src/ts/proofs/verifyProof.ts:29](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/proofs/verifyProof.ts#L29) diff --git a/docs/classes/ConflictResolution.ConflictResolver.md b/docs/classes/ConflictResolution.ConflictResolver.md index 2a748ff..e6a6694 100644 --- a/docs/classes/ConflictResolution.ConflictResolver.md +++ b/docs/classes/ConflictResolution.ConflictResolver.md @@ -38,7 +38,7 @@ The Conflict Resolver is an external entity that can: #### Defined in -[src/ts/conflict-resolution/ConflictResolver.ts:26](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/ConflictResolver.ts#L26) +[src/ts/conflict-resolution/ConflictResolver.ts:26](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/ConflictResolver.ts#L26) ## Properties @@ -48,7 +48,7 @@ The Conflict Resolver is an external entity that can: #### Defined in -[src/ts/conflict-resolution/ConflictResolver.ts:18](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/ConflictResolver.ts#L18) +[src/ts/conflict-resolution/ConflictResolver.ts:18](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/ConflictResolver.ts#L18) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/ts/conflict-resolution/ConflictResolver.ts:17](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/ConflictResolver.ts#L17) +[src/ts/conflict-resolution/ConflictResolver.ts:17](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/ConflictResolver.ts#L17) ## Methods @@ -82,7 +82,7 @@ a signed resolution #### Defined in -[src/ts/conflict-resolution/ConflictResolver.ts:52](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/ConflictResolver.ts#L52) +[src/ts/conflict-resolution/ConflictResolver.ts:52](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/ConflictResolver.ts#L52) ___ @@ -111,4 +111,4 @@ a signed resolution #### Defined in -[src/ts/conflict-resolution/ConflictResolver.ts:98](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/ConflictResolver.ts#L98) +[src/ts/conflict-resolution/ConflictResolver.ts:98](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/ConflictResolver.ts#L98) diff --git a/docs/classes/EthersIoAgentDest.md b/docs/classes/EthersIoAgentDest.md index 3b08e2c..ea501e9 100644 --- a/docs/classes/EthersIoAgentDest.md +++ b/docs/classes/EthersIoAgentDest.md @@ -48,7 +48,7 @@ EthersIoAgent.constructor #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L15) +[src/ts/dlt/agents/EthersIoAgent.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L15) ## Properties @@ -62,7 +62,7 @@ EthersIoAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -76,7 +76,7 @@ EthersIoAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -90,7 +90,7 @@ EthersIoAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -104,7 +104,7 @@ EthersIoAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ## Methods @@ -128,7 +128,7 @@ EthersIoAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -160,4 +160,4 @@ NrpDltAgentDest.getSecretFromLedger #### Defined in -[src/ts/dlt/agents/dest/EthersIoAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/dest/EthersIoAgentDest.ts#L9) +[src/ts/dlt/agents/dest/EthersIoAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/dest/EthersIoAgentDest.ts#L9) diff --git a/docs/classes/EthersIoAgentOrig.md b/docs/classes/EthersIoAgentOrig.md index 0e2401c..84a5a02 100644 --- a/docs/classes/EthersIoAgentOrig.md +++ b/docs/classes/EthersIoAgentOrig.md @@ -53,7 +53,7 @@ EthersIoAgent.constructor #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:21](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L21) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:21](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L21) ## Properties @@ -67,7 +67,7 @@ EthersIoAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -79,7 +79,7 @@ The nonce of the next transaction to send to the blockchain. It keep track also #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L19) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L19) ___ @@ -93,7 +93,7 @@ EthersIoAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -107,7 +107,7 @@ EthersIoAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -121,7 +121,7 @@ EthersIoAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -131,7 +131,7 @@ ___ #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:14](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L14) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:14](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L14) ## Methods @@ -160,7 +160,7 @@ NrpDltAgentOrig.deploySecret #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L43) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L43) ___ @@ -180,7 +180,7 @@ NrpDltAgentOrig.getAddress #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:59](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L59) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:59](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L59) ___ @@ -204,7 +204,7 @@ EthersIoAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -224,4 +224,4 @@ NrpDltAgentOrig.nextNonce #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:65](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L65) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:65](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L65) diff --git a/docs/classes/I3mServerWalletAgentDest.md b/docs/classes/I3mServerWalletAgentDest.md index 5fdb93c..c8d6673 100644 --- a/docs/classes/I3mServerWalletAgentDest.md +++ b/docs/classes/I3mServerWalletAgentDest.md @@ -52,7 +52,7 @@ I3mServerWalletAgent.constructor #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L12) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L12) ## Properties @@ -66,7 +66,7 @@ I3mServerWalletAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -80,7 +80,7 @@ I3mServerWalletAgent.did #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L10) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L10) ___ @@ -94,7 +94,7 @@ I3mServerWalletAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -108,7 +108,7 @@ I3mServerWalletAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -122,7 +122,7 @@ I3mServerWalletAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -136,7 +136,7 @@ I3mServerWalletAgent.wallet #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L9) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L9) ## Methods @@ -160,7 +160,7 @@ I3mServerWalletAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -192,4 +192,4 @@ NrpDltAgentDest.getSecretFromLedger #### Defined in -[src/ts/dlt/agents/dest/I3mServerWalletAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/dest/I3mServerWalletAgentDest.ts#L9) +[src/ts/dlt/agents/dest/I3mServerWalletAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/dest/I3mServerWalletAgentDest.ts#L9) diff --git a/docs/classes/I3mServerWalletAgentOrig.md b/docs/classes/I3mServerWalletAgentOrig.md index 362db82..199de6c 100644 --- a/docs/classes/I3mServerWalletAgentOrig.md +++ b/docs/classes/I3mServerWalletAgentOrig.md @@ -53,7 +53,7 @@ I3mServerWalletAgent.constructor #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L12) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L12) ## Properties @@ -67,7 +67,7 @@ I3mServerWalletAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -79,7 +79,7 @@ The nonce of the next transaction to send to the blockchain. It keep track also #### Defined in -[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L10) +[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L10) ___ @@ -93,7 +93,7 @@ I3mServerWalletAgent.did #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L10) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L10) ___ @@ -107,7 +107,7 @@ I3mServerWalletAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -121,7 +121,7 @@ I3mServerWalletAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -135,7 +135,7 @@ I3mServerWalletAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -149,7 +149,7 @@ I3mServerWalletAgent.wallet #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L9) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L9) ## Methods @@ -178,7 +178,7 @@ NrpDltAgentOrig.deploySecret #### Defined in -[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L12) +[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L12) ___ @@ -198,7 +198,7 @@ NrpDltAgentOrig.getAddress #### Defined in -[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:28](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L28) +[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:28](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L28) ___ @@ -222,7 +222,7 @@ I3mServerWalletAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -242,4 +242,4 @@ NrpDltAgentOrig.nextNonce #### Defined in -[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:38](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L38) +[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:38](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L38) diff --git a/docs/classes/I3mWalletAgentDest.md b/docs/classes/I3mWalletAgentDest.md index 7ce4401..a69ed53 100644 --- a/docs/classes/I3mWalletAgentDest.md +++ b/docs/classes/I3mWalletAgentDest.md @@ -52,7 +52,7 @@ I3mWalletAgent.constructor #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L12) +[src/ts/dlt/agents/I3mWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L12) ## Properties @@ -66,7 +66,7 @@ I3mWalletAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -80,7 +80,7 @@ I3mWalletAgent.did #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L10) +[src/ts/dlt/agents/I3mWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L10) ___ @@ -94,7 +94,7 @@ I3mWalletAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -108,7 +108,7 @@ I3mWalletAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -122,7 +122,7 @@ I3mWalletAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -136,7 +136,7 @@ I3mWalletAgent.wallet #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L9) +[src/ts/dlt/agents/I3mWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L9) ## Methods @@ -160,7 +160,7 @@ I3mWalletAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -192,4 +192,4 @@ NrpDltAgentDest.getSecretFromLedger #### Defined in -[src/ts/dlt/agents/dest/I3mWalletAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/dest/I3mWalletAgentDest.ts#L9) +[src/ts/dlt/agents/dest/I3mWalletAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/dest/I3mWalletAgentDest.ts#L9) diff --git a/docs/classes/I3mWalletAgentOrig.md b/docs/classes/I3mWalletAgentOrig.md index 8a58b79..b27f299 100644 --- a/docs/classes/I3mWalletAgentOrig.md +++ b/docs/classes/I3mWalletAgentOrig.md @@ -55,7 +55,7 @@ I3mWalletAgent.constructor #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L12) +[src/ts/dlt/agents/I3mWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L12) ## Properties @@ -69,7 +69,7 @@ I3mWalletAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -81,7 +81,7 @@ The nonce of the next transaction to send to the blockchain. It keep track also #### Defined in -[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L13) +[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L13) ___ @@ -95,7 +95,7 @@ I3mWalletAgent.did #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L10) +[src/ts/dlt/agents/I3mWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L10) ___ @@ -109,7 +109,7 @@ I3mWalletAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -123,7 +123,7 @@ I3mWalletAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -137,7 +137,7 @@ I3mWalletAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -151,7 +151,7 @@ I3mWalletAgent.wallet #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L9) +[src/ts/dlt/agents/I3mWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L9) ## Methods @@ -180,7 +180,7 @@ NrpDltAgentOrig.deploySecret #### Defined in -[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L15) +[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L15) ___ @@ -200,7 +200,7 @@ NrpDltAgentOrig.getAddress #### Defined in -[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:36](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L36) +[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:36](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L36) ___ @@ -224,7 +224,7 @@ I3mWalletAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -244,4 +244,4 @@ NrpDltAgentOrig.nextNonce #### Defined in -[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:46](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L46) +[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:46](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L46) diff --git a/docs/classes/NonRepudiationProtocol.NonRepudiationDest.md b/docs/classes/NonRepudiationProtocol.NonRepudiationDest.md index 2bb7d4c..7cbbb4d 100644 --- a/docs/classes/NonRepudiationProtocol.NonRepudiationDest.md +++ b/docs/classes/NonRepudiationProtocol.NonRepudiationDest.md @@ -48,7 +48,7 @@ likely to be a Consumer. #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:33](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L33) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:33](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L33) ## Properties @@ -58,7 +58,7 @@ likely to be a Consumer. #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:20](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L20) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:20](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L20) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:24](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L24) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:24](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L24) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:25](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L25) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:25](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L25) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:21](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L21) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:21](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L21) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:26](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L26) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:26](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L26) ___ @@ -108,7 +108,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:22](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L22) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:22](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L22) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:23](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L23) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:23](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L23) ## Methods @@ -136,7 +136,7 @@ the decrypted block #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:235](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L235) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:235](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L235) ___ @@ -155,7 +155,7 @@ the dispute request as a compact JWS signed with 'dest's private key #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:280](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L280) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:280](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L280) ___ @@ -174,7 +174,7 @@ the PoR as a compact JWS along with its decoded payload #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:138](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L138) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:138](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L138) ___ @@ -193,7 +193,7 @@ the verification request as a compact JWS signed with 'dest's private key #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:264](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L264) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:264](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L264) ___ @@ -212,7 +212,7 @@ the secret #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:208](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L208) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:208](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L208) ___ @@ -239,7 +239,7 @@ the verified payload and protected header #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:85](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L85) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:85](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L85) ___ @@ -264,4 +264,4 @@ the verified payload (that includes the secret that can be used to decrypt the c #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:163](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L163) +[src/ts/non-repudiation-protocol/NonRepudiationDest.ts:163](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationDest.ts#L163) diff --git a/docs/classes/NonRepudiationProtocol.NonRepudiationOrig.md b/docs/classes/NonRepudiationProtocol.NonRepudiationOrig.md index f4b7574..da1d813 100644 --- a/docs/classes/NonRepudiationProtocol.NonRepudiationOrig.md +++ b/docs/classes/NonRepudiationProtocol.NonRepudiationOrig.md @@ -46,7 +46,7 @@ likely to be a Provider. #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:32](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L32) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:32](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L32) ## Properties @@ -56,7 +56,7 @@ likely to be a Provider. #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:18](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L18) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:18](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L18) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:22](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L22) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:22](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L22) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:23](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L23) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:23](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L23) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L19) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L19) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:24](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L24) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:24](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L24) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:20](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L20) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:20](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L20) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:21](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L21) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:21](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L21) ## Methods @@ -135,7 +135,7 @@ a compact JWS with the PoO along with its decoded payload #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:118](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L118) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:118](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L118) ___ @@ -154,7 +154,7 @@ a compact JWS with the PoP #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:174](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L174) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:174](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L174) ___ @@ -173,7 +173,7 @@ the verification request as a compact JWS signed with 'orig's private key #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:201](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L201) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:201](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L201) ___ @@ -199,4 +199,4 @@ the verified payload and protected header #### Defined in -[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:137](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L137) +[src/ts/non-repudiation-protocol/NonRepudiationOrig.ts:137](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/non-repudiation-protocol/NonRepudiationOrig.ts#L137) diff --git a/docs/classes/NrError.md b/docs/classes/NrError.md index a0a33e1..3ec0f44 100644 --- a/docs/classes/NrError.md +++ b/docs/classes/NrError.md @@ -45,7 +45,7 @@ Error.constructor #### Defined in -[src/ts/errors/NrError.ts:6](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/errors/NrError.ts#L6) +[src/ts/errors/NrError.ts:6](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/errors/NrError.ts#L6) ## Properties @@ -83,7 +83,7 @@ ___ #### Defined in -[src/ts/errors/NrError.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/errors/NrError.ts#L4) +[src/ts/errors/NrError.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/errors/NrError.ts#L4) ___ @@ -166,7 +166,7 @@ node_modules/@types/node/globals.d.ts:13 #### Defined in -[src/ts/errors/NrError.ts:16](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/errors/NrError.ts#L16) +[src/ts/errors/NrError.ts:16](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/errors/NrError.ts#L16) ___ diff --git a/docs/classes/Signers.EthersIoAgentDest.md b/docs/classes/Signers.EthersIoAgentDest.md index ea2f64f..efe0fe4 100644 --- a/docs/classes/Signers.EthersIoAgentDest.md +++ b/docs/classes/Signers.EthersIoAgentDest.md @@ -50,7 +50,7 @@ EthersIoAgent.constructor #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L15) +[src/ts/dlt/agents/EthersIoAgent.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L15) ## Properties @@ -64,7 +64,7 @@ EthersIoAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -78,7 +78,7 @@ EthersIoAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -92,7 +92,7 @@ EthersIoAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -106,7 +106,7 @@ EthersIoAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ## Methods @@ -130,7 +130,7 @@ EthersIoAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -162,4 +162,4 @@ NrpDltAgentDest.getSecretFromLedger #### Defined in -[src/ts/dlt/agents/dest/EthersIoAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/dest/EthersIoAgentDest.ts#L9) +[src/ts/dlt/agents/dest/EthersIoAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/dest/EthersIoAgentDest.ts#L9) diff --git a/docs/classes/Signers.EthersIoAgentOrig.md b/docs/classes/Signers.EthersIoAgentOrig.md index b77e7fd..770b6d8 100644 --- a/docs/classes/Signers.EthersIoAgentOrig.md +++ b/docs/classes/Signers.EthersIoAgentOrig.md @@ -55,7 +55,7 @@ EthersIoAgent.constructor #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:21](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L21) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:21](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L21) ## Properties @@ -69,7 +69,7 @@ EthersIoAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -81,7 +81,7 @@ The nonce of the next transaction to send to the blockchain. It keep track also #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L19) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L19) ___ @@ -95,7 +95,7 @@ EthersIoAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -109,7 +109,7 @@ EthersIoAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -123,7 +123,7 @@ EthersIoAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -133,7 +133,7 @@ ___ #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:14](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L14) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:14](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L14) ## Methods @@ -162,7 +162,7 @@ NrpDltAgentOrig.deploySecret #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L43) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L43) ___ @@ -182,7 +182,7 @@ NrpDltAgentOrig.getAddress #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:59](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L59) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:59](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L59) ___ @@ -206,7 +206,7 @@ EthersIoAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -226,4 +226,4 @@ NrpDltAgentOrig.nextNonce #### Defined in -[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:65](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L65) +[src/ts/dlt/agents/orig/EthersIoAgentOrig.ts:65](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/EthersIoAgentOrig.ts#L65) diff --git a/docs/classes/Signers.I3mServerWalletAgentDest.md b/docs/classes/Signers.I3mServerWalletAgentDest.md index 890f149..e2ef2c7 100644 --- a/docs/classes/Signers.I3mServerWalletAgentDest.md +++ b/docs/classes/Signers.I3mServerWalletAgentDest.md @@ -54,7 +54,7 @@ I3mServerWalletAgent.constructor #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L12) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L12) ## Properties @@ -68,7 +68,7 @@ I3mServerWalletAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -82,7 +82,7 @@ I3mServerWalletAgent.did #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L10) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L10) ___ @@ -96,7 +96,7 @@ I3mServerWalletAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -110,7 +110,7 @@ I3mServerWalletAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -124,7 +124,7 @@ I3mServerWalletAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -138,7 +138,7 @@ I3mServerWalletAgent.wallet #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L9) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L9) ## Methods @@ -162,7 +162,7 @@ I3mServerWalletAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -194,4 +194,4 @@ NrpDltAgentDest.getSecretFromLedger #### Defined in -[src/ts/dlt/agents/dest/I3mServerWalletAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/dest/I3mServerWalletAgentDest.ts#L9) +[src/ts/dlt/agents/dest/I3mServerWalletAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/dest/I3mServerWalletAgentDest.ts#L9) diff --git a/docs/classes/Signers.I3mServerWalletAgentOrig.md b/docs/classes/Signers.I3mServerWalletAgentOrig.md index cbd5bfa..487db71 100644 --- a/docs/classes/Signers.I3mServerWalletAgentOrig.md +++ b/docs/classes/Signers.I3mServerWalletAgentOrig.md @@ -55,7 +55,7 @@ I3mServerWalletAgent.constructor #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L12) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L12) ## Properties @@ -69,7 +69,7 @@ I3mServerWalletAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -81,7 +81,7 @@ The nonce of the next transaction to send to the blockchain. It keep track also #### Defined in -[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L10) +[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L10) ___ @@ -95,7 +95,7 @@ I3mServerWalletAgent.did #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L10) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L10) ___ @@ -109,7 +109,7 @@ I3mServerWalletAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -123,7 +123,7 @@ I3mServerWalletAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -137,7 +137,7 @@ I3mServerWalletAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -151,7 +151,7 @@ I3mServerWalletAgent.wallet #### Defined in -[src/ts/dlt/agents/I3mServerWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mServerWalletAgent.ts#L9) +[src/ts/dlt/agents/I3mServerWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mServerWalletAgent.ts#L9) ## Methods @@ -180,7 +180,7 @@ NrpDltAgentOrig.deploySecret #### Defined in -[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L12) +[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L12) ___ @@ -200,7 +200,7 @@ NrpDltAgentOrig.getAddress #### Defined in -[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:28](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L28) +[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:28](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L28) ___ @@ -224,7 +224,7 @@ I3mServerWalletAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -244,4 +244,4 @@ NrpDltAgentOrig.nextNonce #### Defined in -[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:38](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L38) +[src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts:38](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mServerWalletAgentOrig.ts#L38) diff --git a/docs/classes/Signers.I3mWalletAgentDest.md b/docs/classes/Signers.I3mWalletAgentDest.md index b18304f..dfef49e 100644 --- a/docs/classes/Signers.I3mWalletAgentDest.md +++ b/docs/classes/Signers.I3mWalletAgentDest.md @@ -54,7 +54,7 @@ I3mWalletAgent.constructor #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L12) +[src/ts/dlt/agents/I3mWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L12) ## Properties @@ -68,7 +68,7 @@ I3mWalletAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -82,7 +82,7 @@ I3mWalletAgent.did #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L10) +[src/ts/dlt/agents/I3mWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L10) ___ @@ -96,7 +96,7 @@ I3mWalletAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -110,7 +110,7 @@ I3mWalletAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -124,7 +124,7 @@ I3mWalletAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -138,7 +138,7 @@ I3mWalletAgent.wallet #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L9) +[src/ts/dlt/agents/I3mWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L9) ## Methods @@ -162,7 +162,7 @@ I3mWalletAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -194,4 +194,4 @@ NrpDltAgentDest.getSecretFromLedger #### Defined in -[src/ts/dlt/agents/dest/I3mWalletAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/dest/I3mWalletAgentDest.ts#L9) +[src/ts/dlt/agents/dest/I3mWalletAgentDest.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/dest/I3mWalletAgentDest.ts#L9) diff --git a/docs/classes/Signers.I3mWalletAgentOrig.md b/docs/classes/Signers.I3mWalletAgentOrig.md index 366627b..fb35740 100644 --- a/docs/classes/Signers.I3mWalletAgentOrig.md +++ b/docs/classes/Signers.I3mWalletAgentOrig.md @@ -57,7 +57,7 @@ I3mWalletAgent.constructor #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L12) +[src/ts/dlt/agents/I3mWalletAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L12) ## Properties @@ -71,7 +71,7 @@ I3mWalletAgent.contract #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L11) +[src/ts/dlt/agents/EthersIoAgent.ts:11](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L11) ___ @@ -83,7 +83,7 @@ The nonce of the next transaction to send to the blockchain. It keep track also #### Defined in -[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L13) +[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L13) ___ @@ -97,7 +97,7 @@ I3mWalletAgent.did #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L10) +[src/ts/dlt/agents/I3mWalletAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L10) ___ @@ -111,7 +111,7 @@ I3mWalletAgent.dltConfig #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L10) +[src/ts/dlt/agents/EthersIoAgent.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L10) ___ @@ -125,7 +125,7 @@ I3mWalletAgent.initialized #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L13) +[src/ts/dlt/agents/EthersIoAgent.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L13) ___ @@ -139,7 +139,7 @@ I3mWalletAgent.provider #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L12) +[src/ts/dlt/agents/EthersIoAgent.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L12) ___ @@ -153,7 +153,7 @@ I3mWalletAgent.wallet #### Defined in -[src/ts/dlt/agents/I3mWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/I3mWalletAgent.ts#L9) +[src/ts/dlt/agents/I3mWalletAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/I3mWalletAgent.ts#L9) ## Methods @@ -182,7 +182,7 @@ NrpDltAgentOrig.deploySecret #### Defined in -[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L15) +[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:15](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L15) ___ @@ -202,7 +202,7 @@ NrpDltAgentOrig.getAddress #### Defined in -[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:36](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L36) +[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:36](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L36) ___ @@ -226,7 +226,7 @@ I3mWalletAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/EthersIoAgent.ts#L43) +[src/ts/dlt/agents/EthersIoAgent.ts:43](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/EthersIoAgent.ts#L43) ___ @@ -246,4 +246,4 @@ NrpDltAgentOrig.nextNonce #### Defined in -[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:46](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L46) +[src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts:46](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/I3mWalletAgentOrig.ts#L46) diff --git a/docs/interfaces/Algs.md b/docs/interfaces/Algs.md index 00fde47..6a28a0c 100644 --- a/docs/interfaces/Algs.md +++ b/docs/interfaces/Algs.md @@ -16,7 +16,7 @@ #### Defined in -[src/ts/types.ts:20](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L20) +[src/ts/types.ts:20](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L20) ___ @@ -26,7 +26,7 @@ ___ #### Defined in -[src/ts/types.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L19) +[src/ts/types.ts:19](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L19) ___ @@ -36,4 +36,4 @@ ___ #### Defined in -[src/ts/types.ts:18](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L18) +[src/ts/types.ts:18](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L18) diff --git a/docs/interfaces/Block.md b/docs/interfaces/Block.md index 33f07ce..527afe8 100644 --- a/docs/interfaces/Block.md +++ b/docs/interfaces/Block.md @@ -25,7 +25,7 @@ #### Defined in -[src/ts/types.ts:45](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L45) +[src/ts/types.ts:45](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L45) ___ @@ -35,7 +35,7 @@ ___ #### Defined in -[src/ts/types.ts:50](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L50) +[src/ts/types.ts:50](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L50) ___ @@ -45,7 +45,7 @@ ___ #### Defined in -[src/ts/types.ts:52](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L52) +[src/ts/types.ts:52](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L52) ___ @@ -55,7 +55,7 @@ ___ #### Defined in -[src/ts/types.ts:51](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L51) +[src/ts/types.ts:51](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L51) ___ @@ -65,7 +65,7 @@ ___ #### Defined in -[src/ts/types.ts:44](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L44) +[src/ts/types.ts:44](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L44) ___ @@ -82,4 +82,4 @@ ___ #### Defined in -[src/ts/types.ts:46](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L46) +[src/ts/types.ts:46](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L46) diff --git a/docs/interfaces/ConflictResolutionRequestPayload.md b/docs/interfaces/ConflictResolutionRequestPayload.md index 24c105f..21b9a20 100644 --- a/docs/interfaces/ConflictResolutionRequestPayload.md +++ b/docs/interfaces/ConflictResolutionRequestPayload.md @@ -28,7 +28,7 @@ #### Defined in -[src/ts/types.ts:137](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L137) +[src/ts/types.ts:137](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L137) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/ts/types.ts:135](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L135) +[src/ts/types.ts:135](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L135) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[src/ts/types.ts:134](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L134) +[src/ts/types.ts:134](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L134) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/ts/types.ts:136](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L136) +[src/ts/types.ts:136](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L136) ___ @@ -80,4 +80,4 @@ ___ #### Defined in -[src/ts/types.ts:133](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L133) +[src/ts/types.ts:133](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L133) diff --git a/docs/interfaces/ContractConfig.md b/docs/interfaces/ContractConfig.md index 3618f7c..bc56270 100644 --- a/docs/interfaces/ContractConfig.md +++ b/docs/interfaces/ContractConfig.md @@ -15,7 +15,7 @@ #### Defined in -[src/ts/types.ts:29](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L29) +[src/ts/types.ts:29](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L29) ___ @@ -25,4 +25,4 @@ ___ #### Defined in -[src/ts/types.ts:28](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L28) +[src/ts/types.ts:28](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L28) diff --git a/docs/interfaces/DataExchange.md b/docs/interfaces/DataExchange.md index 8aba4b3..1583d0b 100644 --- a/docs/interfaces/DataExchange.md +++ b/docs/interfaces/DataExchange.md @@ -118,7 +118,7 @@ ___ #### Defined in -[src/ts/types.ts:89](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L89) +[src/ts/types.ts:89](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L89) ___ diff --git a/docs/interfaces/DecodedProof.md b/docs/interfaces/DecodedProof.md index 4c161e5..c17a1ab 100644 --- a/docs/interfaces/DecodedProof.md +++ b/docs/interfaces/DecodedProof.md @@ -22,7 +22,7 @@ #### Defined in -[src/ts/types.ts:171](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L171) +[src/ts/types.ts:171](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L171) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/ts/types.ts:172](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L172) +[src/ts/types.ts:172](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L172) ___ @@ -42,4 +42,4 @@ ___ #### Defined in -[src/ts/types.ts:173](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L173) +[src/ts/types.ts:173](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L173) diff --git a/docs/interfaces/DisputeRequestPayload.md b/docs/interfaces/DisputeRequestPayload.md index d54689d..6dfb6be 100644 --- a/docs/interfaces/DisputeRequestPayload.md +++ b/docs/interfaces/DisputeRequestPayload.md @@ -26,7 +26,7 @@ #### Defined in -[src/ts/types.ts:147](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L147) +[src/ts/types.ts:147](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L147) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/ts/types.ts:137](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L137) +[src/ts/types.ts:137](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L137) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/ts/types.ts:135](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L135) +[src/ts/types.ts:135](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L135) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/ts/types.ts:146](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L146) +[src/ts/types.ts:146](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L146) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/ts/types.ts:136](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L136) +[src/ts/types.ts:136](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L136) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[src/ts/types.ts:133](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L133) +[src/ts/types.ts:133](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L133) ___ @@ -106,4 +106,4 @@ ___ #### Defined in -[src/ts/types.ts:145](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L145) +[src/ts/types.ts:145](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L145) diff --git a/docs/interfaces/DisputeResolutionPayload.md b/docs/interfaces/DisputeResolutionPayload.md index c99e969..18be292 100644 --- a/docs/interfaces/DisputeResolutionPayload.md +++ b/docs/interfaces/DisputeResolutionPayload.md @@ -30,7 +30,7 @@ #### Defined in -[src/ts/types.ts:154](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L154) +[src/ts/types.ts:154](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L154) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/ts/types.ts:155](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L155) +[src/ts/types.ts:155](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L155) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/ts/types.ts:156](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L156) +[src/ts/types.ts:156](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L156) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/ts/types.ts:151](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L151) +[src/ts/types.ts:151](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L151) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[src/ts/types.ts:167](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L167) +[src/ts/types.ts:167](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L167) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[src/ts/types.ts:157](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L157) +[src/ts/types.ts:157](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L157) ___ @@ -114,4 +114,4 @@ ___ #### Defined in -[src/ts/types.ts:166](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L166) +[src/ts/types.ts:166](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L166) diff --git a/docs/interfaces/DltConfig.md b/docs/interfaces/DltConfig.md index 5da64a2..aa4a72d 100644 --- a/docs/interfaces/DltConfig.md +++ b/docs/interfaces/DltConfig.md @@ -16,7 +16,7 @@ #### Defined in -[src/ts/types.ts:35](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L35) +[src/ts/types.ts:35](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L35) ___ @@ -26,7 +26,7 @@ ___ #### Defined in -[src/ts/types.ts:34](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L34) +[src/ts/types.ts:34](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L34) ___ @@ -36,4 +36,4 @@ ___ #### Defined in -[src/ts/types.ts:33](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L33) +[src/ts/types.ts:33](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L33) diff --git a/docs/interfaces/JWK.md b/docs/interfaces/JWK.md index d8758f1..3937ac4 100644 --- a/docs/interfaces/JWK.md +++ b/docs/interfaces/JWK.md @@ -46,7 +46,7 @@ JWKjose.alg #### Defined in -[src/ts/types.ts:24](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L24) +[src/ts/types.ts:24](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L24) ___ diff --git a/docs/interfaces/JwkPair.md b/docs/interfaces/JwkPair.md index 08c84fa..122586e 100644 --- a/docs/interfaces/JwkPair.md +++ b/docs/interfaces/JwkPair.md @@ -15,7 +15,7 @@ #### Defined in -[src/ts/types.ts:100](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L100) +[src/ts/types.ts:100](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L100) ___ @@ -25,4 +25,4 @@ ___ #### Defined in -[src/ts/types.ts:99](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L99) +[src/ts/types.ts:99](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L99) diff --git a/docs/interfaces/NrProofPayload.md b/docs/interfaces/NrProofPayload.md index 62d4bf5..1fbee04 100644 --- a/docs/interfaces/NrProofPayload.md +++ b/docs/interfaces/NrProofPayload.md @@ -29,7 +29,7 @@ #### Defined in -[src/ts/types.ts:110](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L110) +[src/ts/types.ts:110](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L110) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L104) +[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L104) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/ts/types.ts:105](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L105) +[src/ts/types.ts:105](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L105) ___ @@ -71,4 +71,4 @@ ___ #### Defined in -[src/ts/types.ts:106](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L106) +[src/ts/types.ts:106](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L106) diff --git a/docs/interfaces/NrpDltAgentDest.md b/docs/interfaces/NrpDltAgentDest.md index 4ede4ae..5e6f7d4 100644 --- a/docs/interfaces/NrpDltAgentDest.md +++ b/docs/interfaces/NrpDltAgentDest.md @@ -46,7 +46,7 @@ the secret in hex and when it was published to the blockchain as a NumericDate #### Defined in -[src/ts/dlt/agents/dest/NrpDltAgentDest.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/dest/NrpDltAgentDest.ts#L13) +[src/ts/dlt/agents/dest/NrpDltAgentDest.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/dest/NrpDltAgentDest.ts#L13) ## Methods @@ -66,4 +66,4 @@ NrpDltAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/NrpDltAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/NrpDltAgent.ts#L9) +[src/ts/dlt/agents/NrpDltAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/NrpDltAgent.ts#L9) diff --git a/docs/interfaces/NrpDltAgentOrig.md b/docs/interfaces/NrpDltAgentOrig.md index 2f04c52..30634e2 100644 --- a/docs/interfaces/NrpDltAgentOrig.md +++ b/docs/interfaces/NrpDltAgentOrig.md @@ -45,7 +45,7 @@ a receipt of the deployment. In Ethereum-like DLTs it contains the transaction h #### Defined in -[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L12) +[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L12) ___ @@ -65,7 +65,7 @@ Returns and identifier of the signer's account on the ledger. In Ethereum-like D #### Defined in -[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:17](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L17) +[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:17](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L17) ___ @@ -85,7 +85,7 @@ Returns the next nonce to use after deploying #### Defined in -[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:22](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L22) +[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:22](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L22) ## Methods @@ -105,4 +105,4 @@ NrpDltAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/NrpDltAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/NrpDltAgent.ts#L9) +[src/ts/dlt/agents/NrpDltAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/NrpDltAgent.ts#L9) diff --git a/docs/interfaces/OrigBlock.md b/docs/interfaces/OrigBlock.md index 5e37e79..d2a9411 100644 --- a/docs/interfaces/OrigBlock.md +++ b/docs/interfaces/OrigBlock.md @@ -29,7 +29,7 @@ #### Defined in -[src/ts/types.ts:57](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L57) +[src/ts/types.ts:57](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L57) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/ts/types.ts:50](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L50) +[src/ts/types.ts:50](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L50) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/ts/types.ts:52](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L52) +[src/ts/types.ts:52](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L52) ___ @@ -71,7 +71,7 @@ ___ #### Defined in -[src/ts/types.ts:51](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L51) +[src/ts/types.ts:51](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L51) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/ts/types.ts:56](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L56) +[src/ts/types.ts:56](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L56) ___ @@ -106,4 +106,4 @@ ___ #### Defined in -[src/ts/types.ts:58](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L58) +[src/ts/types.ts:58](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L58) diff --git a/docs/interfaces/PoOPayload.md b/docs/interfaces/PoOPayload.md index aeebf35..301b0fd 100644 --- a/docs/interfaces/PoOPayload.md +++ b/docs/interfaces/PoOPayload.md @@ -27,7 +27,7 @@ #### Defined in -[src/ts/types.ts:110](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L110) +[src/ts/types.ts:110](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L110) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L104) +[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L104) ___ @@ -55,7 +55,7 @@ ___ #### Defined in -[src/ts/types.ts:114](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L114) +[src/ts/types.ts:114](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L114) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/ts/types.ts:115](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L115) +[src/ts/types.ts:115](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L115) diff --git a/docs/interfaces/PoPPayload.md b/docs/interfaces/PoPPayload.md index 5f4800a..87f41ee 100644 --- a/docs/interfaces/PoPPayload.md +++ b/docs/interfaces/PoPPayload.md @@ -30,7 +30,7 @@ #### Defined in -[src/ts/types.ts:110](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L110) +[src/ts/types.ts:110](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L110) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L104) +[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L104) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/ts/types.ts:125](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L125) +[src/ts/types.ts:125](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L125) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/ts/types.ts:127](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L127) +[src/ts/types.ts:127](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L127) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/ts/types.ts:126](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L126) +[src/ts/types.ts:126](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L126) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/ts/types.ts:128](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L128) +[src/ts/types.ts:128](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L128) ___ @@ -102,4 +102,4 @@ ___ #### Defined in -[src/ts/types.ts:129](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L129) +[src/ts/types.ts:129](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L129) diff --git a/docs/interfaces/PoRPayload.md b/docs/interfaces/PoRPayload.md index 6c23db4..00d637f 100644 --- a/docs/interfaces/PoRPayload.md +++ b/docs/interfaces/PoRPayload.md @@ -28,7 +28,7 @@ #### Defined in -[src/ts/types.ts:110](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L110) +[src/ts/types.ts:110](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L110) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L104) +[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L104) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[src/ts/types.ts:119](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L119) +[src/ts/types.ts:119](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L119) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/ts/types.ts:121](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L121) +[src/ts/types.ts:121](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L121) ___ @@ -80,4 +80,4 @@ ___ #### Defined in -[src/ts/types.ts:120](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L120) +[src/ts/types.ts:120](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L120) diff --git a/docs/interfaces/ProofPayload.md b/docs/interfaces/ProofPayload.md index 13b0f65..2d85c76 100644 --- a/docs/interfaces/ProofPayload.md +++ b/docs/interfaces/ProofPayload.md @@ -26,7 +26,7 @@ #### Defined in -[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L104) +[src/ts/types.ts:104](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L104) ___ @@ -36,7 +36,7 @@ ___ #### Defined in -[src/ts/types.ts:105](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L105) +[src/ts/types.ts:105](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L105) ___ @@ -46,4 +46,4 @@ ___ #### Defined in -[src/ts/types.ts:106](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L106) +[src/ts/types.ts:106](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L106) diff --git a/docs/interfaces/ResolutionPayload.md b/docs/interfaces/ResolutionPayload.md index 46b8b5f..d97632e 100644 --- a/docs/interfaces/ResolutionPayload.md +++ b/docs/interfaces/ResolutionPayload.md @@ -30,7 +30,7 @@ #### Defined in -[src/ts/types.ts:154](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L154) +[src/ts/types.ts:154](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L154) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/ts/types.ts:155](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L155) +[src/ts/types.ts:155](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L155) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/ts/types.ts:156](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L156) +[src/ts/types.ts:156](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L156) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/ts/types.ts:151](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L151) +[src/ts/types.ts:151](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L151) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/ts/types.ts:153](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L153) +[src/ts/types.ts:153](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L153) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/ts/types.ts:157](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L157) +[src/ts/types.ts:157](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L157) ___ @@ -102,4 +102,4 @@ ___ #### Defined in -[src/ts/types.ts:152](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L152) +[src/ts/types.ts:152](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L152) diff --git a/docs/interfaces/Signers.NrpDltAgentDest.md b/docs/interfaces/Signers.NrpDltAgentDest.md index c28adff..0bb2547 100644 --- a/docs/interfaces/Signers.NrpDltAgentDest.md +++ b/docs/interfaces/Signers.NrpDltAgentDest.md @@ -57,7 +57,7 @@ the secret in hex and when it was published to the blockchain as a NumericDate #### Defined in -[src/ts/dlt/agents/dest/NrpDltAgentDest.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/dest/NrpDltAgentDest.ts#L13) +[src/ts/dlt/agents/dest/NrpDltAgentDest.ts:13](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/dest/NrpDltAgentDest.ts#L13) ## Methods @@ -77,4 +77,4 @@ NrpDltAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/NrpDltAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/NrpDltAgent.ts#L9) +[src/ts/dlt/agents/NrpDltAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/NrpDltAgent.ts#L9) diff --git a/docs/interfaces/Signers.NrpDltAgentOrig.md b/docs/interfaces/Signers.NrpDltAgentOrig.md index 0ae8b78..1a43fb1 100644 --- a/docs/interfaces/Signers.NrpDltAgentOrig.md +++ b/docs/interfaces/Signers.NrpDltAgentOrig.md @@ -56,7 +56,7 @@ a receipt of the deployment. In Ethereum-like DLTs it contains the transaction h #### Defined in -[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L12) +[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:12](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L12) ___ @@ -76,7 +76,7 @@ Returns and identifier of the signer's account on the ledger. In Ethereum-like D #### Defined in -[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:17](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L17) +[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:17](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L17) ___ @@ -96,7 +96,7 @@ Returns the next nonce to use after deploying #### Defined in -[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:22](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L22) +[src/ts/dlt/agents/orig/NrpDltAgentOrig.ts:22](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/orig/NrpDltAgentOrig.ts#L22) ## Methods @@ -116,4 +116,4 @@ NrpDltAgent.getContractAddress #### Defined in -[src/ts/dlt/agents/NrpDltAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/dlt/agents/NrpDltAgent.ts#L9) +[src/ts/dlt/agents/NrpDltAgent.ts:9](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/dlt/agents/NrpDltAgent.ts#L9) diff --git a/docs/interfaces/StoredProof.md b/docs/interfaces/StoredProof.md index cfe741d..cebf838 100644 --- a/docs/interfaces/StoredProof.md +++ b/docs/interfaces/StoredProof.md @@ -21,7 +21,7 @@ #### Defined in -[src/ts/types.ts:39](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L39) +[src/ts/types.ts:39](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L39) ___ @@ -31,4 +31,4 @@ ___ #### Defined in -[src/ts/types.ts:40](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L40) +[src/ts/types.ts:40](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L40) diff --git a/docs/interfaces/TimestampVerifyOptions.md b/docs/interfaces/TimestampVerifyOptions.md index 08d442e..d3b4cb9 100644 --- a/docs/interfaces/TimestampVerifyOptions.md +++ b/docs/interfaces/TimestampVerifyOptions.md @@ -17,7 +17,7 @@ #### Defined in -[src/ts/types.ts:67](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L67) +[src/ts/types.ts:67](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L67) ___ @@ -27,7 +27,7 @@ ___ #### Defined in -[src/ts/types.ts:66](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L66) +[src/ts/types.ts:66](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L66) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/ts/types.ts:65](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L65) +[src/ts/types.ts:65](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L65) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/ts/types.ts:68](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L68) +[src/ts/types.ts:68](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L68) diff --git a/docs/interfaces/VerificationRequestPayload.md b/docs/interfaces/VerificationRequestPayload.md index acdb2d0..7a55731 100644 --- a/docs/interfaces/VerificationRequestPayload.md +++ b/docs/interfaces/VerificationRequestPayload.md @@ -29,7 +29,7 @@ #### Defined in -[src/ts/types.ts:137](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L137) +[src/ts/types.ts:137](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L137) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/ts/types.ts:135](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L135) +[src/ts/types.ts:135](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L135) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/ts/types.ts:134](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L134) +[src/ts/types.ts:134](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L134) ___ @@ -71,7 +71,7 @@ ___ #### Defined in -[src/ts/types.ts:136](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L136) +[src/ts/types.ts:136](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L136) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/ts/types.ts:133](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L133) +[src/ts/types.ts:133](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L133) ___ @@ -95,4 +95,4 @@ ___ #### Defined in -[src/ts/types.ts:141](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L141) +[src/ts/types.ts:141](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L141) diff --git a/docs/interfaces/VerificationResolutionPayload.md b/docs/interfaces/VerificationResolutionPayload.md index 5e72248..76d7d11 100644 --- a/docs/interfaces/VerificationResolutionPayload.md +++ b/docs/interfaces/VerificationResolutionPayload.md @@ -30,7 +30,7 @@ #### Defined in -[src/ts/types.ts:154](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L154) +[src/ts/types.ts:154](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L154) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/ts/types.ts:155](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L155) +[src/ts/types.ts:155](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L155) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/ts/types.ts:156](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L156) +[src/ts/types.ts:156](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L156) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/ts/types.ts:151](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L151) +[src/ts/types.ts:151](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L151) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[src/ts/types.ts:162](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L162) +[src/ts/types.ts:162](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L162) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[src/ts/types.ts:157](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L157) +[src/ts/types.ts:157](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L157) ___ @@ -114,4 +114,4 @@ ___ #### Defined in -[src/ts/types.ts:161](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/types.ts#L161) +[src/ts/types.ts:161](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/types.ts#L161) diff --git a/docs/modules/ConflictResolution.md b/docs/modules/ConflictResolution.md index 539f458..b019667 100644 --- a/docs/modules/ConflictResolution.md +++ b/docs/modules/ConflictResolution.md @@ -36,7 +36,7 @@ Checks the completeness of a given data exchange by verifying the PoR in the ver #### Defined in -[src/ts/conflict-resolution/checkCompleteness.ts:14](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/checkCompleteness.ts#L14) +[src/ts/conflict-resolution/checkCompleteness.ts:14](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/checkCompleteness.ts#L14) ___ @@ -59,7 +59,7 @@ Check if the cipherblock in the disputeRequest is the one agreed for the dataExc #### Defined in -[src/ts/conflict-resolution/checkDecryption.ts:16](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/checkDecryption.ts#L16) +[src/ts/conflict-resolution/checkDecryption.ts:16](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/checkDecryption.ts#L16) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/ts/conflict-resolution/generateVerificationRequest.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/generateVerificationRequest.ts#L4) +[src/ts/conflict-resolution/generateVerificationRequest.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/generateVerificationRequest.ts#L4) ___ @@ -104,7 +104,7 @@ ___ #### Defined in -[src/ts/conflict-resolution/verifyPor.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/verifyPor.ts#L10) +[src/ts/conflict-resolution/verifyPor.ts:10](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/verifyPor.ts#L10) ___ @@ -131,4 +131,4 @@ ___ #### Defined in -[src/ts/conflict-resolution/verifyResolution.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/58c6997/src/ts/conflict-resolution/verifyResolution.ts#L4) +[src/ts/conflict-resolution/verifyResolution.ts:4](https://gitlab.com/i3-market/code/wp3/t3.2/conflict-resolution/non-repudiation-library/-/blob/a844236/src/ts/conflict-resolution/verifyResolution.ts#L4) diff --git a/package.json b/package.json index 114aed4..b9fe7f6 100644 --- a/package.json +++ b/package.json @@ -150,6 +150,15 @@ "benchmark/**/*" ] }, + "nodeBrowserSkel": { + "badges": { + "workflow": true, + "coveralls": false + }, + "git": { + "branch": "public" + } + }, "devDependencies": { "@i3m/non-repudiation-protocol-smart-contract": "^1.0.1", "@i3m/server-wallet": "^2.5.8",