![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@magic-sdk/extension-tezos
Advanced tools
npm i magic-sdk @magic-sdk/extension-tezos
Setup TezosExtension with magic-sdk
import { Magic } from 'magic-sdk';
import { TezosExtension } from '@magic-sdk/extension-tezos';
const magic = new Magic('YOUR_API_KEY', {
extensions: [
new TezosExtension({
rpcUrl: 'tezos rpc url'
})
]
});
// or
const magic = new Magic('YOUR_API_KEY', {
extensions: {
tezos: new TezosExtension({
rpcUrl: 'tezos rpc url'
})
}
});
See the developer documentation to learn how you can master the Magic SDK in a matter of minutes.
Using getAccount function to get Tezos public address for current user.
const publicAddress = await magic.tezos.getAccount();
console.log('tezos public address', publicAddress);
const handlerSendTransaction = async () => {
const result = await magic.tezos.sendTransactionOperation('tz1RVcUP9nUurgEJMDou8eW3bVDs6qmP5Lnc', 500000, 1500, '');
console.log(`Injected operation group id ${result.operationGroupID}`);
};
const handleSendDelegation = async () => {
const result = await magic.tezos.sendDelegationOperation('tz1LhS2WFCinpwUTdUb991ocL2D9Uk6FJGJK', 10000);
console.log(`Injected operation group id`, result);
}
const handleSendContractOrigination = async () => {
const contract = `[
{
"prim":"parameter",
"args":[ { "prim":"string" } ]
},
{
"prim":"storage",
"args":[ { "prim":"string" } ]
},
{
"prim":"code",
"args":[
[
{ "prim":"CAR" },
{ "prim":"NIL", "args":[ { "prim":"operation" } ] },
{ "prim":"PAIR" }
]
]
}
]`;
const storage = '{"string": "Sample"}';
const params = {
amount: 0,
delegate: undefined,
fee: 100000,
derivationPath: '',
storage_limit: 1000,
gas_limit: 100000,
code: contract,
storage,
codeFormat: 'micheline',
}
const result = await magic.tezos.sendContractOriginationOperation(
params.amount,
params.delegate,
params.fee,
params.derivationPath,
params.storage_limit,
params.gas_limit,
params.code,
params.storage,
params.codeFormat
);
console.log(`Injected operation`, result);
};
const handleInvokeContract = async () => {
const params = {
contract: 'KT1NXXLzk3rwnawPc4HwDn8siPkMaBjT5Hdr',
amount: 0,
fee: 100000,
derivationPath: '',
storageLimit: 1000,
gasLimit: 100000,
entrypoint: '',
parameters: '{"string": "Cryptonomicon"}',
parameterFormat: 'micheline'
};
const result = await magic.tezos.sendContractInvocationOperation(
params.contract,
params.amount,
params.fee,
params.derivationPath,
params.storageLimit,
params.gasLimit,
params.entrypoint,
params.parameters,
params.parameterFormat
);
console.log(`Injected operation`, result);
};
const handleContractPing = async () => {
const params = {
contract: 'KT1NXXLzk3rwnawPc4HwDn8siPkMaBjT5Hdr',
amount: 10000,
fee: 100000,
derivationPath: '',
storageLimit: 1000,
gasLimit: 100000,
entrypoint: ''
};
const result = await magic.tezos.sendContractPing(
params.contract,
params.amount,
params.fee,
params.derivationPath,
params.storageLimit,
params.gasLimit,
params.entrypoint,
);
console.log(`Injected operation`, result);
}
FAQs
magic tezos extension
We found that @magic-sdk/extension-tezos demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.