Skip to content
Snippets Groups Projects
Commit 0912138b authored by arnaud kaderi's avatar arnaud kaderi
Browse files

refactor code

parent 013c956c
No related branches found
No related tags found
No related merge requests found
...@@ -13,4 +13,4 @@ Pour compiler le projet: `make compile` ...@@ -13,4 +13,4 @@ Pour compiler le projet: `make compile`
Pour le déployer: `make deploy` Pour le déployer: `make deploy`
Lien de déploiement du smart contract:`KT18ohWSbRJsE9hKWzFCfPbskDa3ipjJfoih` Lien de déploiement du smart contract:`KT1T2uYvmNmWv69ZmnVLM749LoYFt1AgqzF1`
import { InMemorySigner } from "@taquito/signer"; import { InMemorySigner } from "@taquito/signer";
import { MichelsonMap, TezosToolkit } from "@taquito/taquito"; import { TezosToolkit } from "@taquito/taquito";
import { buf2hex } from "@taquito/utils";
import chalk from "chalk"; import chalk from "chalk";
import { Spinner } from "cli-spinner"; import { Spinner } from "cli-spinner";
import dotenv from "dotenv"; import dotenv from "dotenv";
import multisig from "../compiled/Multisig.json"; import multisig from "../compiled/Multisig.json";
import metadata from "./metadata.json";
dotenv.config(); dotenv.config();
......
...@@ -27,7 +27,7 @@ namespace Preamble { ...@@ -27,7 +27,7 @@ namespace Preamble {
}; };
// =============================================================================================== // ===============================================================================================
export type result = [list<operation>, Storage.Utils.storage]; export type result = Storage.Utils.result;
@entry @entry
export const create_proposal = ( export const create_proposal = (
......
...@@ -22,7 +22,7 @@ export type dao = { ...@@ -22,7 +22,7 @@ export type dao = {
export type atomic_trans = export type atomic_trans =
@layout("comb") @layout("comb")
{ amount: nat; token_id: nat, to_: address; } { to_: address; token_id: nat; amount: nat; }
export type transfer_from = { from_: address; txs: list<atomic_trans> }; export type transfer_from = { from_: address; txs: list<atomic_trans> };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment