Skip to content

Commit

Permalink
Merge branch 'support-node18' of https://github.com/ecadlabs/taquito
Browse files Browse the repository at this point in the history
…into support-node18
  • Loading branch information
hui-an-yang committed Dec 18, 2024
2 parents 27feea0 + 84f4bbb commit faa19f8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/contract-test-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -1367,7 +1367,7 @@ license: MIT

Transactions to smart contracts operate in the same fashion as transactions to an implicit account, the only difference being the `KT1...` address. You will also receive a transaction hash and have to wait for the transaction to be confirmed. Once confirmed, it can be the right time to update the user's/contract's balance, for example.

Sending a transaction to a smart contract to update its storage will be a different type of action as it implies targetting a specific entrypoint and formatting correctly the data to be sent.
Sending a transaction to a smart contract to update its storage will be a different type of action as it implies targeting a specific entrypoint and formatting correctly the data to be sent.

Fortunately, Taquito will make this operation go like a breeze! First, you need the contract abstraction created with the address of the smart contract you are targeting:

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/data/metadataViews.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export const metadataViewsExample2 = {
},
code: [ { prim: 'CAR', args: [], annots: [] } ],
annotations: [
{ name: '%arg_zero', description: 'This is obvioulsy ignored.' },
{ name: '%arg_zero', description: 'This is obviously ignored.' },
{ name: '%arg_one', description: 'This is also ignored, but different.' },
{ name: '%arg_one_result', description: 'This is %arg_one on the resulting side.' },
{
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/data/smartpy-example-contract.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This contract code has storage,parameter,code but the Tezos RPC expects parmeter,code,storage
// This contract code has storage,parameter,code but the Tezos RPC expects parameter,code,storage
export const smartpySample = [{"prim":"storage","args":[
{"prim":"nat"}]
},
Expand Down
2 changes: 1 addition & 1 deletion packages/taquito-beacon-wallet/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class BeaconWalletNotInitialized extends PermissionDeniedError {

/**
* @category Error
* @description Error that indicates missing required persmission scopes
* @description Error that indicates missing required permission scopes
*/
export class MissingRequiredScopes extends PermissionDeniedError {
constructor(public readonly requiredScopes: PermissionScope[]) {
Expand Down

0 comments on commit faa19f8

Please sign in to comment.