@argonprotocol/mainchain 1.4.12-dev.d1c83d27 → 1.4.12-dev.dd86fab9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -10
- package/browser/index.d.ts +705 -842
- package/browser/index.js +14 -1343
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +16 -1346
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +705 -842
- package/lib/index.d.ts +705 -842
- package/lib/index.js +18 -1348
- package/lib/index.js.map +1 -1
- package/package.json +2 -3
- package/src/interfaces/augment-api-consts.ts +10 -1
- package/src/interfaces/augment-api-errors.ts +103 -9
- package/src/interfaces/augment-api-events.ts +105 -46
- package/src/interfaces/augment-api-query.ts +51 -3
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +54 -47
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +379 -292
- package/src/interfaces/registry.ts +8 -1
- package/src/interfaces/types-lookup.ts +420 -309
package/README.md
CHANGED
|
@@ -53,13 +53,3 @@ interface IArgonCpiSnapshot {
|
|
|
53
53
|
tick: bigint;
|
|
54
54
|
}
|
|
55
55
|
```
|
|
56
|
-
|
|
57
|
-
## Bitcoin Locks
|
|
58
|
-
|
|
59
|
-
The client also has a `BitcoinLock` class that can be used to create, ratchet and release bitcoin
|
|
60
|
-
locks
|
|
61
|
-
|
|
62
|
-
## Vaults
|
|
63
|
-
|
|
64
|
-
The client also has a `Vault` class that can be used to create and manage vaults, as well as
|
|
65
|
-
calculate bitcoin fees.
|