cashscript 0.10.1 → 0.11.0-next.0

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 CHANGED
@@ -31,7 +31,7 @@ Using the CashScript SDK, you can import contract artifact files, create new ins
31
31
  ```ts
32
32
  ...
33
33
  // Import the P2PKH artifact
34
- import P2PKH from './p2pkh-artifact.json' assert { type: 'json' };
34
+ import P2PKH from './p2pkh-artifact.json' with { type: 'json' };
35
35
 
36
36
  // Instantiate a network provider for CashScript's network operations
37
37
  const provider = new ElectrumNetworkProvider('mainnet');
@@ -1,9 +1,8 @@
1
- import bip68 from 'bip68';
2
1
  import { hexToBin, decodeTransaction, } from '@bitauth/libauth';
3
2
  import delay from 'delay';
4
- import { placeholder, scriptToBytecode, } from '@cashscript/utils';
3
+ import { encodeBip68, placeholder, scriptToBytecode, } from '@cashscript/utils';
5
4
  import deepEqual from 'fast-deep-equal';
6
- import { isUtxoP2PKH, } from './interfaces.js';
5
+ import { isUtxoP2PKH, SignatureAlgorithm, } from './interfaces.js';
7
6
  import { createInputScript, getInputSize, createOpReturnOutput, getTxSizeWithoutInputs, getPreimageSize, validateOutput, utxoComparator, calculateDust, getOutputSize, utxoTokenComparator, } from './utils.js';
8
7
  import SignatureTemplate from './SignatureTemplate.js';
9
8
  import { P2PKH_INPUT_SIZE } from './constants.js';
@@ -57,7 +56,7 @@ export class Transaction {
57
56
  return this;
58
57
  }
59
58
  withAge(age) {
60
- this.sequence = bip68.encode({ blocks: age });
59
+ this.sequence = encodeBip68({ blocks: age });
61
60
  return this;
62
61
  }
63
62
  withTime(time) {
@@ -248,8 +247,18 @@ export class Transaction {
248
247
  }
249
248
  }
250
249
  }
251
- // Replace all SignatureTemplate with 65-length placeholder Uint8Arrays
252
- const placeholderArgs = this.encodedFunctionArgs.map((arg) => (arg instanceof SignatureTemplate ? placeholder(65) : arg));
250
+ // Replace all SignatureTemplate with placeholder Uint8Arrays
251
+ const placeholderArgs = this.encodedFunctionArgs.map((arg) => {
252
+ if (!(arg instanceof SignatureTemplate))
253
+ return arg;
254
+ // Schnorr signatures are *always* 65 bytes: 64 for signature + 1 byte for hashtype.
255
+ if (arg.getSignatureAlgorithm() === SignatureAlgorithm.SCHNORR)
256
+ return placeholder(65);
257
+ // ECDSA signatures are at least 71 bytes: 64 bytes for signature + 1 byte for hashtype + 6 bytes for encoding
258
+ // overhead. But it may have up to 2 extra bytes for padding, so we overestimate by 2 bytes.
259
+ // (see https://transactionfee.info/charts/bitcoin-script-ecdsa-length/)
260
+ return placeholder(73);
261
+ });
253
262
  // Create a placeholder preimage of the correct size
254
263
  const placeholderPreimage = this.abiFunction.covenant
255
264
  ? placeholder(getPreimageSize(scriptToBytecode(this.contract.redeemScript)))
package/dist/debugging.js CHANGED
@@ -1,4 +1,4 @@
1
- import { AuthenticationErrorCommon, binToHex, createCompiler, createVirtualMachineBCH2023, encodeAuthenticationInstruction, walletTemplateToCompilerConfiguration } from '@bitauth/libauth';
1
+ import { AuthenticationErrorCommon, binToHex, createCompiler, createVirtualMachineBch2025, encodeAuthenticationInstruction, walletTemplateToCompilerConfiguration } from '@bitauth/libauth';
2
2
  import { Op, PrimitiveType, bytecodeToAsm, decodeBool, decodeInt, decodeString } from '@cashscript/utils';
3
3
  import { findLastIndex, toRegExp } from './utils.js';
4
4
  import { FailedRequireError, FailedTransactionError, FailedTransactionEvaluationError } from './Errors.js';
@@ -39,7 +39,7 @@ export const debugTemplate = (template, artifact) => {
39
39
  // preceding OP_CHECKSIG opcode. The error message is registered in the next instruction, so we need to increment
40
40
  // the instruction pointer to get the correct error message from the require messages in the artifact.
41
41
  // Note that we do NOT use this adjusted IP when passing the failing IP into the FailedRequireError
42
- const isNullFail = lastExecutedDebugStep.error === AuthenticationErrorCommon.nonNullSignatureFailure;
42
+ const isNullFail = lastExecutedDebugStep.error.includes(AuthenticationErrorCommon.nonNullSignatureFailure);
43
43
  const requireStatementIp = failingIp + (isNullFail ? 1 : 0);
44
44
  const requireStatement = (artifact.debug?.requires ?? [])
45
45
  .find((statement) => statement.ip === requireStatementIp);
@@ -74,7 +74,7 @@ export const debugTemplate = (template, artifact) => {
74
74
  // internal util. instantiates the virtual machine and compiles the template into a program
75
75
  const createProgram = (template) => {
76
76
  const configuration = walletTemplateToCompilerConfiguration(template);
77
- const vm = createVirtualMachineBCH2023();
77
+ const vm = createVirtualMachineBch2025();
78
78
  const compiler = createCompiler(configuration);
79
79
  const scenarioGeneration = compiler.generateScenario({
80
80
  debug: true,
@@ -121,8 +121,9 @@ const failedFinalVerify = (evaluationResult) => {
121
121
  // If any of the following errors occurred, then the final verify failed - any other messages
122
122
  // indicate other kinds of failures
123
123
  return toRegExp([
124
- AuthenticationErrorCommon.requiresCleanStack,
125
- AuthenticationErrorCommon.nonEmptyControlStack,
124
+ // TODO: Ask Jason to put these back into an enum and replace with the enum value
125
+ 'The CashAssembly internal evaluation completed with an unexpected number of items on the stack (must be exactly 1).', // AuthenticationErrorCommon.requiresCleanStack,
126
+ 'The CashAssembly internal evaluation completed with a non-empty control stack.', // AuthenticationErrorCommon.nonEmptyControlStack,
126
127
  AuthenticationErrorCommon.unsuccessfulEvaluation,
127
128
  ]).test(evaluationResult);
128
129
  };
@@ -1,40 +1,16 @@
1
1
  import { Utxo, Network } from '../interfaces.js';
2
2
  import NetworkProvider from './NetworkProvider.js';
3
+ import { BchnRpcClient } from '@mr-zwets/bchn-api-wrapper';
3
4
  export default class BitcoinRpcNetworkProvider implements NetworkProvider {
4
5
  network: Network;
5
6
  private rpcClient;
6
- constructor(network: Network, url: string, opts?: object);
7
+ constructor(network: Network, url: string, opts: {
8
+ rpcUser: string;
9
+ rpcPassword: string;
10
+ });
7
11
  getUtxos(address: string): Promise<Utxo[]>;
8
12
  getBlockHeight(): Promise<number>;
9
13
  getRawTransaction(txid: string): Promise<string>;
10
14
  sendRawTransaction(txHex: string): Promise<string>;
11
- getClient(): IRpcClientRetry;
15
+ getClient(): BchnRpcClient;
12
16
  }
13
- interface ListUnspentItem {
14
- txid: string;
15
- vout: number;
16
- address: string;
17
- label: string;
18
- scriptPubKey: string;
19
- amount: number;
20
- confirmations: number;
21
- redeemScript: string;
22
- spendable: boolean;
23
- solvable: boolean;
24
- safe: boolean;
25
- }
26
- interface IRpcClientRetry {
27
- constructor(url: string, opts?: object): void;
28
- listUnspent(minConf?: number, maxConf?: number, addresses?: string[], includeUnsafe?: boolean, queryOptions?: object): Promise<ListUnspentItem[]>;
29
- getBlockCount(): Promise<number>;
30
- getRawTransaction(txid: string, verbose?: boolean, blockHash?: string): Promise<string>;
31
- sendRawTransaction(hexString: string, allowHighFees?: boolean): Promise<string>;
32
- generate(nBlocks: number, maxTries?: number): Promise<string[]>;
33
- generateToAddress(nBlocks: number, address: string, maxTries?: number): Promise<string[]>;
34
- getNewAddress(label?: string): Promise<string>;
35
- dumpPrivKey(address: string): Promise<string>;
36
- getBalance(dummy?: string, minConf?: number, includeWatchOnly?: boolean): Promise<number>;
37
- getBlock(blockHash: string, verbosity?: number): Promise<string>;
38
- importAddress(address: string, label?: string, rescan?: boolean, p2sh?: boolean): Promise<void>;
39
- }
40
- export {};
@@ -1,11 +1,11 @@
1
- import RpcClientRetry from 'bitcoin-rpc-promise-retry';
1
+ import { BchnRpcClient, } from '@mr-zwets/bchn-api-wrapper';
2
2
  export default class BitcoinRpcNetworkProvider {
3
3
  constructor(network, url, opts) {
4
4
  this.network = network;
5
- this.rpcClient = new RpcClientRetry(url, opts);
5
+ this.rpcClient = new BchnRpcClient({ url, ...opts });
6
6
  }
7
7
  async getUtxos(address) {
8
- const result = await this.rpcClient.listUnspent(0, 9999999, [address]);
8
+ const result = await this.rpcClient.request('listunspent', 0, 9999999, [address]);
9
9
  const utxos = result.map((utxo) => ({
10
10
  txid: utxo.txid,
11
11
  vout: utxo.vout,
@@ -14,13 +14,13 @@ export default class BitcoinRpcNetworkProvider {
14
14
  return utxos;
15
15
  }
16
16
  async getBlockHeight() {
17
- return this.rpcClient.getBlockCount();
17
+ return this.rpcClient.request('getblockcount');
18
18
  }
19
19
  async getRawTransaction(txid) {
20
- return this.rpcClient.getRawTransaction(txid);
20
+ return this.rpcClient.request('getrawtransaction', txid, 0);
21
21
  }
22
22
  async sendRawTransaction(txHex) {
23
- return this.rpcClient.sendRawTransaction(txHex);
23
+ return this.rpcClient.request('sendrawtransaction', txHex);
24
24
  }
25
25
  getClient() {
26
26
  return this.rpcClient;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cashscript",
3
- "version": "0.10.1",
3
+ "version": "0.11.0-next.0",
4
4
  "description": "Easily write and interact with Bitcoin Cash contracts",
5
5
  "keywords": [
6
6
  "bitcoin cash",
@@ -43,10 +43,9 @@
43
43
  "test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest"
44
44
  },
45
45
  "dependencies": {
46
- "@bitauth/libauth": "^3.0.0",
47
- "@cashscript/utils": "^0.10.1",
48
- "bip68": "^1.0.4",
49
- "bitcoin-rpc-promise-retry": "^1.3.0",
46
+ "@bitauth/libauth": "^3.1.0-next.2",
47
+ "@cashscript/utils": "^0.11.0-next.0",
48
+ "@mr-zwets/bchn-api-wrapper": "^1.0.1",
50
49
  "delay": "^5.0.0",
51
50
  "electrum-cash": "^2.0.10",
52
51
  "fast-deep-equal": "^3.1.3",
@@ -54,12 +53,11 @@
54
53
  },
55
54
  "devDependencies": {
56
55
  "@jest/globals": "^29.4.1",
57
- "@psf/bch-js": "^4.15.0",
56
+ "@psf/bch-js": "^6.8.0",
58
57
  "@types/pako": "^2.0.3",
59
- "bip39": "^3.0.4",
60
58
  "eslint": "^8.54.0",
61
59
  "jest": "^29.4.1",
62
60
  "typescript": "^5.5.4"
63
61
  },
64
- "gitHead": "0dd95d5b05a438ac1884bdb2252aec6a4c77e5b2"
62
+ "gitHead": "18df35aa3276e64fa64e92386106374d1d35b28d"
65
63
  }