Skip to content

Commit

Permalink
Merge pull request #879 from near-daos/fix/fc-template-transfer
Browse files Browse the repository at this point in the history
fix(fc templates): fix transfer
  • Loading branch information
karpovdmitryod authored Apr 5, 2022
2 parents e2be7ed + bafa69c commit 5009647
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const FunctionCallTypeSelector: FC = () => {
group: 'Templates',
},
{
label: 'Transfer Mintbase NFT',
label: 'Transfer NFT from DAO',
value: FunctionCallType.TransferNFTfromMintbase,
group: 'Templates',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export async function getTransferMintbaseNFTProposal(
{
method_name: 'nft_batch_transfer',
args,
deposit: '1000000000000000000000000',
deposit: '1',
gas: formatGasValue(actionsGas).toString(),
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ describe('proposalObjectHelpers', () => {
actions: [
{
args: 'eyJ0b2tlbl9pZHMiOltbIjEyMyIsInRhcmdldCJdXX0=',
deposit: '1000000000000000000000000',
deposit: '1',
gas: '5000000000000',
method_name: 'nft_batch_transfer',
},
Expand Down

0 comments on commit 5009647

Please sign in to comment.